1 Gapminder and R Package gapminder

Gapminder was founded by Ola Rosling, Anna Rosling Rönnlund, and Hans Rosling

2 Setup

library(tidyverse)
library(gapminder)
library(WDI)

3 Basics

df <- gapminder
df
## # A tibble: 1,704 × 6
##    country     continent  year lifeExp      pop gdpPercap
##    <fct>       <fct>     <int>   <dbl>    <int>     <dbl>
##  1 Afghanistan Asia       1952    28.8  8425333      779.
##  2 Afghanistan Asia       1957    30.3  9240934      821.
##  3 Afghanistan Asia       1962    32.0 10267083      853.
##  4 Afghanistan Asia       1967    34.0 11537966      836.
##  5 Afghanistan Asia       1972    36.1 13079460      740.
##  6 Afghanistan Asia       1977    38.4 14880372      786.
##  7 Afghanistan Asia       1982    39.9 12881816      978.
##  8 Afghanistan Asia       1987    40.8 13867957      852.
##  9 Afghanistan Asia       1992    41.7 16317921      649.
## 10 Afghanistan Asia       1997    41.8 22227415      635.
## # … with 1,694 more rows
glimpse(df)
## Rows: 1,704
## Columns: 6
## $ country   <fct> "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", …
## $ continent <fct> Asia, Asia, Asia, Asia, Asia, Asia, Asia, Asia, Asia, Asia, …
## $ year      <int> 1952, 1957, 1962, 1967, 1972, 1977, 1982, 1987, 1992, 1997, …
## $ lifeExp   <dbl> 28.801, 30.332, 31.997, 34.020, 36.088, 38.438, 39.854, 40.8…
## $ pop       <int> 8425333, 9240934, 10267083, 11537966, 13079460, 14880372, 12…
## $ gdpPercap <dbl> 779.4453, 820.8530, 853.1007, 836.1971, 739.9811, 786.1134, …
summary(df)
##         country        continent        year         lifeExp     
##  Afghanistan:  12   Africa  :624   Min.   :1952   Min.   :23.60  
##  Albania    :  12   Americas:300   1st Qu.:1966   1st Qu.:48.20  
##  Algeria    :  12   Asia    :396   Median :1980   Median :60.71  
##  Angola     :  12   Europe  :360   Mean   :1980   Mean   :59.47  
##  Argentina  :  12   Oceania : 24   3rd Qu.:1993   3rd Qu.:70.85  
##  Australia  :  12                  Max.   :2007   Max.   :82.60  
##  (Other)    :1632                                                
##       pop              gdpPercap       
##  Min.   :6.001e+04   Min.   :   241.2  
##  1st Qu.:2.794e+06   1st Qu.:  1202.1  
##  Median :7.024e+06   Median :  3531.8  
##  Mean   :2.960e+07   Mean   :  7215.3  
##  3rd Qu.:1.959e+07   3rd Qu.:  9325.5  
##  Max.   :1.319e+09   Max.   :113523.1  
## 
ggplot(df, aes(x = year, y = ))

4 Examples

str(gapminder)
## tibble [1,704 × 6] (S3: tbl_df/tbl/data.frame)
##  $ country  : Factor w/ 142 levels "Afghanistan",..: 1 1 1 1 1 1 1 1 1 1 ...
##  $ continent: Factor w/ 5 levels "Africa","Americas",..: 3 3 3 3 3 3 3 3 3 3 ...
##  $ year     : int [1:1704] 1952 1957 1962 1967 1972 1977 1982 1987 1992 1997 ...
##  $ lifeExp  : num [1:1704] 28.8 30.3 32 34 36.1 ...
##  $ pop      : int [1:1704] 8425333 9240934 10267083 11537966 13079460 14880372 12881816 13867957 16317921 22227415 ...
##  $ gdpPercap: num [1:1704] 779 821 853 836 740 ...
head(gapminder)
## # A tibble: 6 × 6
##   country     continent  year lifeExp      pop gdpPercap
##   <fct>       <fct>     <int>   <dbl>    <int>     <dbl>
## 1 Afghanistan Asia       1952    28.8  8425333      779.
## 2 Afghanistan Asia       1957    30.3  9240934      821.
## 3 Afghanistan Asia       1962    32.0 10267083      853.
## 4 Afghanistan Asia       1967    34.0 11537966      836.
## 5 Afghanistan Asia       1972    36.1 13079460      740.
## 6 Afghanistan Asia       1977    38.4 14880372      786.
summary(gapminder)
##         country        continent        year         lifeExp     
##  Afghanistan:  12   Africa  :624   Min.   :1952   Min.   :23.60  
##  Albania    :  12   Americas:300   1st Qu.:1966   1st Qu.:48.20  
##  Algeria    :  12   Asia    :396   Median :1980   Median :60.71  
##  Angola     :  12   Europe  :360   Mean   :1980   Mean   :59.47  
##  Argentina  :  12   Oceania : 24   3rd Qu.:1993   3rd Qu.:70.85  
##  Australia  :  12                  Max.   :2007   Max.   :82.60  
##  (Other)    :1632                                                
##       pop              gdpPercap       
##  Min.   :6.001e+04   Min.   :   241.2  
##  1st Qu.:2.794e+06   1st Qu.:  1202.1  
##  Median :7.024e+06   Median :  3531.8  
##  Mean   :2.960e+07   Mean   :  7215.3  
##  3rd Qu.:1.959e+07   3rd Qu.:  9325.5  
##  Max.   :1.319e+09   Max.   :113523.1  
## 
table(gapminder$continent)
## 
##   Africa Americas     Asia   Europe  Oceania 
##      624      300      396      360       24
aggregate(lifeExp ~ continent, gapminder, median)
##   continent lifeExp
## 1    Africa 47.7920
## 2  Americas 67.0480
## 3      Asia 61.7915
## 4    Europe 72.2410
## 5   Oceania 73.6650
plot(lifeExp ~ year, gapminder, subset = country == "Cambodia", type = "b")

plot(lifeExp ~ gdpPercap, gapminder, subset = year == 2007, log = "x")

gapminder %>%
  filter(year == 2007) %>%
  group_by(continent) %>%
  summarise(lifeExp = median(lifeExp))
## # A tibble: 5 × 2
##   continent lifeExp
##   <fct>       <dbl>
## 1 Africa       52.9
## 2 Americas     72.9
## 3 Asia         72.4
## 4 Europe       78.6
## 5 Oceania      80.7

How many unique countries does the data contain, by continent?

gapminder %>%
  group_by(continent) %>%
  summarize(n_obs = n(), n_countries = n_distinct(country))
## # A tibble: 5 × 3
##   continent n_obs n_countries
##   <fct>     <int>       <int>
## 1 Africa      624          52
## 2 Americas    300          25
## 3 Asia        396          33
## 4 Europe      360          30
## 5 Oceania      24           2

By continent, which country experienced the sharpest 5-year drop in life expectancy and what was the drop?

gapminder %>%
  group_by(continent, country) %>%
  select(country, year, continent, lifeExp) %>%
  mutate(le_delta = lifeExp - lag(lifeExp)) %>%
  summarize(worst_le_delta = min(le_delta, na.rm = TRUE)) %>%
  filter(min_rank(worst_le_delta) < 2) %>%
  arrange(worst_le_delta)
## `summarise()` has grouped output by 'continent'. You can override using the
## `.groups` argument.
## # A tibble: 5 × 3
## # Groups:   continent [5]
##   continent country     worst_le_delta
##   <fct>     <fct>                <dbl>
## 1 Africa    Rwanda             -20.4  
## 2 Asia      Cambodia            -9.10 
## 3 Americas  El Salvador         -1.51 
## 4 Europe    Montenegro          -1.46 
## 5 Oceania   Australia            0.170

5 Additional Exploration Using Tidyverse

6 World Development Indicators (WDI)

df_wdi <- WDI(
  country = "all", 
  indicator = c(lifeExp = "SP.DYN.LE00.IN", pop = "SP.POP.TOTL", gdpPercap = "NY.GDP.PCAP.KD")
)
df_wdi
##                                                    country iso2c iso3c year
## 1                                              Afghanistan    AF   AFG 1960
## 2                                              Afghanistan    AF   AFG 1961
## 3                                              Afghanistan    AF   AFG 1962
## 4                                              Afghanistan    AF   AFG 1963
## 5                                              Afghanistan    AF   AFG 1964
## 6                                              Afghanistan    AF   AFG 1965
## 7                                              Afghanistan    AF   AFG 1966
## 8                                              Afghanistan    AF   AFG 1967
## 9                                              Afghanistan    AF   AFG 1968
## 10                                             Afghanistan    AF   AFG 1969
## 11                                             Afghanistan    AF   AFG 1970
## 12                                             Afghanistan    AF   AFG 1971
## 13                                             Afghanistan    AF   AFG 1972
## 14                                             Afghanistan    AF   AFG 1973
## 15                                             Afghanistan    AF   AFG 1974
## 16                                             Afghanistan    AF   AFG 1975
## 17                                             Afghanistan    AF   AFG 1976
## 18                                             Afghanistan    AF   AFG 1977
## 19                                             Afghanistan    AF   AFG 1978
## 20                                             Afghanistan    AF   AFG 1979
## 21                                             Afghanistan    AF   AFG 1980
## 22                                             Afghanistan    AF   AFG 1981
## 23                                             Afghanistan    AF   AFG 1982
## 24                                             Afghanistan    AF   AFG 1983
## 25                                             Afghanistan    AF   AFG 1984
## 26                                             Afghanistan    AF   AFG 1985
## 27                                             Afghanistan    AF   AFG 1986
## 28                                             Afghanistan    AF   AFG 1987
## 29                                             Afghanistan    AF   AFG 1988
## 30                                             Afghanistan    AF   AFG 1989
## 31                                             Afghanistan    AF   AFG 1990
## 32                                             Afghanistan    AF   AFG 1991
## 33                                             Afghanistan    AF   AFG 1992
## 34                                             Afghanistan    AF   AFG 1993
## 35                                             Afghanistan    AF   AFG 1994
## 36                                             Afghanistan    AF   AFG 1995
## 37                                             Afghanistan    AF   AFG 1996
## 38                                             Afghanistan    AF   AFG 1997
## 39                                             Afghanistan    AF   AFG 1998
## 40                                             Afghanistan    AF   AFG 1999
## 41                                             Afghanistan    AF   AFG 2000
## 42                                             Afghanistan    AF   AFG 2001
## 43                                             Afghanistan    AF   AFG 2002
## 44                                             Afghanistan    AF   AFG 2003
## 45                                             Afghanistan    AF   AFG 2004
## 46                                             Afghanistan    AF   AFG 2005
## 47                                             Afghanistan    AF   AFG 2006
## 48                                             Afghanistan    AF   AFG 2007
## 49                                             Afghanistan    AF   AFG 2008
## 50                                             Afghanistan    AF   AFG 2009
## 51                                             Afghanistan    AF   AFG 2010
## 52                                             Afghanistan    AF   AFG 2011
## 53                                             Afghanistan    AF   AFG 2012
## 54                                             Afghanistan    AF   AFG 2013
## 55                                             Afghanistan    AF   AFG 2014
## 56                                             Afghanistan    AF   AFG 2015
## 57                                             Afghanistan    AF   AFG 2016
## 58                                             Afghanistan    AF   AFG 2017
## 59                                             Afghanistan    AF   AFG 2018
## 60                                             Afghanistan    AF   AFG 2019
## 61                                             Afghanistan    AF   AFG 2020
## 62                                             Afghanistan    AF   AFG 2021
## 63                             Africa Eastern and Southern    ZH   AFE 1960
## 64                             Africa Eastern and Southern    ZH   AFE 1961
## 65                             Africa Eastern and Southern    ZH   AFE 1962
## 66                             Africa Eastern and Southern    ZH   AFE 1963
## 67                             Africa Eastern and Southern    ZH   AFE 1964
## 68                             Africa Eastern and Southern    ZH   AFE 1965
## 69                             Africa Eastern and Southern    ZH   AFE 1966
## 70                             Africa Eastern and Southern    ZH   AFE 1967
## 71                             Africa Eastern and Southern    ZH   AFE 1968
## 72                             Africa Eastern and Southern    ZH   AFE 1969
## 73                             Africa Eastern and Southern    ZH   AFE 1970
## 74                             Africa Eastern and Southern    ZH   AFE 1971
## 75                             Africa Eastern and Southern    ZH   AFE 1972
## 76                             Africa Eastern and Southern    ZH   AFE 1973
## 77                             Africa Eastern and Southern    ZH   AFE 1974
## 78                             Africa Eastern and Southern    ZH   AFE 1975
## 79                             Africa Eastern and Southern    ZH   AFE 1976
## 80                             Africa Eastern and Southern    ZH   AFE 1977
## 81                             Africa Eastern and Southern    ZH   AFE 1978
## 82                             Africa Eastern and Southern    ZH   AFE 1979
## 83                             Africa Eastern and Southern    ZH   AFE 1980
## 84                             Africa Eastern and Southern    ZH   AFE 1981
## 85                             Africa Eastern and Southern    ZH   AFE 1982
## 86                             Africa Eastern and Southern    ZH   AFE 1983
## 87                             Africa Eastern and Southern    ZH   AFE 1984
## 88                             Africa Eastern and Southern    ZH   AFE 1985
## 89                             Africa Eastern and Southern    ZH   AFE 1986
## 90                             Africa Eastern and Southern    ZH   AFE 1987
## 91                             Africa Eastern and Southern    ZH   AFE 1988
## 92                             Africa Eastern and Southern    ZH   AFE 1989
## 93                             Africa Eastern and Southern    ZH   AFE 1990
## 94                             Africa Eastern and Southern    ZH   AFE 1991
## 95                             Africa Eastern and Southern    ZH   AFE 1992
## 96                             Africa Eastern and Southern    ZH   AFE 1993
## 97                             Africa Eastern and Southern    ZH   AFE 1994
## 98                             Africa Eastern and Southern    ZH   AFE 1995
## 99                             Africa Eastern and Southern    ZH   AFE 1996
## 100                            Africa Eastern and Southern    ZH   AFE 1997
## 101                            Africa Eastern and Southern    ZH   AFE 1998
## 102                            Africa Eastern and Southern    ZH   AFE 1999
## 103                            Africa Eastern and Southern    ZH   AFE 2000
## 104                            Africa Eastern and Southern    ZH   AFE 2001
## 105                            Africa Eastern and Southern    ZH   AFE 2002
## 106                            Africa Eastern and Southern    ZH   AFE 2003
## 107                            Africa Eastern and Southern    ZH   AFE 2004
## 108                            Africa Eastern and Southern    ZH   AFE 2005
## 109                            Africa Eastern and Southern    ZH   AFE 2006
## 110                            Africa Eastern and Southern    ZH   AFE 2007
## 111                            Africa Eastern and Southern    ZH   AFE 2008
## 112                            Africa Eastern and Southern    ZH   AFE 2009
## 113                            Africa Eastern and Southern    ZH   AFE 2010
## 114                            Africa Eastern and Southern    ZH   AFE 2011
## 115                            Africa Eastern and Southern    ZH   AFE 2012
## 116                            Africa Eastern and Southern    ZH   AFE 2013
## 117                            Africa Eastern and Southern    ZH   AFE 2014
## 118                            Africa Eastern and Southern    ZH   AFE 2015
## 119                            Africa Eastern and Southern    ZH   AFE 2016
## 120                            Africa Eastern and Southern    ZH   AFE 2017
## 121                            Africa Eastern and Southern    ZH   AFE 2018
## 122                            Africa Eastern and Southern    ZH   AFE 2019
## 123                            Africa Eastern and Southern    ZH   AFE 2020
## 124                            Africa Eastern and Southern    ZH   AFE 2021
## 125                             Africa Western and Central    ZI   AFW 1960
## 126                             Africa Western and Central    ZI   AFW 1961
## 127                             Africa Western and Central    ZI   AFW 1962
## 128                             Africa Western and Central    ZI   AFW 1963
## 129                             Africa Western and Central    ZI   AFW 1964
## 130                             Africa Western and Central    ZI   AFW 1965
## 131                             Africa Western and Central    ZI   AFW 1966
## 132                             Africa Western and Central    ZI   AFW 1967
## 133                             Africa Western and Central    ZI   AFW 1968
## 134                             Africa Western and Central    ZI   AFW 1969
## 135                             Africa Western and Central    ZI   AFW 1970
## 136                             Africa Western and Central    ZI   AFW 1971
## 137                             Africa Western and Central    ZI   AFW 1972
## 138                             Africa Western and Central    ZI   AFW 1973
## 139                             Africa Western and Central    ZI   AFW 1974
## 140                             Africa Western and Central    ZI   AFW 1975
## 141                             Africa Western and Central    ZI   AFW 1976
## 142                             Africa Western and Central    ZI   AFW 1977
## 143                             Africa Western and Central    ZI   AFW 1978
## 144                             Africa Western and Central    ZI   AFW 1979
## 145                             Africa Western and Central    ZI   AFW 1980
## 146                             Africa Western and Central    ZI   AFW 1981
## 147                             Africa Western and Central    ZI   AFW 1982
## 148                             Africa Western and Central    ZI   AFW 1983
## 149                             Africa Western and Central    ZI   AFW 1984
## 150                             Africa Western and Central    ZI   AFW 1985
## 151                             Africa Western and Central    ZI   AFW 1986
## 152                             Africa Western and Central    ZI   AFW 1987
## 153                             Africa Western and Central    ZI   AFW 1988
## 154                             Africa Western and Central    ZI   AFW 1989
## 155                             Africa Western and Central    ZI   AFW 1990
## 156                             Africa Western and Central    ZI   AFW 1991
## 157                             Africa Western and Central    ZI   AFW 1992
## 158                             Africa Western and Central    ZI   AFW 1993
## 159                             Africa Western and Central    ZI   AFW 1994
## 160                             Africa Western and Central    ZI   AFW 1995
## 161                             Africa Western and Central    ZI   AFW 1996
## 162                             Africa Western and Central    ZI   AFW 1997
## 163                             Africa Western and Central    ZI   AFW 1998
## 164                             Africa Western and Central    ZI   AFW 1999
## 165                             Africa Western and Central    ZI   AFW 2000
## 166                             Africa Western and Central    ZI   AFW 2001
## 167                             Africa Western and Central    ZI   AFW 2002
## 168                             Africa Western and Central    ZI   AFW 2003
## 169                             Africa Western and Central    ZI   AFW 2004
## 170                             Africa Western and Central    ZI   AFW 2005
## 171                             Africa Western and Central    ZI   AFW 2006
## 172                             Africa Western and Central    ZI   AFW 2007
## 173                             Africa Western and Central    ZI   AFW 2008
## 174                             Africa Western and Central    ZI   AFW 2009
## 175                             Africa Western and Central    ZI   AFW 2010
## 176                             Africa Western and Central    ZI   AFW 2011
## 177                             Africa Western and Central    ZI   AFW 2012
## 178                             Africa Western and Central    ZI   AFW 2013
## 179                             Africa Western and Central    ZI   AFW 2014
## 180                             Africa Western and Central    ZI   AFW 2015
## 181                             Africa Western and Central    ZI   AFW 2016
## 182                             Africa Western and Central    ZI   AFW 2017
## 183                             Africa Western and Central    ZI   AFW 2018
## 184                             Africa Western and Central    ZI   AFW 2019
## 185                             Africa Western and Central    ZI   AFW 2020
## 186                             Africa Western and Central    ZI   AFW 2021
## 187                                                Albania    AL   ALB 1960
## 188                                                Albania    AL   ALB 1961
## 189                                                Albania    AL   ALB 1962
## 190                                                Albania    AL   ALB 1963
## 191                                                Albania    AL   ALB 1964
## 192                                                Albania    AL   ALB 1965
## 193                                                Albania    AL   ALB 1966
## 194                                                Albania    AL   ALB 1967
## 195                                                Albania    AL   ALB 1968
## 196                                                Albania    AL   ALB 1969
## 197                                                Albania    AL   ALB 1970
## 198                                                Albania    AL   ALB 1971
## 199                                                Albania    AL   ALB 1972
## 200                                                Albania    AL   ALB 1973
## 201                                                Albania    AL   ALB 1974
## 202                                                Albania    AL   ALB 1975
## 203                                                Albania    AL   ALB 1976
## 204                                                Albania    AL   ALB 1977
## 205                                                Albania    AL   ALB 1978
## 206                                                Albania    AL   ALB 1979
## 207                                                Albania    AL   ALB 1980
## 208                                                Albania    AL   ALB 1981
## 209                                                Albania    AL   ALB 1982
## 210                                                Albania    AL   ALB 1983
## 211                                                Albania    AL   ALB 1984
## 212                                                Albania    AL   ALB 1985
## 213                                                Albania    AL   ALB 1986
## 214                                                Albania    AL   ALB 1987
## 215                                                Albania    AL   ALB 1988
## 216                                                Albania    AL   ALB 1989
## 217                                                Albania    AL   ALB 1990
## 218                                                Albania    AL   ALB 1991
## 219                                                Albania    AL   ALB 1992
## 220                                                Albania    AL   ALB 1993
## 221                                                Albania    AL   ALB 1994
## 222                                                Albania    AL   ALB 1995
## 223                                                Albania    AL   ALB 1996
## 224                                                Albania    AL   ALB 1997
## 225                                                Albania    AL   ALB 1998
## 226                                                Albania    AL   ALB 1999
## 227                                                Albania    AL   ALB 2000
## 228                                                Albania    AL   ALB 2001
## 229                                                Albania    AL   ALB 2002
## 230                                                Albania    AL   ALB 2003
## 231                                                Albania    AL   ALB 2004
## 232                                                Albania    AL   ALB 2005
## 233                                                Albania    AL   ALB 2006
## 234                                                Albania    AL   ALB 2007
## 235                                                Albania    AL   ALB 2008
## 236                                                Albania    AL   ALB 2009
## 237                                                Albania    AL   ALB 2010
## 238                                                Albania    AL   ALB 2011
## 239                                                Albania    AL   ALB 2012
## 240                                                Albania    AL   ALB 2013
## 241                                                Albania    AL   ALB 2014
## 242                                                Albania    AL   ALB 2015
## 243                                                Albania    AL   ALB 2016
## 244                                                Albania    AL   ALB 2017
## 245                                                Albania    AL   ALB 2018
## 246                                                Albania    AL   ALB 2019
## 247                                                Albania    AL   ALB 2020
## 248                                                Albania    AL   ALB 2021
## 249                                                Algeria    DZ   DZA 1960
## 250                                                Algeria    DZ   DZA 1961
## 251                                                Algeria    DZ   DZA 1962
## 252                                                Algeria    DZ   DZA 1963
## 253                                                Algeria    DZ   DZA 1964
## 254                                                Algeria    DZ   DZA 1965
## 255                                                Algeria    DZ   DZA 1966
## 256                                                Algeria    DZ   DZA 1967
## 257                                                Algeria    DZ   DZA 1968
## 258                                                Algeria    DZ   DZA 1969
## 259                                                Algeria    DZ   DZA 1970
## 260                                                Algeria    DZ   DZA 1971
## 261                                                Algeria    DZ   DZA 1972
## 262                                                Algeria    DZ   DZA 1973
## 263                                                Algeria    DZ   DZA 1974
## 264                                                Algeria    DZ   DZA 1975
## 265                                                Algeria    DZ   DZA 1976
## 266                                                Algeria    DZ   DZA 1977
## 267                                                Algeria    DZ   DZA 1978
## 268                                                Algeria    DZ   DZA 1979
## 269                                                Algeria    DZ   DZA 1980
## 270                                                Algeria    DZ   DZA 1981
## 271                                                Algeria    DZ   DZA 1982
## 272                                                Algeria    DZ   DZA 1983
## 273                                                Algeria    DZ   DZA 1984
## 274                                                Algeria    DZ   DZA 1985
## 275                                                Algeria    DZ   DZA 1986
## 276                                                Algeria    DZ   DZA 1987
## 277                                                Algeria    DZ   DZA 1988
## 278                                                Algeria    DZ   DZA 1989
## 279                                                Algeria    DZ   DZA 1990
## 280                                                Algeria    DZ   DZA 1991
## 281                                                Algeria    DZ   DZA 1992
## 282                                                Algeria    DZ   DZA 1993
## 283                                                Algeria    DZ   DZA 1994
## 284                                                Algeria    DZ   DZA 1995
## 285                                                Algeria    DZ   DZA 1996
## 286                                                Algeria    DZ   DZA 1997
## 287                                                Algeria    DZ   DZA 1998
## 288                                                Algeria    DZ   DZA 1999
## 289                                                Algeria    DZ   DZA 2000
## 290                                                Algeria    DZ   DZA 2001
## 291                                                Algeria    DZ   DZA 2002
## 292                                                Algeria    DZ   DZA 2003
## 293                                                Algeria    DZ   DZA 2004
## 294                                                Algeria    DZ   DZA 2005
## 295                                                Algeria    DZ   DZA 2006
## 296                                                Algeria    DZ   DZA 2007
## 297                                                Algeria    DZ   DZA 2008
## 298                                                Algeria    DZ   DZA 2009
## 299                                                Algeria    DZ   DZA 2010
## 300                                                Algeria    DZ   DZA 2011
## 301                                                Algeria    DZ   DZA 2012
## 302                                                Algeria    DZ   DZA 2013
## 303                                                Algeria    DZ   DZA 2014
## 304                                                Algeria    DZ   DZA 2015
## 305                                                Algeria    DZ   DZA 2016
## 306                                                Algeria    DZ   DZA 2017
## 307                                                Algeria    DZ   DZA 2018
## 308                                                Algeria    DZ   DZA 2019
## 309                                                Algeria    DZ   DZA 2020
## 310                                                Algeria    DZ   DZA 2021
## 311                                         American Samoa    AS   ASM 1960
## 312                                         American Samoa    AS   ASM 1961
## 313                                         American Samoa    AS   ASM 1962
## 314                                         American Samoa    AS   ASM 1963
## 315                                         American Samoa    AS   ASM 1964
## 316                                         American Samoa    AS   ASM 1965
## 317                                         American Samoa    AS   ASM 1966
## 318                                         American Samoa    AS   ASM 1967
## 319                                         American Samoa    AS   ASM 1968
## 320                                         American Samoa    AS   ASM 1969
## 321                                         American Samoa    AS   ASM 1970
## 322                                         American Samoa    AS   ASM 1971
## 323                                         American Samoa    AS   ASM 1972
## 324                                         American Samoa    AS   ASM 1973
## 325                                         American Samoa    AS   ASM 1974
## 326                                         American Samoa    AS   ASM 1975
## 327                                         American Samoa    AS   ASM 1976
## 328                                         American Samoa    AS   ASM 1977
## 329                                         American Samoa    AS   ASM 1978
## 330                                         American Samoa    AS   ASM 1979
## 331                                         American Samoa    AS   ASM 1980
## 332                                         American Samoa    AS   ASM 1981
## 333                                         American Samoa    AS   ASM 1982
## 334                                         American Samoa    AS   ASM 1983
## 335                                         American Samoa    AS   ASM 1984
## 336                                         American Samoa    AS   ASM 1985
## 337                                         American Samoa    AS   ASM 1986
## 338                                         American Samoa    AS   ASM 1987
## 339                                         American Samoa    AS   ASM 1988
## 340                                         American Samoa    AS   ASM 1989
## 341                                         American Samoa    AS   ASM 1990
## 342                                         American Samoa    AS   ASM 1991
## 343                                         American Samoa    AS   ASM 1992
## 344                                         American Samoa    AS   ASM 1993
## 345                                         American Samoa    AS   ASM 1994
## 346                                         American Samoa    AS   ASM 1995
## 347                                         American Samoa    AS   ASM 1996
## 348                                         American Samoa    AS   ASM 1997
## 349                                         American Samoa    AS   ASM 1998
## 350                                         American Samoa    AS   ASM 1999
## 351                                         American Samoa    AS   ASM 2000
## 352                                         American Samoa    AS   ASM 2001
## 353                                         American Samoa    AS   ASM 2002
## 354                                         American Samoa    AS   ASM 2003
## 355                                         American Samoa    AS   ASM 2004
## 356                                         American Samoa    AS   ASM 2005
## 357                                         American Samoa    AS   ASM 2006
## 358                                         American Samoa    AS   ASM 2007
## 359                                         American Samoa    AS   ASM 2008
## 360                                         American Samoa    AS   ASM 2009
## 361                                         American Samoa    AS   ASM 2010
## 362                                         American Samoa    AS   ASM 2011
## 363                                         American Samoa    AS   ASM 2012
## 364                                         American Samoa    AS   ASM 2013
## 365                                         American Samoa    AS   ASM 2014
## 366                                         American Samoa    AS   ASM 2015
## 367                                         American Samoa    AS   ASM 2016
## 368                                         American Samoa    AS   ASM 2017
## 369                                         American Samoa    AS   ASM 2018
## 370                                         American Samoa    AS   ASM 2019
## 371                                         American Samoa    AS   ASM 2020
## 372                                         American Samoa    AS   ASM 2021
## 373                                                Andorra    AD   AND 1960
## 374                                                Andorra    AD   AND 1961
## 375                                                Andorra    AD   AND 1962
## 376                                                Andorra    AD   AND 1963
## 377                                                Andorra    AD   AND 1964
## 378                                                Andorra    AD   AND 1965
## 379                                                Andorra    AD   AND 1966
## 380                                                Andorra    AD   AND 1967
## 381                                                Andorra    AD   AND 1968
## 382                                                Andorra    AD   AND 1969
## 383                                                Andorra    AD   AND 1970
## 384                                                Andorra    AD   AND 1971
## 385                                                Andorra    AD   AND 1972
## 386                                                Andorra    AD   AND 1973
## 387                                                Andorra    AD   AND 1974
## 388                                                Andorra    AD   AND 1975
## 389                                                Andorra    AD   AND 1976
## 390                                                Andorra    AD   AND 1977
## 391                                                Andorra    AD   AND 1978
## 392                                                Andorra    AD   AND 1979
## 393                                                Andorra    AD   AND 1980
## 394                                                Andorra    AD   AND 1981
## 395                                                Andorra    AD   AND 1982
## 396                                                Andorra    AD   AND 1983
## 397                                                Andorra    AD   AND 1984
## 398                                                Andorra    AD   AND 1985
## 399                                                Andorra    AD   AND 1986
## 400                                                Andorra    AD   AND 1987
## 401                                                Andorra    AD   AND 1988
## 402                                                Andorra    AD   AND 1989
## 403                                                Andorra    AD   AND 1990
## 404                                                Andorra    AD   AND 1991
## 405                                                Andorra    AD   AND 1992
## 406                                                Andorra    AD   AND 1993
## 407                                                Andorra    AD   AND 1994
## 408                                                Andorra    AD   AND 1995
## 409                                                Andorra    AD   AND 1996
## 410                                                Andorra    AD   AND 1997
## 411                                                Andorra    AD   AND 1998
## 412                                                Andorra    AD   AND 1999
## 413                                                Andorra    AD   AND 2000
## 414                                                Andorra    AD   AND 2001
## 415                                                Andorra    AD   AND 2002
## 416                                                Andorra    AD   AND 2003
## 417                                                Andorra    AD   AND 2004
## 418                                                Andorra    AD   AND 2005
## 419                                                Andorra    AD   AND 2006
## 420                                                Andorra    AD   AND 2007
## 421                                                Andorra    AD   AND 2008
## 422                                                Andorra    AD   AND 2009
## 423                                                Andorra    AD   AND 2010
## 424                                                Andorra    AD   AND 2011
## 425                                                Andorra    AD   AND 2012
## 426                                                Andorra    AD   AND 2013
## 427                                                Andorra    AD   AND 2014
## 428                                                Andorra    AD   AND 2015
## 429                                                Andorra    AD   AND 2016
## 430                                                Andorra    AD   AND 2017
## 431                                                Andorra    AD   AND 2018
## 432                                                Andorra    AD   AND 2019
## 433                                                Andorra    AD   AND 2020
## 434                                                Andorra    AD   AND 2021
## 435                                                 Angola    AO   AGO 1960
## 436                                                 Angola    AO   AGO 1961
## 437                                                 Angola    AO   AGO 1962
## 438                                                 Angola    AO   AGO 1963
## 439                                                 Angola    AO   AGO 1964
## 440                                                 Angola    AO   AGO 1965
## 441                                                 Angola    AO   AGO 1966
## 442                                                 Angola    AO   AGO 1967
## 443                                                 Angola    AO   AGO 1968
## 444                                                 Angola    AO   AGO 1969
## 445                                                 Angola    AO   AGO 1970
## 446                                                 Angola    AO   AGO 1971
## 447                                                 Angola    AO   AGO 1972
## 448                                                 Angola    AO   AGO 1973
## 449                                                 Angola    AO   AGO 1974
## 450                                                 Angola    AO   AGO 1975
## 451                                                 Angola    AO   AGO 1976
## 452                                                 Angola    AO   AGO 1977
## 453                                                 Angola    AO   AGO 1978
## 454                                                 Angola    AO   AGO 1979
## 455                                                 Angola    AO   AGO 1980
## 456                                                 Angola    AO   AGO 1981
## 457                                                 Angola    AO   AGO 1982
## 458                                                 Angola    AO   AGO 1983
## 459                                                 Angola    AO   AGO 1984
## 460                                                 Angola    AO   AGO 1985
## 461                                                 Angola    AO   AGO 1986
## 462                                                 Angola    AO   AGO 1987
## 463                                                 Angola    AO   AGO 1988
## 464                                                 Angola    AO   AGO 1989
## 465                                                 Angola    AO   AGO 1990
## 466                                                 Angola    AO   AGO 1991
## 467                                                 Angola    AO   AGO 1992
## 468                                                 Angola    AO   AGO 1993
## 469                                                 Angola    AO   AGO 1994
## 470                                                 Angola    AO   AGO 1995
## 471                                                 Angola    AO   AGO 1996
## 472                                                 Angola    AO   AGO 1997
## 473                                                 Angola    AO   AGO 1998
## 474                                                 Angola    AO   AGO 1999
## 475                                                 Angola    AO   AGO 2000
## 476                                                 Angola    AO   AGO 2001
## 477                                                 Angola    AO   AGO 2002
## 478                                                 Angola    AO   AGO 2003
## 479                                                 Angola    AO   AGO 2004
## 480                                                 Angola    AO   AGO 2005
## 481                                                 Angola    AO   AGO 2006
## 482                                                 Angola    AO   AGO 2007
## 483                                                 Angola    AO   AGO 2008
## 484                                                 Angola    AO   AGO 2009
## 485                                                 Angola    AO   AGO 2010
## 486                                                 Angola    AO   AGO 2011
## 487                                                 Angola    AO   AGO 2012
## 488                                                 Angola    AO   AGO 2013
## 489                                                 Angola    AO   AGO 2014
## 490                                                 Angola    AO   AGO 2015
## 491                                                 Angola    AO   AGO 2016
## 492                                                 Angola    AO   AGO 2017
## 493                                                 Angola    AO   AGO 2018
## 494                                                 Angola    AO   AGO 2019
## 495                                                 Angola    AO   AGO 2020
## 496                                                 Angola    AO   AGO 2021
## 497                                    Antigua and Barbuda    AG   ATG 1960
## 498                                    Antigua and Barbuda    AG   ATG 1961
## 499                                    Antigua and Barbuda    AG   ATG 1962
## 500                                    Antigua and Barbuda    AG   ATG 1963
## 501                                    Antigua and Barbuda    AG   ATG 1964
## 502                                    Antigua and Barbuda    AG   ATG 1965
## 503                                    Antigua and Barbuda    AG   ATG 1966
## 504                                    Antigua and Barbuda    AG   ATG 1967
## 505                                    Antigua and Barbuda    AG   ATG 1968
## 506                                    Antigua and Barbuda    AG   ATG 1969
## 507                                    Antigua and Barbuda    AG   ATG 1970
## 508                                    Antigua and Barbuda    AG   ATG 1971
## 509                                    Antigua and Barbuda    AG   ATG 1972
## 510                                    Antigua and Barbuda    AG   ATG 1973
## 511                                    Antigua and Barbuda    AG   ATG 1974
## 512                                    Antigua and Barbuda    AG   ATG 1975
## 513                                    Antigua and Barbuda    AG   ATG 1976
## 514                                    Antigua and Barbuda    AG   ATG 1977
## 515                                    Antigua and Barbuda    AG   ATG 1978
## 516                                    Antigua and Barbuda    AG   ATG 1979
## 517                                    Antigua and Barbuda    AG   ATG 1980
## 518                                    Antigua and Barbuda    AG   ATG 1981
## 519                                    Antigua and Barbuda    AG   ATG 1982
## 520                                    Antigua and Barbuda    AG   ATG 1983
## 521                                    Antigua and Barbuda    AG   ATG 1984
## 522                                    Antigua and Barbuda    AG   ATG 1985
## 523                                    Antigua and Barbuda    AG   ATG 1986
## 524                                    Antigua and Barbuda    AG   ATG 1987
## 525                                    Antigua and Barbuda    AG   ATG 1988
## 526                                    Antigua and Barbuda    AG   ATG 1989
## 527                                    Antigua and Barbuda    AG   ATG 1990
## 528                                    Antigua and Barbuda    AG   ATG 1991
## 529                                    Antigua and Barbuda    AG   ATG 1992
## 530                                    Antigua and Barbuda    AG   ATG 1993
## 531                                    Antigua and Barbuda    AG   ATG 1994
## 532                                    Antigua and Barbuda    AG   ATG 1995
## 533                                    Antigua and Barbuda    AG   ATG 1996
## 534                                    Antigua and Barbuda    AG   ATG 1997
## 535                                    Antigua and Barbuda    AG   ATG 1998
## 536                                    Antigua and Barbuda    AG   ATG 1999
## 537                                    Antigua and Barbuda    AG   ATG 2000
## 538                                    Antigua and Barbuda    AG   ATG 2001
## 539                                    Antigua and Barbuda    AG   ATG 2002
## 540                                    Antigua and Barbuda    AG   ATG 2003
## 541                                    Antigua and Barbuda    AG   ATG 2004
## 542                                    Antigua and Barbuda    AG   ATG 2005
## 543                                    Antigua and Barbuda    AG   ATG 2006
## 544                                    Antigua and Barbuda    AG   ATG 2007
## 545                                    Antigua and Barbuda    AG   ATG 2008
## 546                                    Antigua and Barbuda    AG   ATG 2009
## 547                                    Antigua and Barbuda    AG   ATG 2010
## 548                                    Antigua and Barbuda    AG   ATG 2011
## 549                                    Antigua and Barbuda    AG   ATG 2012
## 550                                    Antigua and Barbuda    AG   ATG 2013
## 551                                    Antigua and Barbuda    AG   ATG 2014
## 552                                    Antigua and Barbuda    AG   ATG 2015
## 553                                    Antigua and Barbuda    AG   ATG 2016
## 554                                    Antigua and Barbuda    AG   ATG 2017
## 555                                    Antigua and Barbuda    AG   ATG 2018
## 556                                    Antigua and Barbuda    AG   ATG 2019
## 557                                    Antigua and Barbuda    AG   ATG 2020
## 558                                    Antigua and Barbuda    AG   ATG 2021
## 559                                             Arab World    1A   ARB 1960
## 560                                             Arab World    1A   ARB 1961
## 561                                             Arab World    1A   ARB 1962
## 562                                             Arab World    1A   ARB 1963
## 563                                             Arab World    1A   ARB 1964
## 564                                             Arab World    1A   ARB 1965
## 565                                             Arab World    1A   ARB 1966
## 566                                             Arab World    1A   ARB 1967
## 567                                             Arab World    1A   ARB 1968
## 568                                             Arab World    1A   ARB 1969
## 569                                             Arab World    1A   ARB 1970
## 570                                             Arab World    1A   ARB 1971
## 571                                             Arab World    1A   ARB 1972
## 572                                             Arab World    1A   ARB 1973
## 573                                             Arab World    1A   ARB 1974
## 574                                             Arab World    1A   ARB 1975
## 575                                             Arab World    1A   ARB 1976
## 576                                             Arab World    1A   ARB 1977
## 577                                             Arab World    1A   ARB 1978
## 578                                             Arab World    1A   ARB 1979
## 579                                             Arab World    1A   ARB 1980
## 580                                             Arab World    1A   ARB 1981
## 581                                             Arab World    1A   ARB 1982
## 582                                             Arab World    1A   ARB 1983
## 583                                             Arab World    1A   ARB 1984
## 584                                             Arab World    1A   ARB 1985
## 585                                             Arab World    1A   ARB 1986
## 586                                             Arab World    1A   ARB 1987
## 587                                             Arab World    1A   ARB 1988
## 588                                             Arab World    1A   ARB 1989
## 589                                             Arab World    1A   ARB 1990
## 590                                             Arab World    1A   ARB 1991
## 591                                             Arab World    1A   ARB 1992
## 592                                             Arab World    1A   ARB 1993
## 593                                             Arab World    1A   ARB 1994
## 594                                             Arab World    1A   ARB 1995
## 595                                             Arab World    1A   ARB 1996
## 596                                             Arab World    1A   ARB 1997
## 597                                             Arab World    1A   ARB 1998
## 598                                             Arab World    1A   ARB 1999
## 599                                             Arab World    1A   ARB 2000
## 600                                             Arab World    1A   ARB 2001
## 601                                             Arab World    1A   ARB 2002
## 602                                             Arab World    1A   ARB 2003
## 603                                             Arab World    1A   ARB 2004
## 604                                             Arab World    1A   ARB 2005
## 605                                             Arab World    1A   ARB 2006
## 606                                             Arab World    1A   ARB 2007
## 607                                             Arab World    1A   ARB 2008
## 608                                             Arab World    1A   ARB 2009
## 609                                             Arab World    1A   ARB 2010
## 610                                             Arab World    1A   ARB 2011
## 611                                             Arab World    1A   ARB 2012
## 612                                             Arab World    1A   ARB 2013
## 613                                             Arab World    1A   ARB 2014
## 614                                             Arab World    1A   ARB 2015
## 615                                             Arab World    1A   ARB 2016
## 616                                             Arab World    1A   ARB 2017
## 617                                             Arab World    1A   ARB 2018
## 618                                             Arab World    1A   ARB 2019
## 619                                             Arab World    1A   ARB 2020
## 620                                             Arab World    1A   ARB 2021
## 621                                              Argentina    AR   ARG 1960
## 622                                              Argentina    AR   ARG 1961
## 623                                              Argentina    AR   ARG 1962
## 624                                              Argentina    AR   ARG 1963
## 625                                              Argentina    AR   ARG 1964
## 626                                              Argentina    AR   ARG 1965
## 627                                              Argentina    AR   ARG 1966
## 628                                              Argentina    AR   ARG 1967
## 629                                              Argentina    AR   ARG 1968
## 630                                              Argentina    AR   ARG 1969
## 631                                              Argentina    AR   ARG 1970
## 632                                              Argentina    AR   ARG 1971
## 633                                              Argentina    AR   ARG 1972
## 634                                              Argentina    AR   ARG 1973
## 635                                              Argentina    AR   ARG 1974
## 636                                              Argentina    AR   ARG 1975
## 637                                              Argentina    AR   ARG 1976
## 638                                              Argentina    AR   ARG 1977
## 639                                              Argentina    AR   ARG 1978
## 640                                              Argentina    AR   ARG 1979
## 641                                              Argentina    AR   ARG 1980
## 642                                              Argentina    AR   ARG 1981
## 643                                              Argentina    AR   ARG 1982
## 644                                              Argentina    AR   ARG 1983
## 645                                              Argentina    AR   ARG 1984
## 646                                              Argentina    AR   ARG 1985
## 647                                              Argentina    AR   ARG 1986
## 648                                              Argentina    AR   ARG 1987
## 649                                              Argentina    AR   ARG 1988
## 650                                              Argentina    AR   ARG 1989
## 651                                              Argentina    AR   ARG 1990
## 652                                              Argentina    AR   ARG 1991
## 653                                              Argentina    AR   ARG 1992
## 654                                              Argentina    AR   ARG 1993
## 655                                              Argentina    AR   ARG 1994
## 656                                              Argentina    AR   ARG 1995
## 657                                              Argentina    AR   ARG 1996
## 658                                              Argentina    AR   ARG 1997
## 659                                              Argentina    AR   ARG 1998
## 660                                              Argentina    AR   ARG 1999
## 661                                              Argentina    AR   ARG 2000
## 662                                              Argentina    AR   ARG 2001
## 663                                              Argentina    AR   ARG 2002
## 664                                              Argentina    AR   ARG 2003
## 665                                              Argentina    AR   ARG 2004
## 666                                              Argentina    AR   ARG 2005
## 667                                              Argentina    AR   ARG 2006
## 668                                              Argentina    AR   ARG 2007
## 669                                              Argentina    AR   ARG 2008
## 670                                              Argentina    AR   ARG 2009
## 671                                              Argentina    AR   ARG 2010
## 672                                              Argentina    AR   ARG 2011
## 673                                              Argentina    AR   ARG 2012
## 674                                              Argentina    AR   ARG 2013
## 675                                              Argentina    AR   ARG 2014
## 676                                              Argentina    AR   ARG 2015
## 677                                              Argentina    AR   ARG 2016
## 678                                              Argentina    AR   ARG 2017
## 679                                              Argentina    AR   ARG 2018
## 680                                              Argentina    AR   ARG 2019
## 681                                              Argentina    AR   ARG 2020
## 682                                              Argentina    AR   ARG 2021
## 683                                                Armenia    AM   ARM 1960
## 684                                                Armenia    AM   ARM 1961
## 685                                                Armenia    AM   ARM 1962
## 686                                                Armenia    AM   ARM 1963
## 687                                                Armenia    AM   ARM 1964
## 688                                                Armenia    AM   ARM 1965
## 689                                                Armenia    AM   ARM 1966
## 690                                                Armenia    AM   ARM 1967
## 691                                                Armenia    AM   ARM 1968
## 692                                                Armenia    AM   ARM 1969
## 693                                                Armenia    AM   ARM 1970
## 694                                                Armenia    AM   ARM 1971
## 695                                                Armenia    AM   ARM 1972
## 696                                                Armenia    AM   ARM 1973
## 697                                                Armenia    AM   ARM 1974
## 698                                                Armenia    AM   ARM 1975
## 699                                                Armenia    AM   ARM 1976
## 700                                                Armenia    AM   ARM 1977
## 701                                                Armenia    AM   ARM 1978
## 702                                                Armenia    AM   ARM 1979
## 703                                                Armenia    AM   ARM 1980
## 704                                                Armenia    AM   ARM 1981
## 705                                                Armenia    AM   ARM 1982
## 706                                                Armenia    AM   ARM 1983
## 707                                                Armenia    AM   ARM 1984
## 708                                                Armenia    AM   ARM 1985
## 709                                                Armenia    AM   ARM 1986
## 710                                                Armenia    AM   ARM 1987
## 711                                                Armenia    AM   ARM 1988
## 712                                                Armenia    AM   ARM 1989
## 713                                                Armenia    AM   ARM 1990
## 714                                                Armenia    AM   ARM 1991
## 715                                                Armenia    AM   ARM 1992
## 716                                                Armenia    AM   ARM 1993
## 717                                                Armenia    AM   ARM 1994
## 718                                                Armenia    AM   ARM 1995
## 719                                                Armenia    AM   ARM 1996
## 720                                                Armenia    AM   ARM 1997
## 721                                                Armenia    AM   ARM 1998
## 722                                                Armenia    AM   ARM 1999
## 723                                                Armenia    AM   ARM 2000
## 724                                                Armenia    AM   ARM 2001
## 725                                                Armenia    AM   ARM 2002
## 726                                                Armenia    AM   ARM 2003
## 727                                                Armenia    AM   ARM 2004
## 728                                                Armenia    AM   ARM 2005
## 729                                                Armenia    AM   ARM 2006
## 730                                                Armenia    AM   ARM 2007
## 731                                                Armenia    AM   ARM 2008
## 732                                                Armenia    AM   ARM 2009
## 733                                                Armenia    AM   ARM 2010
## 734                                                Armenia    AM   ARM 2011
## 735                                                Armenia    AM   ARM 2012
## 736                                                Armenia    AM   ARM 2013
## 737                                                Armenia    AM   ARM 2014
## 738                                                Armenia    AM   ARM 2015
## 739                                                Armenia    AM   ARM 2016
## 740                                                Armenia    AM   ARM 2017
## 741                                                Armenia    AM   ARM 2018
## 742                                                Armenia    AM   ARM 2019
## 743                                                Armenia    AM   ARM 2020
## 744                                                Armenia    AM   ARM 2021
## 745                                                  Aruba    AW   ABW 1960
## 746                                                  Aruba    AW   ABW 1961
## 747                                                  Aruba    AW   ABW 1962
## 748                                                  Aruba    AW   ABW 1963
## 749                                                  Aruba    AW   ABW 1964
## 750                                                  Aruba    AW   ABW 1965
## 751                                                  Aruba    AW   ABW 1966
## 752                                                  Aruba    AW   ABW 1967
## 753                                                  Aruba    AW   ABW 1968
## 754                                                  Aruba    AW   ABW 1969
## 755                                                  Aruba    AW   ABW 1970
## 756                                                  Aruba    AW   ABW 1971
## 757                                                  Aruba    AW   ABW 1972
## 758                                                  Aruba    AW   ABW 1973
## 759                                                  Aruba    AW   ABW 1974
## 760                                                  Aruba    AW   ABW 1975
## 761                                                  Aruba    AW   ABW 1976
## 762                                                  Aruba    AW   ABW 1977
## 763                                                  Aruba    AW   ABW 1978
## 764                                                  Aruba    AW   ABW 1979
## 765                                                  Aruba    AW   ABW 1980
## 766                                                  Aruba    AW   ABW 1981
## 767                                                  Aruba    AW   ABW 1982
## 768                                                  Aruba    AW   ABW 1983
## 769                                                  Aruba    AW   ABW 1984
## 770                                                  Aruba    AW   ABW 1985
## 771                                                  Aruba    AW   ABW 1986
## 772                                                  Aruba    AW   ABW 1987
## 773                                                  Aruba    AW   ABW 1988
## 774                                                  Aruba    AW   ABW 1989
## 775                                                  Aruba    AW   ABW 1990
## 776                                                  Aruba    AW   ABW 1991
## 777                                                  Aruba    AW   ABW 1992
## 778                                                  Aruba    AW   ABW 1993
## 779                                                  Aruba    AW   ABW 1994
## 780                                                  Aruba    AW   ABW 1995
## 781                                                  Aruba    AW   ABW 1996
## 782                                                  Aruba    AW   ABW 1997
## 783                                                  Aruba    AW   ABW 1998
## 784                                                  Aruba    AW   ABW 1999
## 785                                                  Aruba    AW   ABW 2000
## 786                                                  Aruba    AW   ABW 2001
## 787                                                  Aruba    AW   ABW 2002
## 788                                                  Aruba    AW   ABW 2003
## 789                                                  Aruba    AW   ABW 2004
## 790                                                  Aruba    AW   ABW 2005
## 791                                                  Aruba    AW   ABW 2006
## 792                                                  Aruba    AW   ABW 2007
## 793                                                  Aruba    AW   ABW 2008
## 794                                                  Aruba    AW   ABW 2009
## 795                                                  Aruba    AW   ABW 2010
## 796                                                  Aruba    AW   ABW 2011
## 797                                                  Aruba    AW   ABW 2012
## 798                                                  Aruba    AW   ABW 2013
## 799                                                  Aruba    AW   ABW 2014
## 800                                                  Aruba    AW   ABW 2015
## 801                                                  Aruba    AW   ABW 2016
## 802                                                  Aruba    AW   ABW 2017
## 803                                                  Aruba    AW   ABW 2018
## 804                                                  Aruba    AW   ABW 2019
## 805                                                  Aruba    AW   ABW 2020
## 806                                                  Aruba    AW   ABW 2021
## 807                                              Australia    AU   AUS 1960
## 808                                              Australia    AU   AUS 1961
## 809                                              Australia    AU   AUS 1962
## 810                                              Australia    AU   AUS 1963
## 811                                              Australia    AU   AUS 1964
## 812                                              Australia    AU   AUS 1965
## 813                                              Australia    AU   AUS 1966
## 814                                              Australia    AU   AUS 1967
## 815                                              Australia    AU   AUS 1968
## 816                                              Australia    AU   AUS 1969
## 817                                              Australia    AU   AUS 1970
## 818                                              Australia    AU   AUS 1971
## 819                                              Australia    AU   AUS 1972
## 820                                              Australia    AU   AUS 1973
## 821                                              Australia    AU   AUS 1974
## 822                                              Australia    AU   AUS 1975
## 823                                              Australia    AU   AUS 1976
## 824                                              Australia    AU   AUS 1977
## 825                                              Australia    AU   AUS 1978
## 826                                              Australia    AU   AUS 1979
## 827                                              Australia    AU   AUS 1980
## 828                                              Australia    AU   AUS 1981
## 829                                              Australia    AU   AUS 1982
## 830                                              Australia    AU   AUS 1983
## 831                                              Australia    AU   AUS 1984
## 832                                              Australia    AU   AUS 1985
## 833                                              Australia    AU   AUS 1986
## 834                                              Australia    AU   AUS 1987
## 835                                              Australia    AU   AUS 1988
## 836                                              Australia    AU   AUS 1989
## 837                                              Australia    AU   AUS 1990
## 838                                              Australia    AU   AUS 1991
## 839                                              Australia    AU   AUS 1992
## 840                                              Australia    AU   AUS 1993
## 841                                              Australia    AU   AUS 1994
## 842                                              Australia    AU   AUS 1995
## 843                                              Australia    AU   AUS 1996
## 844                                              Australia    AU   AUS 1997
## 845                                              Australia    AU   AUS 1998
## 846                                              Australia    AU   AUS 1999
## 847                                              Australia    AU   AUS 2000
## 848                                              Australia    AU   AUS 2001
## 849                                              Australia    AU   AUS 2002
## 850                                              Australia    AU   AUS 2003
## 851                                              Australia    AU   AUS 2004
## 852                                              Australia    AU   AUS 2005
## 853                                              Australia    AU   AUS 2006
## 854                                              Australia    AU   AUS 2007
## 855                                              Australia    AU   AUS 2008
## 856                                              Australia    AU   AUS 2009
## 857                                              Australia    AU   AUS 2010
## 858                                              Australia    AU   AUS 2011
## 859                                              Australia    AU   AUS 2012
## 860                                              Australia    AU   AUS 2013
## 861                                              Australia    AU   AUS 2014
## 862                                              Australia    AU   AUS 2015
## 863                                              Australia    AU   AUS 2016
## 864                                              Australia    AU   AUS 2017
## 865                                              Australia    AU   AUS 2018
## 866                                              Australia    AU   AUS 2019
## 867                                              Australia    AU   AUS 2020
## 868                                              Australia    AU   AUS 2021
## 869                                                Austria    AT   AUT 1960
## 870                                                Austria    AT   AUT 1961
## 871                                                Austria    AT   AUT 1962
## 872                                                Austria    AT   AUT 1963
## 873                                                Austria    AT   AUT 1964
## 874                                                Austria    AT   AUT 1965
## 875                                                Austria    AT   AUT 1966
## 876                                                Austria    AT   AUT 1967
## 877                                                Austria    AT   AUT 1968
## 878                                                Austria    AT   AUT 1969
## 879                                                Austria    AT   AUT 1970
## 880                                                Austria    AT   AUT 1971
## 881                                                Austria    AT   AUT 1972
## 882                                                Austria    AT   AUT 1973
## 883                                                Austria    AT   AUT 1974
## 884                                                Austria    AT   AUT 1975
## 885                                                Austria    AT   AUT 1976
## 886                                                Austria    AT   AUT 1977
## 887                                                Austria    AT   AUT 1978
## 888                                                Austria    AT   AUT 1979
## 889                                                Austria    AT   AUT 1980
## 890                                                Austria    AT   AUT 1981
## 891                                                Austria    AT   AUT 1982
## 892                                                Austria    AT   AUT 1983
## 893                                                Austria    AT   AUT 1984
## 894                                                Austria    AT   AUT 1985
## 895                                                Austria    AT   AUT 1986
## 896                                                Austria    AT   AUT 1987
## 897                                                Austria    AT   AUT 1988
## 898                                                Austria    AT   AUT 1989
## 899                                                Austria    AT   AUT 1990
## 900                                                Austria    AT   AUT 1991
## 901                                                Austria    AT   AUT 1992
## 902                                                Austria    AT   AUT 1993
## 903                                                Austria    AT   AUT 1994
## 904                                                Austria    AT   AUT 1995
## 905                                                Austria    AT   AUT 1996
## 906                                                Austria    AT   AUT 1997
## 907                                                Austria    AT   AUT 1998
## 908                                                Austria    AT   AUT 1999
## 909                                                Austria    AT   AUT 2000
## 910                                                Austria    AT   AUT 2001
## 911                                                Austria    AT   AUT 2002
## 912                                                Austria    AT   AUT 2003
## 913                                                Austria    AT   AUT 2004
## 914                                                Austria    AT   AUT 2005
## 915                                                Austria    AT   AUT 2006
## 916                                                Austria    AT   AUT 2007
## 917                                                Austria    AT   AUT 2008
## 918                                                Austria    AT   AUT 2009
## 919                                                Austria    AT   AUT 2010
## 920                                                Austria    AT   AUT 2011
## 921                                                Austria    AT   AUT 2012
## 922                                                Austria    AT   AUT 2013
## 923                                                Austria    AT   AUT 2014
## 924                                                Austria    AT   AUT 2015
## 925                                                Austria    AT   AUT 2016
## 926                                                Austria    AT   AUT 2017
## 927                                                Austria    AT   AUT 2018
## 928                                                Austria    AT   AUT 2019
## 929                                                Austria    AT   AUT 2020
## 930                                                Austria    AT   AUT 2021
## 931                                             Azerbaijan    AZ   AZE 1960
## 932                                             Azerbaijan    AZ   AZE 1961
## 933                                             Azerbaijan    AZ   AZE 1962
## 934                                             Azerbaijan    AZ   AZE 1963
## 935                                             Azerbaijan    AZ   AZE 1964
## 936                                             Azerbaijan    AZ   AZE 1965
## 937                                             Azerbaijan    AZ   AZE 1966
## 938                                             Azerbaijan    AZ   AZE 1967
## 939                                             Azerbaijan    AZ   AZE 1968
## 940                                             Azerbaijan    AZ   AZE 1969
## 941                                             Azerbaijan    AZ   AZE 1970
## 942                                             Azerbaijan    AZ   AZE 1971
## 943                                             Azerbaijan    AZ   AZE 1972
## 944                                             Azerbaijan    AZ   AZE 1973
## 945                                             Azerbaijan    AZ   AZE 1974
## 946                                             Azerbaijan    AZ   AZE 1975
## 947                                             Azerbaijan    AZ   AZE 1976
## 948                                             Azerbaijan    AZ   AZE 1977
## 949                                             Azerbaijan    AZ   AZE 1978
## 950                                             Azerbaijan    AZ   AZE 1979
## 951                                             Azerbaijan    AZ   AZE 1980
## 952                                             Azerbaijan    AZ   AZE 1981
## 953                                             Azerbaijan    AZ   AZE 1982
## 954                                             Azerbaijan    AZ   AZE 1983
## 955                                             Azerbaijan    AZ   AZE 1984
## 956                                             Azerbaijan    AZ   AZE 1985
## 957                                             Azerbaijan    AZ   AZE 1986
## 958                                             Azerbaijan    AZ   AZE 1987
## 959                                             Azerbaijan    AZ   AZE 1988
## 960                                             Azerbaijan    AZ   AZE 1989
## 961                                             Azerbaijan    AZ   AZE 1990
## 962                                             Azerbaijan    AZ   AZE 1991
## 963                                             Azerbaijan    AZ   AZE 1992
## 964                                             Azerbaijan    AZ   AZE 1993
## 965                                             Azerbaijan    AZ   AZE 1994
## 966                                             Azerbaijan    AZ   AZE 1995
## 967                                             Azerbaijan    AZ   AZE 1996
## 968                                             Azerbaijan    AZ   AZE 1997
## 969                                             Azerbaijan    AZ   AZE 1998
## 970                                             Azerbaijan    AZ   AZE 1999
## 971                                             Azerbaijan    AZ   AZE 2000
## 972                                             Azerbaijan    AZ   AZE 2001
## 973                                             Azerbaijan    AZ   AZE 2002
## 974                                             Azerbaijan    AZ   AZE 2003
## 975                                             Azerbaijan    AZ   AZE 2004
## 976                                             Azerbaijan    AZ   AZE 2005
## 977                                             Azerbaijan    AZ   AZE 2006
## 978                                             Azerbaijan    AZ   AZE 2007
## 979                                             Azerbaijan    AZ   AZE 2008
## 980                                             Azerbaijan    AZ   AZE 2009
## 981                                             Azerbaijan    AZ   AZE 2010
## 982                                             Azerbaijan    AZ   AZE 2011
## 983                                             Azerbaijan    AZ   AZE 2012
## 984                                             Azerbaijan    AZ   AZE 2013
## 985                                             Azerbaijan    AZ   AZE 2014
## 986                                             Azerbaijan    AZ   AZE 2015
## 987                                             Azerbaijan    AZ   AZE 2016
## 988                                             Azerbaijan    AZ   AZE 2017
## 989                                             Azerbaijan    AZ   AZE 2018
## 990                                             Azerbaijan    AZ   AZE 2019
## 991                                             Azerbaijan    AZ   AZE 2020
## 992                                             Azerbaijan    AZ   AZE 2021
## 993                                           Bahamas, The    BS   BHS 1960
## 994                                           Bahamas, The    BS   BHS 1961
## 995                                           Bahamas, The    BS   BHS 1962
## 996                                           Bahamas, The    BS   BHS 1963
## 997                                           Bahamas, The    BS   BHS 1964
## 998                                           Bahamas, The    BS   BHS 1965
## 999                                           Bahamas, The    BS   BHS 1966
## 1000                                          Bahamas, The    BS   BHS 1967
## 1001                                          Bahamas, The    BS   BHS 1968
## 1002                                          Bahamas, The    BS   BHS 1969
## 1003                                          Bahamas, The    BS   BHS 1970
## 1004                                          Bahamas, The    BS   BHS 1971
## 1005                                          Bahamas, The    BS   BHS 1972
## 1006                                          Bahamas, The    BS   BHS 1973
## 1007                                          Bahamas, The    BS   BHS 1974
## 1008                                          Bahamas, The    BS   BHS 1975
## 1009                                          Bahamas, The    BS   BHS 1976
## 1010                                          Bahamas, The    BS   BHS 1977
## 1011                                          Bahamas, The    BS   BHS 1978
## 1012                                          Bahamas, The    BS   BHS 1979
## 1013                                          Bahamas, The    BS   BHS 1980
## 1014                                          Bahamas, The    BS   BHS 1981
## 1015                                          Bahamas, The    BS   BHS 1982
## 1016                                          Bahamas, The    BS   BHS 1983
## 1017                                          Bahamas, The    BS   BHS 1984
## 1018                                          Bahamas, The    BS   BHS 1985
## 1019                                          Bahamas, The    BS   BHS 1986
## 1020                                          Bahamas, The    BS   BHS 1987
## 1021                                          Bahamas, The    BS   BHS 1988
## 1022                                          Bahamas, The    BS   BHS 1989
## 1023                                          Bahamas, The    BS   BHS 1990
## 1024                                          Bahamas, The    BS   BHS 1991
## 1025                                          Bahamas, The    BS   BHS 1992
## 1026                                          Bahamas, The    BS   BHS 1993
## 1027                                          Bahamas, The    BS   BHS 1994
## 1028                                          Bahamas, The    BS   BHS 1995
## 1029                                          Bahamas, The    BS   BHS 1996
## 1030                                          Bahamas, The    BS   BHS 1997
## 1031                                          Bahamas, The    BS   BHS 1998
## 1032                                          Bahamas, The    BS   BHS 1999
## 1033                                          Bahamas, The    BS   BHS 2000
## 1034                                          Bahamas, The    BS   BHS 2001
## 1035                                          Bahamas, The    BS   BHS 2002
## 1036                                          Bahamas, The    BS   BHS 2003
## 1037                                          Bahamas, The    BS   BHS 2004
## 1038                                          Bahamas, The    BS   BHS 2005
## 1039                                          Bahamas, The    BS   BHS 2006
## 1040                                          Bahamas, The    BS   BHS 2007
## 1041                                          Bahamas, The    BS   BHS 2008
## 1042                                          Bahamas, The    BS   BHS 2009
## 1043                                          Bahamas, The    BS   BHS 2010
## 1044                                          Bahamas, The    BS   BHS 2011
## 1045                                          Bahamas, The    BS   BHS 2012
## 1046                                          Bahamas, The    BS   BHS 2013
## 1047                                          Bahamas, The    BS   BHS 2014
## 1048                                          Bahamas, The    BS   BHS 2015
## 1049                                          Bahamas, The    BS   BHS 2016
## 1050                                          Bahamas, The    BS   BHS 2017
## 1051                                          Bahamas, The    BS   BHS 2018
## 1052                                          Bahamas, The    BS   BHS 2019
## 1053                                          Bahamas, The    BS   BHS 2020
## 1054                                          Bahamas, The    BS   BHS 2021
## 1055                                               Bahrain    BH   BHR 1960
## 1056                                               Bahrain    BH   BHR 1961
## 1057                                               Bahrain    BH   BHR 1962
## 1058                                               Bahrain    BH   BHR 1963
## 1059                                               Bahrain    BH   BHR 1964
## 1060                                               Bahrain    BH   BHR 1965
## 1061                                               Bahrain    BH   BHR 1966
## 1062                                               Bahrain    BH   BHR 1967
## 1063                                               Bahrain    BH   BHR 1968
## 1064                                               Bahrain    BH   BHR 1969
## 1065                                               Bahrain    BH   BHR 1970
## 1066                                               Bahrain    BH   BHR 1971
## 1067                                               Bahrain    BH   BHR 1972
## 1068                                               Bahrain    BH   BHR 1973
## 1069                                               Bahrain    BH   BHR 1974
## 1070                                               Bahrain    BH   BHR 1975
## 1071                                               Bahrain    BH   BHR 1976
## 1072                                               Bahrain    BH   BHR 1977
## 1073                                               Bahrain    BH   BHR 1978
## 1074                                               Bahrain    BH   BHR 1979
## 1075                                               Bahrain    BH   BHR 1980
## 1076                                               Bahrain    BH   BHR 1981
## 1077                                               Bahrain    BH   BHR 1982
## 1078                                               Bahrain    BH   BHR 1983
## 1079                                               Bahrain    BH   BHR 1984
## 1080                                               Bahrain    BH   BHR 1985
## 1081                                               Bahrain    BH   BHR 1986
## 1082                                               Bahrain    BH   BHR 1987
## 1083                                               Bahrain    BH   BHR 1988
## 1084                                               Bahrain    BH   BHR 1989
## 1085                                               Bahrain    BH   BHR 1990
## 1086                                               Bahrain    BH   BHR 1991
## 1087                                               Bahrain    BH   BHR 1992
## 1088                                               Bahrain    BH   BHR 1993
## 1089                                               Bahrain    BH   BHR 1994
## 1090                                               Bahrain    BH   BHR 1995
## 1091                                               Bahrain    BH   BHR 1996
## 1092                                               Bahrain    BH   BHR 1997
## 1093                                               Bahrain    BH   BHR 1998
## 1094                                               Bahrain    BH   BHR 1999
## 1095                                               Bahrain    BH   BHR 2000
## 1096                                               Bahrain    BH   BHR 2001
## 1097                                               Bahrain    BH   BHR 2002
## 1098                                               Bahrain    BH   BHR 2003
## 1099                                               Bahrain    BH   BHR 2004
## 1100                                               Bahrain    BH   BHR 2005
## 1101                                               Bahrain    BH   BHR 2006
## 1102                                               Bahrain    BH   BHR 2007
## 1103                                               Bahrain    BH   BHR 2008
## 1104                                               Bahrain    BH   BHR 2009
## 1105                                               Bahrain    BH   BHR 2010
## 1106                                               Bahrain    BH   BHR 2011
## 1107                                               Bahrain    BH   BHR 2012
## 1108                                               Bahrain    BH   BHR 2013
## 1109                                               Bahrain    BH   BHR 2014
## 1110                                               Bahrain    BH   BHR 2015
## 1111                                               Bahrain    BH   BHR 2016
## 1112                                               Bahrain    BH   BHR 2017
## 1113                                               Bahrain    BH   BHR 2018
## 1114                                               Bahrain    BH   BHR 2019
## 1115                                               Bahrain    BH   BHR 2020
## 1116                                               Bahrain    BH   BHR 2021
## 1117                                            Bangladesh    BD   BGD 1960
## 1118                                            Bangladesh    BD   BGD 1961
## 1119                                            Bangladesh    BD   BGD 1962
## 1120                                            Bangladesh    BD   BGD 1963
## 1121                                            Bangladesh    BD   BGD 1964
## 1122                                            Bangladesh    BD   BGD 1965
## 1123                                            Bangladesh    BD   BGD 1966
## 1124                                            Bangladesh    BD   BGD 1967
## 1125                                            Bangladesh    BD   BGD 1968
## 1126                                            Bangladesh    BD   BGD 1969
## 1127                                            Bangladesh    BD   BGD 1970
## 1128                                            Bangladesh    BD   BGD 1971
## 1129                                            Bangladesh    BD   BGD 1972
## 1130                                            Bangladesh    BD   BGD 1973
## 1131                                            Bangladesh    BD   BGD 1974
## 1132                                            Bangladesh    BD   BGD 1975
## 1133                                            Bangladesh    BD   BGD 1976
## 1134                                            Bangladesh    BD   BGD 1977
## 1135                                            Bangladesh    BD   BGD 1978
## 1136                                            Bangladesh    BD   BGD 1979
## 1137                                            Bangladesh    BD   BGD 1980
## 1138                                            Bangladesh    BD   BGD 1981
## 1139                                            Bangladesh    BD   BGD 1982
## 1140                                            Bangladesh    BD   BGD 1983
## 1141                                            Bangladesh    BD   BGD 1984
## 1142                                            Bangladesh    BD   BGD 1985
## 1143                                            Bangladesh    BD   BGD 1986
## 1144                                            Bangladesh    BD   BGD 1987
## 1145                                            Bangladesh    BD   BGD 1988
## 1146                                            Bangladesh    BD   BGD 1989
## 1147                                            Bangladesh    BD   BGD 1990
## 1148                                            Bangladesh    BD   BGD 1991
## 1149                                            Bangladesh    BD   BGD 1992
## 1150                                            Bangladesh    BD   BGD 1993
## 1151                                            Bangladesh    BD   BGD 1994
## 1152                                            Bangladesh    BD   BGD 1995
## 1153                                            Bangladesh    BD   BGD 1996
## 1154                                            Bangladesh    BD   BGD 1997
## 1155                                            Bangladesh    BD   BGD 1998
## 1156                                            Bangladesh    BD   BGD 1999
## 1157                                            Bangladesh    BD   BGD 2000
## 1158                                            Bangladesh    BD   BGD 2001
## 1159                                            Bangladesh    BD   BGD 2002
## 1160                                            Bangladesh    BD   BGD 2003
## 1161                                            Bangladesh    BD   BGD 2004
## 1162                                            Bangladesh    BD   BGD 2005
## 1163                                            Bangladesh    BD   BGD 2006
## 1164                                            Bangladesh    BD   BGD 2007
## 1165                                            Bangladesh    BD   BGD 2008
## 1166                                            Bangladesh    BD   BGD 2009
## 1167                                            Bangladesh    BD   BGD 2010
## 1168                                            Bangladesh    BD   BGD 2011
## 1169                                            Bangladesh    BD   BGD 2012
## 1170                                            Bangladesh    BD   BGD 2013
## 1171                                            Bangladesh    BD   BGD 2014
## 1172                                            Bangladesh    BD   BGD 2015
## 1173                                            Bangladesh    BD   BGD 2016
## 1174                                            Bangladesh    BD   BGD 2017
## 1175                                            Bangladesh    BD   BGD 2018
## 1176                                            Bangladesh    BD   BGD 2019
## 1177                                            Bangladesh    BD   BGD 2020
## 1178                                            Bangladesh    BD   BGD 2021
## 1179                                              Barbados    BB   BRB 1960
## 1180                                              Barbados    BB   BRB 1961
## 1181                                              Barbados    BB   BRB 1962
## 1182                                              Barbados    BB   BRB 1963
## 1183                                              Barbados    BB   BRB 1964
## 1184                                              Barbados    BB   BRB 1965
## 1185                                              Barbados    BB   BRB 1966
## 1186                                              Barbados    BB   BRB 1967
## 1187                                              Barbados    BB   BRB 1968
## 1188                                              Barbados    BB   BRB 1969
## 1189                                              Barbados    BB   BRB 1970
## 1190                                              Barbados    BB   BRB 1971
## 1191                                              Barbados    BB   BRB 1972
## 1192                                              Barbados    BB   BRB 1973
## 1193                                              Barbados    BB   BRB 1974
## 1194                                              Barbados    BB   BRB 1975
## 1195                                              Barbados    BB   BRB 1976
## 1196                                              Barbados    BB   BRB 1977
## 1197                                              Barbados    BB   BRB 1978
## 1198                                              Barbados    BB   BRB 1979
## 1199                                              Barbados    BB   BRB 1980
## 1200                                              Barbados    BB   BRB 1981
## 1201                                              Barbados    BB   BRB 1982
## 1202                                              Barbados    BB   BRB 1983
## 1203                                              Barbados    BB   BRB 1984
## 1204                                              Barbados    BB   BRB 1985
## 1205                                              Barbados    BB   BRB 1986
## 1206                                              Barbados    BB   BRB 1987
## 1207                                              Barbados    BB   BRB 1988
## 1208                                              Barbados    BB   BRB 1989
## 1209                                              Barbados    BB   BRB 1990
## 1210                                              Barbados    BB   BRB 1991
## 1211                                              Barbados    BB   BRB 1992
## 1212                                              Barbados    BB   BRB 1993
## 1213                                              Barbados    BB   BRB 1994
## 1214                                              Barbados    BB   BRB 1995
## 1215                                              Barbados    BB   BRB 1996
## 1216                                              Barbados    BB   BRB 1997
## 1217                                              Barbados    BB   BRB 1998
## 1218                                              Barbados    BB   BRB 1999
## 1219                                              Barbados    BB   BRB 2000
## 1220                                              Barbados    BB   BRB 2001
## 1221                                              Barbados    BB   BRB 2002
## 1222                                              Barbados    BB   BRB 2003
## 1223                                              Barbados    BB   BRB 2004
## 1224                                              Barbados    BB   BRB 2005
## 1225                                              Barbados    BB   BRB 2006
## 1226                                              Barbados    BB   BRB 2007
## 1227                                              Barbados    BB   BRB 2008
## 1228                                              Barbados    BB   BRB 2009
## 1229                                              Barbados    BB   BRB 2010
## 1230                                              Barbados    BB   BRB 2011
## 1231                                              Barbados    BB   BRB 2012
## 1232                                              Barbados    BB   BRB 2013
## 1233                                              Barbados    BB   BRB 2014
## 1234                                              Barbados    BB   BRB 2015
## 1235                                              Barbados    BB   BRB 2016
## 1236                                              Barbados    BB   BRB 2017
## 1237                                              Barbados    BB   BRB 2018
## 1238                                              Barbados    BB   BRB 2019
## 1239                                              Barbados    BB   BRB 2020
## 1240                                              Barbados    BB   BRB 2021
## 1241                                               Belarus    BY   BLR 1960
## 1242                                               Belarus    BY   BLR 1961
## 1243                                               Belarus    BY   BLR 1962
## 1244                                               Belarus    BY   BLR 1963
## 1245                                               Belarus    BY   BLR 1964
## 1246                                               Belarus    BY   BLR 1965
## 1247                                               Belarus    BY   BLR 1966
## 1248                                               Belarus    BY   BLR 1967
## 1249                                               Belarus    BY   BLR 1968
## 1250                                               Belarus    BY   BLR 1969
## 1251                                               Belarus    BY   BLR 1970
## 1252                                               Belarus    BY   BLR 1971
## 1253                                               Belarus    BY   BLR 1972
## 1254                                               Belarus    BY   BLR 1973
## 1255                                               Belarus    BY   BLR 1974
## 1256                                               Belarus    BY   BLR 1975
## 1257                                               Belarus    BY   BLR 1976
## 1258                                               Belarus    BY   BLR 1977
## 1259                                               Belarus    BY   BLR 1978
## 1260                                               Belarus    BY   BLR 1979
## 1261                                               Belarus    BY   BLR 1980
## 1262                                               Belarus    BY   BLR 1981
## 1263                                               Belarus    BY   BLR 1982
## 1264                                               Belarus    BY   BLR 1983
## 1265                                               Belarus    BY   BLR 1984
## 1266                                               Belarus    BY   BLR 1985
## 1267                                               Belarus    BY   BLR 1986
## 1268                                               Belarus    BY   BLR 1987
## 1269                                               Belarus    BY   BLR 1988
## 1270                                               Belarus    BY   BLR 1989
## 1271                                               Belarus    BY   BLR 1990
## 1272                                               Belarus    BY   BLR 1991
## 1273                                               Belarus    BY   BLR 1992
## 1274                                               Belarus    BY   BLR 1993
## 1275                                               Belarus    BY   BLR 1994
## 1276                                               Belarus    BY   BLR 1995
## 1277                                               Belarus    BY   BLR 1996
## 1278                                               Belarus    BY   BLR 1997
## 1279                                               Belarus    BY   BLR 1998
## 1280                                               Belarus    BY   BLR 1999
## 1281                                               Belarus    BY   BLR 2000
## 1282                                               Belarus    BY   BLR 2001
## 1283                                               Belarus    BY   BLR 2002
## 1284                                               Belarus    BY   BLR 2003
## 1285                                               Belarus    BY   BLR 2004
## 1286                                               Belarus    BY   BLR 2005
## 1287                                               Belarus    BY   BLR 2006
## 1288                                               Belarus    BY   BLR 2007
## 1289                                               Belarus    BY   BLR 2008
## 1290                                               Belarus    BY   BLR 2009
## 1291                                               Belarus    BY   BLR 2010
## 1292                                               Belarus    BY   BLR 2011
## 1293                                               Belarus    BY   BLR 2012
## 1294                                               Belarus    BY   BLR 2013
## 1295                                               Belarus    BY   BLR 2014
## 1296                                               Belarus    BY   BLR 2015
## 1297                                               Belarus    BY   BLR 2016
## 1298                                               Belarus    BY   BLR 2017
## 1299                                               Belarus    BY   BLR 2018
## 1300                                               Belarus    BY   BLR 2019
## 1301                                               Belarus    BY   BLR 2020
## 1302                                               Belarus    BY   BLR 2021
## 1303                                               Belgium    BE   BEL 1960
## 1304                                               Belgium    BE   BEL 1961
## 1305                                               Belgium    BE   BEL 1962
## 1306                                               Belgium    BE   BEL 1963
## 1307                                               Belgium    BE   BEL 1964
## 1308                                               Belgium    BE   BEL 1965
## 1309                                               Belgium    BE   BEL 1966
## 1310                                               Belgium    BE   BEL 1967
## 1311                                               Belgium    BE   BEL 1968
## 1312                                               Belgium    BE   BEL 1969
## 1313                                               Belgium    BE   BEL 1970
## 1314                                               Belgium    BE   BEL 1971
## 1315                                               Belgium    BE   BEL 1972
## 1316                                               Belgium    BE   BEL 1973
## 1317                                               Belgium    BE   BEL 1974
## 1318                                               Belgium    BE   BEL 1975
## 1319                                               Belgium    BE   BEL 1976
## 1320                                               Belgium    BE   BEL 1977
## 1321                                               Belgium    BE   BEL 1978
## 1322                                               Belgium    BE   BEL 1979
## 1323                                               Belgium    BE   BEL 1980
## 1324                                               Belgium    BE   BEL 1981
## 1325                                               Belgium    BE   BEL 1982
## 1326                                               Belgium    BE   BEL 1983
## 1327                                               Belgium    BE   BEL 1984
## 1328                                               Belgium    BE   BEL 1985
## 1329                                               Belgium    BE   BEL 1986
## 1330                                               Belgium    BE   BEL 1987
## 1331                                               Belgium    BE   BEL 1988
## 1332                                               Belgium    BE   BEL 1989
## 1333                                               Belgium    BE   BEL 1990
## 1334                                               Belgium    BE   BEL 1991
## 1335                                               Belgium    BE   BEL 1992
## 1336                                               Belgium    BE   BEL 1993
## 1337                                               Belgium    BE   BEL 1994
## 1338                                               Belgium    BE   BEL 1995
## 1339                                               Belgium    BE   BEL 1996
## 1340                                               Belgium    BE   BEL 1997
## 1341                                               Belgium    BE   BEL 1998
## 1342                                               Belgium    BE   BEL 1999
## 1343                                               Belgium    BE   BEL 2000
## 1344                                               Belgium    BE   BEL 2001
## 1345                                               Belgium    BE   BEL 2002
## 1346                                               Belgium    BE   BEL 2003
## 1347                                               Belgium    BE   BEL 2004
## 1348                                               Belgium    BE   BEL 2005
## 1349                                               Belgium    BE   BEL 2006
## 1350                                               Belgium    BE   BEL 2007
## 1351                                               Belgium    BE   BEL 2008
## 1352                                               Belgium    BE   BEL 2009
## 1353                                               Belgium    BE   BEL 2010
## 1354                                               Belgium    BE   BEL 2011
## 1355                                               Belgium    BE   BEL 2012
## 1356                                               Belgium    BE   BEL 2013
## 1357                                               Belgium    BE   BEL 2014
## 1358                                               Belgium    BE   BEL 2015
## 1359                                               Belgium    BE   BEL 2016
## 1360                                               Belgium    BE   BEL 2017
## 1361                                               Belgium    BE   BEL 2018
## 1362                                               Belgium    BE   BEL 2019
## 1363                                               Belgium    BE   BEL 2020
## 1364                                               Belgium    BE   BEL 2021
## 1365                                                Belize    BZ   BLZ 1960
## 1366                                                Belize    BZ   BLZ 1961
## 1367                                                Belize    BZ   BLZ 1962
## 1368                                                Belize    BZ   BLZ 1963
## 1369                                                Belize    BZ   BLZ 1964
## 1370                                                Belize    BZ   BLZ 1965
## 1371                                                Belize    BZ   BLZ 1966
## 1372                                                Belize    BZ   BLZ 1967
## 1373                                                Belize    BZ   BLZ 1968
## 1374                                                Belize    BZ   BLZ 1969
## 1375                                                Belize    BZ   BLZ 1970
## 1376                                                Belize    BZ   BLZ 1971
## 1377                                                Belize    BZ   BLZ 1972
## 1378                                                Belize    BZ   BLZ 1973
## 1379                                                Belize    BZ   BLZ 1974
## 1380                                                Belize    BZ   BLZ 1975
## 1381                                                Belize    BZ   BLZ 1976
## 1382                                                Belize    BZ   BLZ 1977
## 1383                                                Belize    BZ   BLZ 1978
## 1384                                                Belize    BZ   BLZ 1979
## 1385                                                Belize    BZ   BLZ 1980
## 1386                                                Belize    BZ   BLZ 1981
## 1387                                                Belize    BZ   BLZ 1982
## 1388                                                Belize    BZ   BLZ 1983
## 1389                                                Belize    BZ   BLZ 1984
## 1390                                                Belize    BZ   BLZ 1985
## 1391                                                Belize    BZ   BLZ 1986
## 1392                                                Belize    BZ   BLZ 1987
## 1393                                                Belize    BZ   BLZ 1988
## 1394                                                Belize    BZ   BLZ 1989
## 1395                                                Belize    BZ   BLZ 1990
## 1396                                                Belize    BZ   BLZ 1991
## 1397                                                Belize    BZ   BLZ 1992
## 1398                                                Belize    BZ   BLZ 1993
## 1399                                                Belize    BZ   BLZ 1994
## 1400                                                Belize    BZ   BLZ 1995
## 1401                                                Belize    BZ   BLZ 1996
## 1402                                                Belize    BZ   BLZ 1997
## 1403                                                Belize    BZ   BLZ 1998
## 1404                                                Belize    BZ   BLZ 1999
## 1405                                                Belize    BZ   BLZ 2000
## 1406                                                Belize    BZ   BLZ 2001
## 1407                                                Belize    BZ   BLZ 2002
## 1408                                                Belize    BZ   BLZ 2003
## 1409                                                Belize    BZ   BLZ 2004
## 1410                                                Belize    BZ   BLZ 2005
## 1411                                                Belize    BZ   BLZ 2006
## 1412                                                Belize    BZ   BLZ 2007
## 1413                                                Belize    BZ   BLZ 2008
## 1414                                                Belize    BZ   BLZ 2009
## 1415                                                Belize    BZ   BLZ 2010
## 1416                                                Belize    BZ   BLZ 2011
## 1417                                                Belize    BZ   BLZ 2012
## 1418                                                Belize    BZ   BLZ 2013
## 1419                                                Belize    BZ   BLZ 2014
## 1420                                                Belize    BZ   BLZ 2015
## 1421                                                Belize    BZ   BLZ 2016
## 1422                                                Belize    BZ   BLZ 2017
## 1423                                                Belize    BZ   BLZ 2018
## 1424                                                Belize    BZ   BLZ 2019
## 1425                                                Belize    BZ   BLZ 2020
## 1426                                                Belize    BZ   BLZ 2021
## 1427                                                 Benin    BJ   BEN 1960
## 1428                                                 Benin    BJ   BEN 1961
## 1429                                                 Benin    BJ   BEN 1962
## 1430                                                 Benin    BJ   BEN 1963
## 1431                                                 Benin    BJ   BEN 1964
## 1432                                                 Benin    BJ   BEN 1965
## 1433                                                 Benin    BJ   BEN 1966
## 1434                                                 Benin    BJ   BEN 1967
## 1435                                                 Benin    BJ   BEN 1968
## 1436                                                 Benin    BJ   BEN 1969
## 1437                                                 Benin    BJ   BEN 1970
## 1438                                                 Benin    BJ   BEN 1971
## 1439                                                 Benin    BJ   BEN 1972
## 1440                                                 Benin    BJ   BEN 1973
## 1441                                                 Benin    BJ   BEN 1974
## 1442                                                 Benin    BJ   BEN 1975
## 1443                                                 Benin    BJ   BEN 1976
## 1444                                                 Benin    BJ   BEN 1977
## 1445                                                 Benin    BJ   BEN 1978
## 1446                                                 Benin    BJ   BEN 1979
## 1447                                                 Benin    BJ   BEN 1980
## 1448                                                 Benin    BJ   BEN 1981
## 1449                                                 Benin    BJ   BEN 1982
## 1450                                                 Benin    BJ   BEN 1983
## 1451                                                 Benin    BJ   BEN 1984
## 1452                                                 Benin    BJ   BEN 1985
## 1453                                                 Benin    BJ   BEN 1986
## 1454                                                 Benin    BJ   BEN 1987
## 1455                                                 Benin    BJ   BEN 1988
## 1456                                                 Benin    BJ   BEN 1989
## 1457                                                 Benin    BJ   BEN 1990
## 1458                                                 Benin    BJ   BEN 1991
## 1459                                                 Benin    BJ   BEN 1992
## 1460                                                 Benin    BJ   BEN 1993
## 1461                                                 Benin    BJ   BEN 1994
## 1462                                                 Benin    BJ   BEN 1995
## 1463                                                 Benin    BJ   BEN 1996
## 1464                                                 Benin    BJ   BEN 1997
## 1465                                                 Benin    BJ   BEN 1998
## 1466                                                 Benin    BJ   BEN 1999
## 1467                                                 Benin    BJ   BEN 2000
## 1468                                                 Benin    BJ   BEN 2001
## 1469                                                 Benin    BJ   BEN 2002
## 1470                                                 Benin    BJ   BEN 2003
## 1471                                                 Benin    BJ   BEN 2004
## 1472                                                 Benin    BJ   BEN 2005
## 1473                                                 Benin    BJ   BEN 2006
## 1474                                                 Benin    BJ   BEN 2007
## 1475                                                 Benin    BJ   BEN 2008
## 1476                                                 Benin    BJ   BEN 2009
## 1477                                                 Benin    BJ   BEN 2010
## 1478                                                 Benin    BJ   BEN 2011
## 1479                                                 Benin    BJ   BEN 2012
## 1480                                                 Benin    BJ   BEN 2013
## 1481                                                 Benin    BJ   BEN 2014
## 1482                                                 Benin    BJ   BEN 2015
## 1483                                                 Benin    BJ   BEN 2016
## 1484                                                 Benin    BJ   BEN 2017
## 1485                                                 Benin    BJ   BEN 2018
## 1486                                                 Benin    BJ   BEN 2019
## 1487                                                 Benin    BJ   BEN 2020
## 1488                                                 Benin    BJ   BEN 2021
## 1489                                               Bermuda    BM   BMU 1960
## 1490                                               Bermuda    BM   BMU 1961
## 1491                                               Bermuda    BM   BMU 1962
## 1492                                               Bermuda    BM   BMU 1963
## 1493                                               Bermuda    BM   BMU 1964
## 1494                                               Bermuda    BM   BMU 1965
## 1495                                               Bermuda    BM   BMU 1966
## 1496                                               Bermuda    BM   BMU 1967
## 1497                                               Bermuda    BM   BMU 1968
## 1498                                               Bermuda    BM   BMU 1969
## 1499                                               Bermuda    BM   BMU 1970
## 1500                                               Bermuda    BM   BMU 1971
## 1501                                               Bermuda    BM   BMU 1972
## 1502                                               Bermuda    BM   BMU 1973
## 1503                                               Bermuda    BM   BMU 1974
## 1504                                               Bermuda    BM   BMU 1975
## 1505                                               Bermuda    BM   BMU 1976
## 1506                                               Bermuda    BM   BMU 1977
## 1507                                               Bermuda    BM   BMU 1978
## 1508                                               Bermuda    BM   BMU 1979
## 1509                                               Bermuda    BM   BMU 1980
## 1510                                               Bermuda    BM   BMU 1981
## 1511                                               Bermuda    BM   BMU 1982
## 1512                                               Bermuda    BM   BMU 1983
## 1513                                               Bermuda    BM   BMU 1984
## 1514                                               Bermuda    BM   BMU 1985
## 1515                                               Bermuda    BM   BMU 1986
## 1516                                               Bermuda    BM   BMU 1987
## 1517                                               Bermuda    BM   BMU 1988
## 1518                                               Bermuda    BM   BMU 1989
## 1519                                               Bermuda    BM   BMU 1990
## 1520                                               Bermuda    BM   BMU 1991
## 1521                                               Bermuda    BM   BMU 1992
## 1522                                               Bermuda    BM   BMU 1993
## 1523                                               Bermuda    BM   BMU 1994
## 1524                                               Bermuda    BM   BMU 1995
## 1525                                               Bermuda    BM   BMU 1996
## 1526                                               Bermuda    BM   BMU 1997
## 1527                                               Bermuda    BM   BMU 1998
## 1528                                               Bermuda    BM   BMU 1999
## 1529                                               Bermuda    BM   BMU 2000
## 1530                                               Bermuda    BM   BMU 2001
## 1531                                               Bermuda    BM   BMU 2002
## 1532                                               Bermuda    BM   BMU 2003
## 1533                                               Bermuda    BM   BMU 2004
## 1534                                               Bermuda    BM   BMU 2005
## 1535                                               Bermuda    BM   BMU 2006
## 1536                                               Bermuda    BM   BMU 2007
## 1537                                               Bermuda    BM   BMU 2008
## 1538                                               Bermuda    BM   BMU 2009
## 1539                                               Bermuda    BM   BMU 2010
## 1540                                               Bermuda    BM   BMU 2011
## 1541                                               Bermuda    BM   BMU 2012
## 1542                                               Bermuda    BM   BMU 2013
## 1543                                               Bermuda    BM   BMU 2014
## 1544                                               Bermuda    BM   BMU 2015
## 1545                                               Bermuda    BM   BMU 2016
## 1546                                               Bermuda    BM   BMU 2017
## 1547                                               Bermuda    BM   BMU 2018
## 1548                                               Bermuda    BM   BMU 2019
## 1549                                               Bermuda    BM   BMU 2020
## 1550                                               Bermuda    BM   BMU 2021
## 1551                                                Bhutan    BT   BTN 1960
## 1552                                                Bhutan    BT   BTN 1961
## 1553                                                Bhutan    BT   BTN 1962
## 1554                                                Bhutan    BT   BTN 1963
## 1555                                                Bhutan    BT   BTN 1964
## 1556                                                Bhutan    BT   BTN 1965
## 1557                                                Bhutan    BT   BTN 1966
## 1558                                                Bhutan    BT   BTN 1967
## 1559                                                Bhutan    BT   BTN 1968
## 1560                                                Bhutan    BT   BTN 1969
## 1561                                                Bhutan    BT   BTN 1970
## 1562                                                Bhutan    BT   BTN 1971
## 1563                                                Bhutan    BT   BTN 1972
## 1564                                                Bhutan    BT   BTN 1973
## 1565                                                Bhutan    BT   BTN 1974
## 1566                                                Bhutan    BT   BTN 1975
## 1567                                                Bhutan    BT   BTN 1976
## 1568                                                Bhutan    BT   BTN 1977
## 1569                                                Bhutan    BT   BTN 1978
## 1570                                                Bhutan    BT   BTN 1979
## 1571                                                Bhutan    BT   BTN 1980
## 1572                                                Bhutan    BT   BTN 1981
## 1573                                                Bhutan    BT   BTN 1982
## 1574                                                Bhutan    BT   BTN 1983
## 1575                                                Bhutan    BT   BTN 1984
## 1576                                                Bhutan    BT   BTN 1985
## 1577                                                Bhutan    BT   BTN 1986
## 1578                                                Bhutan    BT   BTN 1987
## 1579                                                Bhutan    BT   BTN 1988
## 1580                                                Bhutan    BT   BTN 1989
## 1581                                                Bhutan    BT   BTN 1990
## 1582                                                Bhutan    BT   BTN 1991
## 1583                                                Bhutan    BT   BTN 1992
## 1584                                                Bhutan    BT   BTN 1993
## 1585                                                Bhutan    BT   BTN 1994
## 1586                                                Bhutan    BT   BTN 1995
## 1587                                                Bhutan    BT   BTN 1996
## 1588                                                Bhutan    BT   BTN 1997
## 1589                                                Bhutan    BT   BTN 1998
## 1590                                                Bhutan    BT   BTN 1999
## 1591                                                Bhutan    BT   BTN 2000
## 1592                                                Bhutan    BT   BTN 2001
## 1593                                                Bhutan    BT   BTN 2002
## 1594                                                Bhutan    BT   BTN 2003
## 1595                                                Bhutan    BT   BTN 2004
## 1596                                                Bhutan    BT   BTN 2005
## 1597                                                Bhutan    BT   BTN 2006
## 1598                                                Bhutan    BT   BTN 2007
## 1599                                                Bhutan    BT   BTN 2008
## 1600                                                Bhutan    BT   BTN 2009
## 1601                                                Bhutan    BT   BTN 2010
## 1602                                                Bhutan    BT   BTN 2011
## 1603                                                Bhutan    BT   BTN 2012
## 1604                                                Bhutan    BT   BTN 2013
## 1605                                                Bhutan    BT   BTN 2014
## 1606                                                Bhutan    BT   BTN 2015
## 1607                                                Bhutan    BT   BTN 2016
## 1608                                                Bhutan    BT   BTN 2017
## 1609                                                Bhutan    BT   BTN 2018
## 1610                                                Bhutan    BT   BTN 2019
## 1611                                                Bhutan    BT   BTN 2020
## 1612                                                Bhutan    BT   BTN 2021
## 1613                                               Bolivia    BO   BOL 1960
## 1614                                               Bolivia    BO   BOL 1961
## 1615                                               Bolivia    BO   BOL 1962
## 1616                                               Bolivia    BO   BOL 1963
## 1617                                               Bolivia    BO   BOL 1964
## 1618                                               Bolivia    BO   BOL 1965
## 1619                                               Bolivia    BO   BOL 1966
## 1620                                               Bolivia    BO   BOL 1967
## 1621                                               Bolivia    BO   BOL 1968
## 1622                                               Bolivia    BO   BOL 1969
## 1623                                               Bolivia    BO   BOL 1970
## 1624                                               Bolivia    BO   BOL 1971
## 1625                                               Bolivia    BO   BOL 1972
## 1626                                               Bolivia    BO   BOL 1973
## 1627                                               Bolivia    BO   BOL 1974
## 1628                                               Bolivia    BO   BOL 1975
## 1629                                               Bolivia    BO   BOL 1976
## 1630                                               Bolivia    BO   BOL 1977
## 1631                                               Bolivia    BO   BOL 1978
## 1632                                               Bolivia    BO   BOL 1979
## 1633                                               Bolivia    BO   BOL 1980
## 1634                                               Bolivia    BO   BOL 1981
## 1635                                               Bolivia    BO   BOL 1982
## 1636                                               Bolivia    BO   BOL 1983
## 1637                                               Bolivia    BO   BOL 1984
## 1638                                               Bolivia    BO   BOL 1985
## 1639                                               Bolivia    BO   BOL 1986
## 1640                                               Bolivia    BO   BOL 1987
## 1641                                               Bolivia    BO   BOL 1988
## 1642                                               Bolivia    BO   BOL 1989
## 1643                                               Bolivia    BO   BOL 1990
## 1644                                               Bolivia    BO   BOL 1991
## 1645                                               Bolivia    BO   BOL 1992
## 1646                                               Bolivia    BO   BOL 1993
## 1647                                               Bolivia    BO   BOL 1994
## 1648                                               Bolivia    BO   BOL 1995
## 1649                                               Bolivia    BO   BOL 1996
## 1650                                               Bolivia    BO   BOL 1997
## 1651                                               Bolivia    BO   BOL 1998
## 1652                                               Bolivia    BO   BOL 1999
## 1653                                               Bolivia    BO   BOL 2000
## 1654                                               Bolivia    BO   BOL 2001
## 1655                                               Bolivia    BO   BOL 2002
## 1656                                               Bolivia    BO   BOL 2003
## 1657                                               Bolivia    BO   BOL 2004
## 1658                                               Bolivia    BO   BOL 2005
## 1659                                               Bolivia    BO   BOL 2006
## 1660                                               Bolivia    BO   BOL 2007
## 1661                                               Bolivia    BO   BOL 2008
## 1662                                               Bolivia    BO   BOL 2009
## 1663                                               Bolivia    BO   BOL 2010
## 1664                                               Bolivia    BO   BOL 2011
## 1665                                               Bolivia    BO   BOL 2012
## 1666                                               Bolivia    BO   BOL 2013
## 1667                                               Bolivia    BO   BOL 2014
## 1668                                               Bolivia    BO   BOL 2015
## 1669                                               Bolivia    BO   BOL 2016
## 1670                                               Bolivia    BO   BOL 2017
## 1671                                               Bolivia    BO   BOL 2018
## 1672                                               Bolivia    BO   BOL 2019
## 1673                                               Bolivia    BO   BOL 2020
## 1674                                               Bolivia    BO   BOL 2021
## 1675                                Bosnia and Herzegovina    BA   BIH 1960
## 1676                                Bosnia and Herzegovina    BA   BIH 1961
## 1677                                Bosnia and Herzegovina    BA   BIH 1962
## 1678                                Bosnia and Herzegovina    BA   BIH 1963
## 1679                                Bosnia and Herzegovina    BA   BIH 1964
## 1680                                Bosnia and Herzegovina    BA   BIH 1965
## 1681                                Bosnia and Herzegovina    BA   BIH 1966
## 1682                                Bosnia and Herzegovina    BA   BIH 1967
## 1683                                Bosnia and Herzegovina    BA   BIH 1968
## 1684                                Bosnia and Herzegovina    BA   BIH 1969
## 1685                                Bosnia and Herzegovina    BA   BIH 1970
## 1686                                Bosnia and Herzegovina    BA   BIH 1971
## 1687                                Bosnia and Herzegovina    BA   BIH 1972
## 1688                                Bosnia and Herzegovina    BA   BIH 1973
## 1689                                Bosnia and Herzegovina    BA   BIH 1974
## 1690                                Bosnia and Herzegovina    BA   BIH 1975
## 1691                                Bosnia and Herzegovina    BA   BIH 1976
## 1692                                Bosnia and Herzegovina    BA   BIH 1977
## 1693                                Bosnia and Herzegovina    BA   BIH 1978
## 1694                                Bosnia and Herzegovina    BA   BIH 1979
## 1695                                Bosnia and Herzegovina    BA   BIH 1980
## 1696                                Bosnia and Herzegovina    BA   BIH 1981
## 1697                                Bosnia and Herzegovina    BA   BIH 1982
## 1698                                Bosnia and Herzegovina    BA   BIH 1983
## 1699                                Bosnia and Herzegovina    BA   BIH 1984
## 1700                                Bosnia and Herzegovina    BA   BIH 1985
## 1701                                Bosnia and Herzegovina    BA   BIH 1986
## 1702                                Bosnia and Herzegovina    BA   BIH 1987
## 1703                                Bosnia and Herzegovina    BA   BIH 1988
## 1704                                Bosnia and Herzegovina    BA   BIH 1989
## 1705                                Bosnia and Herzegovina    BA   BIH 1990
## 1706                                Bosnia and Herzegovina    BA   BIH 1991
## 1707                                Bosnia and Herzegovina    BA   BIH 1992
## 1708                                Bosnia and Herzegovina    BA   BIH 1993
## 1709                                Bosnia and Herzegovina    BA   BIH 1994
## 1710                                Bosnia and Herzegovina    BA   BIH 1995
## 1711                                Bosnia and Herzegovina    BA   BIH 1996
## 1712                                Bosnia and Herzegovina    BA   BIH 1997
## 1713                                Bosnia and Herzegovina    BA   BIH 1998
## 1714                                Bosnia and Herzegovina    BA   BIH 1999
## 1715                                Bosnia and Herzegovina    BA   BIH 2000
## 1716                                Bosnia and Herzegovina    BA   BIH 2001
## 1717                                Bosnia and Herzegovina    BA   BIH 2002
## 1718                                Bosnia and Herzegovina    BA   BIH 2003
## 1719                                Bosnia and Herzegovina    BA   BIH 2004
## 1720                                Bosnia and Herzegovina    BA   BIH 2005
## 1721                                Bosnia and Herzegovina    BA   BIH 2006
## 1722                                Bosnia and Herzegovina    BA   BIH 2007
## 1723                                Bosnia and Herzegovina    BA   BIH 2008
## 1724                                Bosnia and Herzegovina    BA   BIH 2009
## 1725                                Bosnia and Herzegovina    BA   BIH 2010
## 1726                                Bosnia and Herzegovina    BA   BIH 2011
## 1727                                Bosnia and Herzegovina    BA   BIH 2012
## 1728                                Bosnia and Herzegovina    BA   BIH 2013
## 1729                                Bosnia and Herzegovina    BA   BIH 2014
## 1730                                Bosnia and Herzegovina    BA   BIH 2015
## 1731                                Bosnia and Herzegovina    BA   BIH 2016
## 1732                                Bosnia and Herzegovina    BA   BIH 2017
## 1733                                Bosnia and Herzegovina    BA   BIH 2018
## 1734                                Bosnia and Herzegovina    BA   BIH 2019
## 1735                                Bosnia and Herzegovina    BA   BIH 2020
## 1736                                Bosnia and Herzegovina    BA   BIH 2021
## 1737                                              Botswana    BW   BWA 1960
## 1738                                              Botswana    BW   BWA 1961
## 1739                                              Botswana    BW   BWA 1962
## 1740                                              Botswana    BW   BWA 1963
## 1741                                              Botswana    BW   BWA 1964
## 1742                                              Botswana    BW   BWA 1965
## 1743                                              Botswana    BW   BWA 1966
## 1744                                              Botswana    BW   BWA 1967
## 1745                                              Botswana    BW   BWA 1968
## 1746                                              Botswana    BW   BWA 1969
## 1747                                              Botswana    BW   BWA 1970
## 1748                                              Botswana    BW   BWA 1971
## 1749                                              Botswana    BW   BWA 1972
## 1750                                              Botswana    BW   BWA 1973
## 1751                                              Botswana    BW   BWA 1974
## 1752                                              Botswana    BW   BWA 1975
## 1753                                              Botswana    BW   BWA 1976
## 1754                                              Botswana    BW   BWA 1977
## 1755                                              Botswana    BW   BWA 1978
## 1756                                              Botswana    BW   BWA 1979
## 1757                                              Botswana    BW   BWA 1980
## 1758                                              Botswana    BW   BWA 1981
## 1759                                              Botswana    BW   BWA 1982
## 1760                                              Botswana    BW   BWA 1983
## 1761                                              Botswana    BW   BWA 1984
## 1762                                              Botswana    BW   BWA 1985
## 1763                                              Botswana    BW   BWA 1986
## 1764                                              Botswana    BW   BWA 1987
## 1765                                              Botswana    BW   BWA 1988
## 1766                                              Botswana    BW   BWA 1989
## 1767                                              Botswana    BW   BWA 1990
## 1768                                              Botswana    BW   BWA 1991
## 1769                                              Botswana    BW   BWA 1992
## 1770                                              Botswana    BW   BWA 1993
## 1771                                              Botswana    BW   BWA 1994
## 1772                                              Botswana    BW   BWA 1995
## 1773                                              Botswana    BW   BWA 1996
## 1774                                              Botswana    BW   BWA 1997
## 1775                                              Botswana    BW   BWA 1998
## 1776                                              Botswana    BW   BWA 1999
## 1777                                              Botswana    BW   BWA 2000
## 1778                                              Botswana    BW   BWA 2001
## 1779                                              Botswana    BW   BWA 2002
## 1780                                              Botswana    BW   BWA 2003
## 1781                                              Botswana    BW   BWA 2004
## 1782                                              Botswana    BW   BWA 2005
## 1783                                              Botswana    BW   BWA 2006
## 1784                                              Botswana    BW   BWA 2007
## 1785                                              Botswana    BW   BWA 2008
## 1786                                              Botswana    BW   BWA 2009
## 1787                                              Botswana    BW   BWA 2010
## 1788                                              Botswana    BW   BWA 2011
## 1789                                              Botswana    BW   BWA 2012
## 1790                                              Botswana    BW   BWA 2013
## 1791                                              Botswana    BW   BWA 2014
## 1792                                              Botswana    BW   BWA 2015
## 1793                                              Botswana    BW   BWA 2016
## 1794                                              Botswana    BW   BWA 2017
## 1795                                              Botswana    BW   BWA 2018
## 1796                                              Botswana    BW   BWA 2019
## 1797                                              Botswana    BW   BWA 2020
## 1798                                              Botswana    BW   BWA 2021
## 1799                                                Brazil    BR   BRA 1960
## 1800                                                Brazil    BR   BRA 1961
## 1801                                                Brazil    BR   BRA 1962
## 1802                                                Brazil    BR   BRA 1963
## 1803                                                Brazil    BR   BRA 1964
## 1804                                                Brazil    BR   BRA 1965
## 1805                                                Brazil    BR   BRA 1966
## 1806                                                Brazil    BR   BRA 1967
## 1807                                                Brazil    BR   BRA 1968
## 1808                                                Brazil    BR   BRA 1969
## 1809                                                Brazil    BR   BRA 1970
## 1810                                                Brazil    BR   BRA 1971
## 1811                                                Brazil    BR   BRA 1972
## 1812                                                Brazil    BR   BRA 1973
## 1813                                                Brazil    BR   BRA 1974
## 1814                                                Brazil    BR   BRA 1975
## 1815                                                Brazil    BR   BRA 1976
## 1816                                                Brazil    BR   BRA 1977
## 1817                                                Brazil    BR   BRA 1978
## 1818                                                Brazil    BR   BRA 1979
## 1819                                                Brazil    BR   BRA 1980
## 1820                                                Brazil    BR   BRA 1981
## 1821                                                Brazil    BR   BRA 1982
## 1822                                                Brazil    BR   BRA 1983
## 1823                                                Brazil    BR   BRA 1984
## 1824                                                Brazil    BR   BRA 1985
## 1825                                                Brazil    BR   BRA 1986
## 1826                                                Brazil    BR   BRA 1987
## 1827                                                Brazil    BR   BRA 1988
## 1828                                                Brazil    BR   BRA 1989
## 1829                                                Brazil    BR   BRA 1990
## 1830                                                Brazil    BR   BRA 1991
## 1831                                                Brazil    BR   BRA 1992
## 1832                                                Brazil    BR   BRA 1993
## 1833                                                Brazil    BR   BRA 1994
## 1834                                                Brazil    BR   BRA 1995
## 1835                                                Brazil    BR   BRA 1996
## 1836                                                Brazil    BR   BRA 1997
## 1837                                                Brazil    BR   BRA 1998
## 1838                                                Brazil    BR   BRA 1999
## 1839                                                Brazil    BR   BRA 2000
## 1840                                                Brazil    BR   BRA 2001
## 1841                                                Brazil    BR   BRA 2002
## 1842                                                Brazil    BR   BRA 2003
## 1843                                                Brazil    BR   BRA 2004
## 1844                                                Brazil    BR   BRA 2005
## 1845                                                Brazil    BR   BRA 2006
## 1846                                                Brazil    BR   BRA 2007
## 1847                                                Brazil    BR   BRA 2008
## 1848                                                Brazil    BR   BRA 2009
## 1849                                                Brazil    BR   BRA 2010
## 1850                                                Brazil    BR   BRA 2011
## 1851                                                Brazil    BR   BRA 2012
## 1852                                                Brazil    BR   BRA 2013
## 1853                                                Brazil    BR   BRA 2014
## 1854                                                Brazil    BR   BRA 2015
## 1855                                                Brazil    BR   BRA 2016
## 1856                                                Brazil    BR   BRA 2017
## 1857                                                Brazil    BR   BRA 2018
## 1858                                                Brazil    BR   BRA 2019
## 1859                                                Brazil    BR   BRA 2020
## 1860                                                Brazil    BR   BRA 2021
## 1861                                British Virgin Islands    VG   VGB 1960
## 1862                                British Virgin Islands    VG   VGB 1961
## 1863                                British Virgin Islands    VG   VGB 1962
## 1864                                British Virgin Islands    VG   VGB 1963
## 1865                                British Virgin Islands    VG   VGB 1964
## 1866                                British Virgin Islands    VG   VGB 1965
## 1867                                British Virgin Islands    VG   VGB 1966
## 1868                                British Virgin Islands    VG   VGB 1967
## 1869                                British Virgin Islands    VG   VGB 1968
## 1870                                British Virgin Islands    VG   VGB 1969
## 1871                                British Virgin Islands    VG   VGB 1970
## 1872                                British Virgin Islands    VG   VGB 1971
## 1873                                British Virgin Islands    VG   VGB 1972
## 1874                                British Virgin Islands    VG   VGB 1973
## 1875                                British Virgin Islands    VG   VGB 1974
## 1876                                British Virgin Islands    VG   VGB 1975
## 1877                                British Virgin Islands    VG   VGB 1976
## 1878                                British Virgin Islands    VG   VGB 1977
## 1879                                British Virgin Islands    VG   VGB 1978
## 1880                                British Virgin Islands    VG   VGB 1979
## 1881                                British Virgin Islands    VG   VGB 1980
## 1882                                British Virgin Islands    VG   VGB 1981
## 1883                                British Virgin Islands    VG   VGB 1982
## 1884                                British Virgin Islands    VG   VGB 1983
## 1885                                British Virgin Islands    VG   VGB 1984
## 1886                                British Virgin Islands    VG   VGB 1985
## 1887                                British Virgin Islands    VG   VGB 1986
## 1888                                British Virgin Islands    VG   VGB 1987
## 1889                                British Virgin Islands    VG   VGB 1988
## 1890                                British Virgin Islands    VG   VGB 1989
## 1891                                British Virgin Islands    VG   VGB 1990
## 1892                                British Virgin Islands    VG   VGB 1991
## 1893                                British Virgin Islands    VG   VGB 1992
## 1894                                British Virgin Islands    VG   VGB 1993
## 1895                                British Virgin Islands    VG   VGB 1994
## 1896                                British Virgin Islands    VG   VGB 1995
## 1897                                British Virgin Islands    VG   VGB 1996
## 1898                                British Virgin Islands    VG   VGB 1997
## 1899                                British Virgin Islands    VG   VGB 1998
## 1900                                British Virgin Islands    VG   VGB 1999
## 1901                                British Virgin Islands    VG   VGB 2000
## 1902                                British Virgin Islands    VG   VGB 2001
## 1903                                British Virgin Islands    VG   VGB 2002
## 1904                                British Virgin Islands    VG   VGB 2003
## 1905                                British Virgin Islands    VG   VGB 2004
## 1906                                British Virgin Islands    VG   VGB 2005
## 1907                                British Virgin Islands    VG   VGB 2006
## 1908                                British Virgin Islands    VG   VGB 2007
## 1909                                British Virgin Islands    VG   VGB 2008
## 1910                                British Virgin Islands    VG   VGB 2009
## 1911                                British Virgin Islands    VG   VGB 2010
## 1912                                British Virgin Islands    VG   VGB 2011
## 1913                                British Virgin Islands    VG   VGB 2012
## 1914                                British Virgin Islands    VG   VGB 2013
## 1915                                British Virgin Islands    VG   VGB 2014
## 1916                                British Virgin Islands    VG   VGB 2015
## 1917                                British Virgin Islands    VG   VGB 2016
## 1918                                British Virgin Islands    VG   VGB 2017
## 1919                                British Virgin Islands    VG   VGB 2018
## 1920                                British Virgin Islands    VG   VGB 2019
## 1921                                British Virgin Islands    VG   VGB 2020
## 1922                                British Virgin Islands    VG   VGB 2021
## 1923                                     Brunei Darussalam    BN   BRN 1960
## 1924                                     Brunei Darussalam    BN   BRN 1961
## 1925                                     Brunei Darussalam    BN   BRN 1962
## 1926                                     Brunei Darussalam    BN   BRN 1963
## 1927                                     Brunei Darussalam    BN   BRN 1964
## 1928                                     Brunei Darussalam    BN   BRN 1965
## 1929                                     Brunei Darussalam    BN   BRN 1966
## 1930                                     Brunei Darussalam    BN   BRN 1967
## 1931                                     Brunei Darussalam    BN   BRN 1968
## 1932                                     Brunei Darussalam    BN   BRN 1969
## 1933                                     Brunei Darussalam    BN   BRN 1970
## 1934                                     Brunei Darussalam    BN   BRN 1971
## 1935                                     Brunei Darussalam    BN   BRN 1972
## 1936                                     Brunei Darussalam    BN   BRN 1973
## 1937                                     Brunei Darussalam    BN   BRN 1974
## 1938                                     Brunei Darussalam    BN   BRN 1975
## 1939                                     Brunei Darussalam    BN   BRN 1976
## 1940                                     Brunei Darussalam    BN   BRN 1977
## 1941                                     Brunei Darussalam    BN   BRN 1978
## 1942                                     Brunei Darussalam    BN   BRN 1979
## 1943                                     Brunei Darussalam    BN   BRN 1980
## 1944                                     Brunei Darussalam    BN   BRN 1981
## 1945                                     Brunei Darussalam    BN   BRN 1982
## 1946                                     Brunei Darussalam    BN   BRN 1983
## 1947                                     Brunei Darussalam    BN   BRN 1984
## 1948                                     Brunei Darussalam    BN   BRN 1985
## 1949                                     Brunei Darussalam    BN   BRN 1986
## 1950                                     Brunei Darussalam    BN   BRN 1987
## 1951                                     Brunei Darussalam    BN   BRN 1988
## 1952                                     Brunei Darussalam    BN   BRN 1989
## 1953                                     Brunei Darussalam    BN   BRN 1990
## 1954                                     Brunei Darussalam    BN   BRN 1991
## 1955                                     Brunei Darussalam    BN   BRN 1992
## 1956                                     Brunei Darussalam    BN   BRN 1993
## 1957                                     Brunei Darussalam    BN   BRN 1994
## 1958                                     Brunei Darussalam    BN   BRN 1995
## 1959                                     Brunei Darussalam    BN   BRN 1996
## 1960                                     Brunei Darussalam    BN   BRN 1997
## 1961                                     Brunei Darussalam    BN   BRN 1998
## 1962                                     Brunei Darussalam    BN   BRN 1999
## 1963                                     Brunei Darussalam    BN   BRN 2000
## 1964                                     Brunei Darussalam    BN   BRN 2001
## 1965                                     Brunei Darussalam    BN   BRN 2002
## 1966                                     Brunei Darussalam    BN   BRN 2003
## 1967                                     Brunei Darussalam    BN   BRN 2004
## 1968                                     Brunei Darussalam    BN   BRN 2005
## 1969                                     Brunei Darussalam    BN   BRN 2006
## 1970                                     Brunei Darussalam    BN   BRN 2007
## 1971                                     Brunei Darussalam    BN   BRN 2008
## 1972                                     Brunei Darussalam    BN   BRN 2009
## 1973                                     Brunei Darussalam    BN   BRN 2010
## 1974                                     Brunei Darussalam    BN   BRN 2011
## 1975                                     Brunei Darussalam    BN   BRN 2012
## 1976                                     Brunei Darussalam    BN   BRN 2013
## 1977                                     Brunei Darussalam    BN   BRN 2014
## 1978                                     Brunei Darussalam    BN   BRN 2015
## 1979                                     Brunei Darussalam    BN   BRN 2016
## 1980                                     Brunei Darussalam    BN   BRN 2017
## 1981                                     Brunei Darussalam    BN   BRN 2018
## 1982                                     Brunei Darussalam    BN   BRN 2019
## 1983                                     Brunei Darussalam    BN   BRN 2020
## 1984                                     Brunei Darussalam    BN   BRN 2021
## 1985                                              Bulgaria    BG   BGR 1960
## 1986                                              Bulgaria    BG   BGR 1961
## 1987                                              Bulgaria    BG   BGR 1962
## 1988                                              Bulgaria    BG   BGR 1963
## 1989                                              Bulgaria    BG   BGR 1964
## 1990                                              Bulgaria    BG   BGR 1965
## 1991                                              Bulgaria    BG   BGR 1966
## 1992                                              Bulgaria    BG   BGR 1967
## 1993                                              Bulgaria    BG   BGR 1968
## 1994                                              Bulgaria    BG   BGR 1969
## 1995                                              Bulgaria    BG   BGR 1970
## 1996                                              Bulgaria    BG   BGR 1971
## 1997                                              Bulgaria    BG   BGR 1972
## 1998                                              Bulgaria    BG   BGR 1973
## 1999                                              Bulgaria    BG   BGR 1974
## 2000                                              Bulgaria    BG   BGR 1975
## 2001                                              Bulgaria    BG   BGR 1976
## 2002                                              Bulgaria    BG   BGR 1977
## 2003                                              Bulgaria    BG   BGR 1978
## 2004                                              Bulgaria    BG   BGR 1979
## 2005                                              Bulgaria    BG   BGR 1980
## 2006                                              Bulgaria    BG   BGR 1981
## 2007                                              Bulgaria    BG   BGR 1982
## 2008                                              Bulgaria    BG   BGR 1983
## 2009                                              Bulgaria    BG   BGR 1984
## 2010                                              Bulgaria    BG   BGR 1985
## 2011                                              Bulgaria    BG   BGR 1986
## 2012                                              Bulgaria    BG   BGR 1987
## 2013                                              Bulgaria    BG   BGR 1988
## 2014                                              Bulgaria    BG   BGR 1989
## 2015                                              Bulgaria    BG   BGR 1990
## 2016                                              Bulgaria    BG   BGR 1991
## 2017                                              Bulgaria    BG   BGR 1992
## 2018                                              Bulgaria    BG   BGR 1993
## 2019                                              Bulgaria    BG   BGR 1994
## 2020                                              Bulgaria    BG   BGR 1995
## 2021                                              Bulgaria    BG   BGR 1996
## 2022                                              Bulgaria    BG   BGR 1997
## 2023                                              Bulgaria    BG   BGR 1998
## 2024                                              Bulgaria    BG   BGR 1999
## 2025                                              Bulgaria    BG   BGR 2000
## 2026                                              Bulgaria    BG   BGR 2001
## 2027                                              Bulgaria    BG   BGR 2002
## 2028                                              Bulgaria    BG   BGR 2003
## 2029                                              Bulgaria    BG   BGR 2004
## 2030                                              Bulgaria    BG   BGR 2005
## 2031                                              Bulgaria    BG   BGR 2006
## 2032                                              Bulgaria    BG   BGR 2007
## 2033                                              Bulgaria    BG   BGR 2008
## 2034                                              Bulgaria    BG   BGR 2009
## 2035                                              Bulgaria    BG   BGR 2010
## 2036                                              Bulgaria    BG   BGR 2011
## 2037                                              Bulgaria    BG   BGR 2012
## 2038                                              Bulgaria    BG   BGR 2013
## 2039                                              Bulgaria    BG   BGR 2014
## 2040                                              Bulgaria    BG   BGR 2015
## 2041                                              Bulgaria    BG   BGR 2016
## 2042                                              Bulgaria    BG   BGR 2017
## 2043                                              Bulgaria    BG   BGR 2018
## 2044                                              Bulgaria    BG   BGR 2019
## 2045                                              Bulgaria    BG   BGR 2020
## 2046                                              Bulgaria    BG   BGR 2021
## 2047                                          Burkina Faso    BF   BFA 1960
## 2048                                          Burkina Faso    BF   BFA 1961
## 2049                                          Burkina Faso    BF   BFA 1962
## 2050                                          Burkina Faso    BF   BFA 1963
## 2051                                          Burkina Faso    BF   BFA 1964
## 2052                                          Burkina Faso    BF   BFA 1965
## 2053                                          Burkina Faso    BF   BFA 1966
## 2054                                          Burkina Faso    BF   BFA 1967
## 2055                                          Burkina Faso    BF   BFA 1968
## 2056                                          Burkina Faso    BF   BFA 1969
## 2057                                          Burkina Faso    BF   BFA 1970
## 2058                                          Burkina Faso    BF   BFA 1971
## 2059                                          Burkina Faso    BF   BFA 1972
## 2060                                          Burkina Faso    BF   BFA 1973
## 2061                                          Burkina Faso    BF   BFA 1974
## 2062                                          Burkina Faso    BF   BFA 1975
## 2063                                          Burkina Faso    BF   BFA 1976
## 2064                                          Burkina Faso    BF   BFA 1977
## 2065                                          Burkina Faso    BF   BFA 1978
## 2066                                          Burkina Faso    BF   BFA 1979
## 2067                                          Burkina Faso    BF   BFA 1980
## 2068                                          Burkina Faso    BF   BFA 1981
## 2069                                          Burkina Faso    BF   BFA 1982
## 2070                                          Burkina Faso    BF   BFA 1983
## 2071                                          Burkina Faso    BF   BFA 1984
## 2072                                          Burkina Faso    BF   BFA 1985
## 2073                                          Burkina Faso    BF   BFA 1986
## 2074                                          Burkina Faso    BF   BFA 1987
## 2075                                          Burkina Faso    BF   BFA 1988
## 2076                                          Burkina Faso    BF   BFA 1989
## 2077                                          Burkina Faso    BF   BFA 1990
## 2078                                          Burkina Faso    BF   BFA 1991
## 2079                                          Burkina Faso    BF   BFA 1992
## 2080                                          Burkina Faso    BF   BFA 1993
## 2081                                          Burkina Faso    BF   BFA 1994
## 2082                                          Burkina Faso    BF   BFA 1995
## 2083                                          Burkina Faso    BF   BFA 1996
## 2084                                          Burkina Faso    BF   BFA 1997
## 2085                                          Burkina Faso    BF   BFA 1998
## 2086                                          Burkina Faso    BF   BFA 1999
## 2087                                          Burkina Faso    BF   BFA 2000
## 2088                                          Burkina Faso    BF   BFA 2001
## 2089                                          Burkina Faso    BF   BFA 2002
## 2090                                          Burkina Faso    BF   BFA 2003
## 2091                                          Burkina Faso    BF   BFA 2004
## 2092                                          Burkina Faso    BF   BFA 2005
## 2093                                          Burkina Faso    BF   BFA 2006
## 2094                                          Burkina Faso    BF   BFA 2007
## 2095                                          Burkina Faso    BF   BFA 2008
## 2096                                          Burkina Faso    BF   BFA 2009
## 2097                                          Burkina Faso    BF   BFA 2010
## 2098                                          Burkina Faso    BF   BFA 2011
## 2099                                          Burkina Faso    BF   BFA 2012
## 2100                                          Burkina Faso    BF   BFA 2013
## 2101                                          Burkina Faso    BF   BFA 2014
## 2102                                          Burkina Faso    BF   BFA 2015
## 2103                                          Burkina Faso    BF   BFA 2016
## 2104                                          Burkina Faso    BF   BFA 2017
## 2105                                          Burkina Faso    BF   BFA 2018
## 2106                                          Burkina Faso    BF   BFA 2019
## 2107                                          Burkina Faso    BF   BFA 2020
## 2108                                          Burkina Faso    BF   BFA 2021
## 2109                                               Burundi    BI   BDI 1960
## 2110                                               Burundi    BI   BDI 1961
## 2111                                               Burundi    BI   BDI 1962
## 2112                                               Burundi    BI   BDI 1963
## 2113                                               Burundi    BI   BDI 1964
## 2114                                               Burundi    BI   BDI 1965
## 2115                                               Burundi    BI   BDI 1966
## 2116                                               Burundi    BI   BDI 1967
## 2117                                               Burundi    BI   BDI 1968
## 2118                                               Burundi    BI   BDI 1969
## 2119                                               Burundi    BI   BDI 1970
## 2120                                               Burundi    BI   BDI 1971
## 2121                                               Burundi    BI   BDI 1972
## 2122                                               Burundi    BI   BDI 1973
## 2123                                               Burundi    BI   BDI 1974
## 2124                                               Burundi    BI   BDI 1975
## 2125                                               Burundi    BI   BDI 1976
## 2126                                               Burundi    BI   BDI 1977
## 2127                                               Burundi    BI   BDI 1978
## 2128                                               Burundi    BI   BDI 1979
## 2129                                               Burundi    BI   BDI 1980
## 2130                                               Burundi    BI   BDI 1981
## 2131                                               Burundi    BI   BDI 1982
## 2132                                               Burundi    BI   BDI 1983
## 2133                                               Burundi    BI   BDI 1984
## 2134                                               Burundi    BI   BDI 1985
## 2135                                               Burundi    BI   BDI 1986
## 2136                                               Burundi    BI   BDI 1987
## 2137                                               Burundi    BI   BDI 1988
## 2138                                               Burundi    BI   BDI 1989
## 2139                                               Burundi    BI   BDI 1990
## 2140                                               Burundi    BI   BDI 1991
## 2141                                               Burundi    BI   BDI 1992
## 2142                                               Burundi    BI   BDI 1993
## 2143                                               Burundi    BI   BDI 1994
## 2144                                               Burundi    BI   BDI 1995
## 2145                                               Burundi    BI   BDI 1996
## 2146                                               Burundi    BI   BDI 1997
## 2147                                               Burundi    BI   BDI 1998
## 2148                                               Burundi    BI   BDI 1999
## 2149                                               Burundi    BI   BDI 2000
## 2150                                               Burundi    BI   BDI 2001
## 2151                                               Burundi    BI   BDI 2002
## 2152                                               Burundi    BI   BDI 2003
## 2153                                               Burundi    BI   BDI 2004
## 2154                                               Burundi    BI   BDI 2005
## 2155                                               Burundi    BI   BDI 2006
## 2156                                               Burundi    BI   BDI 2007
## 2157                                               Burundi    BI   BDI 2008
## 2158                                               Burundi    BI   BDI 2009
## 2159                                               Burundi    BI   BDI 2010
## 2160                                               Burundi    BI   BDI 2011
## 2161                                               Burundi    BI   BDI 2012
## 2162                                               Burundi    BI   BDI 2013
## 2163                                               Burundi    BI   BDI 2014
## 2164                                               Burundi    BI   BDI 2015
## 2165                                               Burundi    BI   BDI 2016
## 2166                                               Burundi    BI   BDI 2017
## 2167                                               Burundi    BI   BDI 2018
## 2168                                               Burundi    BI   BDI 2019
## 2169                                               Burundi    BI   BDI 2020
## 2170                                               Burundi    BI   BDI 2021
## 2171                                            Cabo Verde    CV   CPV 1960
## 2172                                            Cabo Verde    CV   CPV 1961
## 2173                                            Cabo Verde    CV   CPV 1962
## 2174                                            Cabo Verde    CV   CPV 1963
## 2175                                            Cabo Verde    CV   CPV 1964
## 2176                                            Cabo Verde    CV   CPV 1965
## 2177                                            Cabo Verde    CV   CPV 1966
## 2178                                            Cabo Verde    CV   CPV 1967
## 2179                                            Cabo Verde    CV   CPV 1968
## 2180                                            Cabo Verde    CV   CPV 1969
## 2181                                            Cabo Verde    CV   CPV 1970
## 2182                                            Cabo Verde    CV   CPV 1971
## 2183                                            Cabo Verde    CV   CPV 1972
## 2184                                            Cabo Verde    CV   CPV 1973
## 2185                                            Cabo Verde    CV   CPV 1974
## 2186                                            Cabo Verde    CV   CPV 1975
## 2187                                            Cabo Verde    CV   CPV 1976
## 2188                                            Cabo Verde    CV   CPV 1977
## 2189                                            Cabo Verde    CV   CPV 1978
## 2190                                            Cabo Verde    CV   CPV 1979
## 2191                                            Cabo Verde    CV   CPV 1980
## 2192                                            Cabo Verde    CV   CPV 1981
## 2193                                            Cabo Verde    CV   CPV 1982
## 2194                                            Cabo Verde    CV   CPV 1983
## 2195                                            Cabo Verde    CV   CPV 1984
## 2196                                            Cabo Verde    CV   CPV 1985
## 2197                                            Cabo Verde    CV   CPV 1986
## 2198                                            Cabo Verde    CV   CPV 1987
## 2199                                            Cabo Verde    CV   CPV 1988
## 2200                                            Cabo Verde    CV   CPV 1989
## 2201                                            Cabo Verde    CV   CPV 1990
## 2202                                            Cabo Verde    CV   CPV 1991
## 2203                                            Cabo Verde    CV   CPV 1992
## 2204                                            Cabo Verde    CV   CPV 1993
## 2205                                            Cabo Verde    CV   CPV 1994
## 2206                                            Cabo Verde    CV   CPV 1995
## 2207                                            Cabo Verde    CV   CPV 1996
## 2208                                            Cabo Verde    CV   CPV 1997
## 2209                                            Cabo Verde    CV   CPV 1998
## 2210                                            Cabo Verde    CV   CPV 1999
## 2211                                            Cabo Verde    CV   CPV 2000
## 2212                                            Cabo Verde    CV   CPV 2001
## 2213                                            Cabo Verde    CV   CPV 2002
## 2214                                            Cabo Verde    CV   CPV 2003
## 2215                                            Cabo Verde    CV   CPV 2004
## 2216                                            Cabo Verde    CV   CPV 2005
## 2217                                            Cabo Verde    CV   CPV 2006
## 2218                                            Cabo Verde    CV   CPV 2007
## 2219                                            Cabo Verde    CV   CPV 2008
## 2220                                            Cabo Verde    CV   CPV 2009
## 2221                                            Cabo Verde    CV   CPV 2010
## 2222                                            Cabo Verde    CV   CPV 2011
## 2223                                            Cabo Verde    CV   CPV 2012
## 2224                                            Cabo Verde    CV   CPV 2013
## 2225                                            Cabo Verde    CV   CPV 2014
## 2226                                            Cabo Verde    CV   CPV 2015
## 2227                                            Cabo Verde    CV   CPV 2016
## 2228                                            Cabo Verde    CV   CPV 2017
## 2229                                            Cabo Verde    CV   CPV 2018
## 2230                                            Cabo Verde    CV   CPV 2019
## 2231                                            Cabo Verde    CV   CPV 2020
## 2232                                            Cabo Verde    CV   CPV 2021
## 2233                                              Cambodia    KH   KHM 1960
## 2234                                              Cambodia    KH   KHM 1961
## 2235                                              Cambodia    KH   KHM 1962
## 2236                                              Cambodia    KH   KHM 1963
## 2237                                              Cambodia    KH   KHM 1964
## 2238                                              Cambodia    KH   KHM 1965
## 2239                                              Cambodia    KH   KHM 1966
## 2240                                              Cambodia    KH   KHM 1967
## 2241                                              Cambodia    KH   KHM 1968
## 2242                                              Cambodia    KH   KHM 1969
## 2243                                              Cambodia    KH   KHM 1970
## 2244                                              Cambodia    KH   KHM 1971
## 2245                                              Cambodia    KH   KHM 1972
## 2246                                              Cambodia    KH   KHM 1973
## 2247                                              Cambodia    KH   KHM 1974
## 2248                                              Cambodia    KH   KHM 1975
## 2249                                              Cambodia    KH   KHM 1976
## 2250                                              Cambodia    KH   KHM 1977
## 2251                                              Cambodia    KH   KHM 1978
## 2252                                              Cambodia    KH   KHM 1979
## 2253                                              Cambodia    KH   KHM 1980
## 2254                                              Cambodia    KH   KHM 1981
## 2255                                              Cambodia    KH   KHM 1982
## 2256                                              Cambodia    KH   KHM 1983
## 2257                                              Cambodia    KH   KHM 1984
## 2258                                              Cambodia    KH   KHM 1985
## 2259                                              Cambodia    KH   KHM 1986
## 2260                                              Cambodia    KH   KHM 1987
## 2261                                              Cambodia    KH   KHM 1988
## 2262                                              Cambodia    KH   KHM 1989
## 2263                                              Cambodia    KH   KHM 1990
## 2264                                              Cambodia    KH   KHM 1991
## 2265                                              Cambodia    KH   KHM 1992
## 2266                                              Cambodia    KH   KHM 1993
## 2267                                              Cambodia    KH   KHM 1994
## 2268                                              Cambodia    KH   KHM 1995
## 2269                                              Cambodia    KH   KHM 1996
## 2270                                              Cambodia    KH   KHM 1997
## 2271                                              Cambodia    KH   KHM 1998
## 2272                                              Cambodia    KH   KHM 1999
## 2273                                              Cambodia    KH   KHM 2000
## 2274                                              Cambodia    KH   KHM 2001
## 2275                                              Cambodia    KH   KHM 2002
## 2276                                              Cambodia    KH   KHM 2003
## 2277                                              Cambodia    KH   KHM 2004
## 2278                                              Cambodia    KH   KHM 2005
## 2279                                              Cambodia    KH   KHM 2006
## 2280                                              Cambodia    KH   KHM 2007
## 2281                                              Cambodia    KH   KHM 2008
## 2282                                              Cambodia    KH   KHM 2009
## 2283                                              Cambodia    KH   KHM 2010
## 2284                                              Cambodia    KH   KHM 2011
## 2285                                              Cambodia    KH   KHM 2012
## 2286                                              Cambodia    KH   KHM 2013
## 2287                                              Cambodia    KH   KHM 2014
## 2288                                              Cambodia    KH   KHM 2015
## 2289                                              Cambodia    KH   KHM 2016
## 2290                                              Cambodia    KH   KHM 2017
## 2291                                              Cambodia    KH   KHM 2018
## 2292                                              Cambodia    KH   KHM 2019
## 2293                                              Cambodia    KH   KHM 2020
## 2294                                              Cambodia    KH   KHM 2021
## 2295                                              Cameroon    CM   CMR 1960
## 2296                                              Cameroon    CM   CMR 1961
## 2297                                              Cameroon    CM   CMR 1962
## 2298                                              Cameroon    CM   CMR 1963
## 2299                                              Cameroon    CM   CMR 1964
## 2300                                              Cameroon    CM   CMR 1965
## 2301                                              Cameroon    CM   CMR 1966
## 2302                                              Cameroon    CM   CMR 1967
## 2303                                              Cameroon    CM   CMR 1968
## 2304                                              Cameroon    CM   CMR 1969
## 2305                                              Cameroon    CM   CMR 1970
## 2306                                              Cameroon    CM   CMR 1971
## 2307                                              Cameroon    CM   CMR 1972
## 2308                                              Cameroon    CM   CMR 1973
## 2309                                              Cameroon    CM   CMR 1974
## 2310                                              Cameroon    CM   CMR 1975
## 2311                                              Cameroon    CM   CMR 1976
## 2312                                              Cameroon    CM   CMR 1977
## 2313                                              Cameroon    CM   CMR 1978
## 2314                                              Cameroon    CM   CMR 1979
## 2315                                              Cameroon    CM   CMR 1980
## 2316                                              Cameroon    CM   CMR 1981
## 2317                                              Cameroon    CM   CMR 1982
## 2318                                              Cameroon    CM   CMR 1983
## 2319                                              Cameroon    CM   CMR 1984
## 2320                                              Cameroon    CM   CMR 1985
## 2321                                              Cameroon    CM   CMR 1986
## 2322                                              Cameroon    CM   CMR 1987
## 2323                                              Cameroon    CM   CMR 1988
## 2324                                              Cameroon    CM   CMR 1989
## 2325                                              Cameroon    CM   CMR 1990
## 2326                                              Cameroon    CM   CMR 1991
## 2327                                              Cameroon    CM   CMR 1992
## 2328                                              Cameroon    CM   CMR 1993
## 2329                                              Cameroon    CM   CMR 1994
## 2330                                              Cameroon    CM   CMR 1995
## 2331                                              Cameroon    CM   CMR 1996
## 2332                                              Cameroon    CM   CMR 1997
## 2333                                              Cameroon    CM   CMR 1998
## 2334                                              Cameroon    CM   CMR 1999
## 2335                                              Cameroon    CM   CMR 2000
## 2336                                              Cameroon    CM   CMR 2001
## 2337                                              Cameroon    CM   CMR 2002
## 2338                                              Cameroon    CM   CMR 2003
## 2339                                              Cameroon    CM   CMR 2004
## 2340                                              Cameroon    CM   CMR 2005
## 2341                                              Cameroon    CM   CMR 2006
## 2342                                              Cameroon    CM   CMR 2007
## 2343                                              Cameroon    CM   CMR 2008
## 2344                                              Cameroon    CM   CMR 2009
## 2345                                              Cameroon    CM   CMR 2010
## 2346                                              Cameroon    CM   CMR 2011
## 2347                                              Cameroon    CM   CMR 2012
## 2348                                              Cameroon    CM   CMR 2013
## 2349                                              Cameroon    CM   CMR 2014
## 2350                                              Cameroon    CM   CMR 2015
## 2351                                              Cameroon    CM   CMR 2016
## 2352                                              Cameroon    CM   CMR 2017
## 2353                                              Cameroon    CM   CMR 2018
## 2354                                              Cameroon    CM   CMR 2019
## 2355                                              Cameroon    CM   CMR 2020
## 2356                                              Cameroon    CM   CMR 2021
## 2357                                                Canada    CA   CAN 1960
## 2358                                                Canada    CA   CAN 1961
## 2359                                                Canada    CA   CAN 1962
## 2360                                                Canada    CA   CAN 1963
## 2361                                                Canada    CA   CAN 1964
## 2362                                                Canada    CA   CAN 1965
## 2363                                                Canada    CA   CAN 1966
## 2364                                                Canada    CA   CAN 1967
## 2365                                                Canada    CA   CAN 1968
## 2366                                                Canada    CA   CAN 1969
## 2367                                                Canada    CA   CAN 1970
## 2368                                                Canada    CA   CAN 1971
## 2369                                                Canada    CA   CAN 1972
## 2370                                                Canada    CA   CAN 1973
## 2371                                                Canada    CA   CAN 1974
## 2372                                                Canada    CA   CAN 1975
## 2373                                                Canada    CA   CAN 1976
## 2374                                                Canada    CA   CAN 1977
## 2375                                                Canada    CA   CAN 1978
## 2376                                                Canada    CA   CAN 1979
## 2377                                                Canada    CA   CAN 1980
## 2378                                                Canada    CA   CAN 1981
## 2379                                                Canada    CA   CAN 1982
## 2380                                                Canada    CA   CAN 1983
## 2381                                                Canada    CA   CAN 1984
## 2382                                                Canada    CA   CAN 1985
## 2383                                                Canada    CA   CAN 1986
## 2384                                                Canada    CA   CAN 1987
## 2385                                                Canada    CA   CAN 1988
## 2386                                                Canada    CA   CAN 1989
## 2387                                                Canada    CA   CAN 1990
## 2388                                                Canada    CA   CAN 1991
## 2389                                                Canada    CA   CAN 1992
## 2390                                                Canada    CA   CAN 1993
## 2391                                                Canada    CA   CAN 1994
## 2392                                                Canada    CA   CAN 1995
## 2393                                                Canada    CA   CAN 1996
## 2394                                                Canada    CA   CAN 1997
## 2395                                                Canada    CA   CAN 1998
## 2396                                                Canada    CA   CAN 1999
## 2397                                                Canada    CA   CAN 2000
## 2398                                                Canada    CA   CAN 2001
## 2399                                                Canada    CA   CAN 2002
## 2400                                                Canada    CA   CAN 2003
## 2401                                                Canada    CA   CAN 2004
## 2402                                                Canada    CA   CAN 2005
## 2403                                                Canada    CA   CAN 2006
## 2404                                                Canada    CA   CAN 2007
## 2405                                                Canada    CA   CAN 2008
## 2406                                                Canada    CA   CAN 2009
## 2407                                                Canada    CA   CAN 2010
## 2408                                                Canada    CA   CAN 2011
## 2409                                                Canada    CA   CAN 2012
## 2410                                                Canada    CA   CAN 2013
## 2411                                                Canada    CA   CAN 2014
## 2412                                                Canada    CA   CAN 2015
## 2413                                                Canada    CA   CAN 2016
## 2414                                                Canada    CA   CAN 2017
## 2415                                                Canada    CA   CAN 2018
## 2416                                                Canada    CA   CAN 2019
## 2417                                                Canada    CA   CAN 2020
## 2418                                                Canada    CA   CAN 2021
## 2419                                Caribbean small states    S3   CSS 1960
## 2420                                Caribbean small states    S3   CSS 1961
## 2421                                Caribbean small states    S3   CSS 1962
## 2422                                Caribbean small states    S3   CSS 1963
## 2423                                Caribbean small states    S3   CSS 1964
## 2424                                Caribbean small states    S3   CSS 1965
## 2425                                Caribbean small states    S3   CSS 1966
## 2426                                Caribbean small states    S3   CSS 1967
## 2427                                Caribbean small states    S3   CSS 1968
## 2428                                Caribbean small states    S3   CSS 1969
## 2429                                Caribbean small states    S3   CSS 1970
## 2430                                Caribbean small states    S3   CSS 1971
## 2431                                Caribbean small states    S3   CSS 1972
## 2432                                Caribbean small states    S3   CSS 1973
## 2433                                Caribbean small states    S3   CSS 1974
## 2434                                Caribbean small states    S3   CSS 1975
## 2435                                Caribbean small states    S3   CSS 1976
## 2436                                Caribbean small states    S3   CSS 1977
## 2437                                Caribbean small states    S3   CSS 1978
## 2438                                Caribbean small states    S3   CSS 1979
## 2439                                Caribbean small states    S3   CSS 1980
## 2440                                Caribbean small states    S3   CSS 1981
## 2441                                Caribbean small states    S3   CSS 1982
## 2442                                Caribbean small states    S3   CSS 1983
## 2443                                Caribbean small states    S3   CSS 1984
## 2444                                Caribbean small states    S3   CSS 1985
## 2445                                Caribbean small states    S3   CSS 1986
## 2446                                Caribbean small states    S3   CSS 1987
## 2447                                Caribbean small states    S3   CSS 1988
## 2448                                Caribbean small states    S3   CSS 1989
## 2449                                Caribbean small states    S3   CSS 1990
## 2450                                Caribbean small states    S3   CSS 1991
## 2451                                Caribbean small states    S3   CSS 1992
## 2452                                Caribbean small states    S3   CSS 1993
## 2453                                Caribbean small states    S3   CSS 1994
## 2454                                Caribbean small states    S3   CSS 1995
## 2455                                Caribbean small states    S3   CSS 1996
## 2456                                Caribbean small states    S3   CSS 1997
## 2457                                Caribbean small states    S3   CSS 1998
## 2458                                Caribbean small states    S3   CSS 1999
## 2459                                Caribbean small states    S3   CSS 2000
## 2460                                Caribbean small states    S3   CSS 2001
## 2461                                Caribbean small states    S3   CSS 2002
## 2462                                Caribbean small states    S3   CSS 2003
## 2463                                Caribbean small states    S3   CSS 2004
## 2464                                Caribbean small states    S3   CSS 2005
## 2465                                Caribbean small states    S3   CSS 2006
## 2466                                Caribbean small states    S3   CSS 2007
## 2467                                Caribbean small states    S3   CSS 2008
## 2468                                Caribbean small states    S3   CSS 2009
## 2469                                Caribbean small states    S3   CSS 2010
## 2470                                Caribbean small states    S3   CSS 2011
## 2471                                Caribbean small states    S3   CSS 2012
## 2472                                Caribbean small states    S3   CSS 2013
## 2473                                Caribbean small states    S3   CSS 2014
## 2474                                Caribbean small states    S3   CSS 2015
## 2475                                Caribbean small states    S3   CSS 2016
## 2476                                Caribbean small states    S3   CSS 2017
## 2477                                Caribbean small states    S3   CSS 2018
## 2478                                Caribbean small states    S3   CSS 2019
## 2479                                Caribbean small states    S3   CSS 2020
## 2480                                Caribbean small states    S3   CSS 2021
## 2481                                        Cayman Islands    KY   CYM 1960
## 2482                                        Cayman Islands    KY   CYM 1961
## 2483                                        Cayman Islands    KY   CYM 1962
## 2484                                        Cayman Islands    KY   CYM 1963
## 2485                                        Cayman Islands    KY   CYM 1964
## 2486                                        Cayman Islands    KY   CYM 1965
## 2487                                        Cayman Islands    KY   CYM 1966
## 2488                                        Cayman Islands    KY   CYM 1967
## 2489                                        Cayman Islands    KY   CYM 1968
## 2490                                        Cayman Islands    KY   CYM 1969
## 2491                                        Cayman Islands    KY   CYM 1970
## 2492                                        Cayman Islands    KY   CYM 1971
## 2493                                        Cayman Islands    KY   CYM 1972
## 2494                                        Cayman Islands    KY   CYM 1973
## 2495                                        Cayman Islands    KY   CYM 1974
## 2496                                        Cayman Islands    KY   CYM 1975
## 2497                                        Cayman Islands    KY   CYM 1976
## 2498                                        Cayman Islands    KY   CYM 1977
## 2499                                        Cayman Islands    KY   CYM 1978
## 2500                                        Cayman Islands    KY   CYM 1979
## 2501                                        Cayman Islands    KY   CYM 1980
## 2502                                        Cayman Islands    KY   CYM 1981
## 2503                                        Cayman Islands    KY   CYM 1982
## 2504                                        Cayman Islands    KY   CYM 1983
## 2505                                        Cayman Islands    KY   CYM 1984
## 2506                                        Cayman Islands    KY   CYM 1985
## 2507                                        Cayman Islands    KY   CYM 1986
## 2508                                        Cayman Islands    KY   CYM 1987
## 2509                                        Cayman Islands    KY   CYM 1988
## 2510                                        Cayman Islands    KY   CYM 1989
## 2511                                        Cayman Islands    KY   CYM 1990
## 2512                                        Cayman Islands    KY   CYM 1991
## 2513                                        Cayman Islands    KY   CYM 1992
## 2514                                        Cayman Islands    KY   CYM 1993
## 2515                                        Cayman Islands    KY   CYM 1994
## 2516                                        Cayman Islands    KY   CYM 1995
## 2517                                        Cayman Islands    KY   CYM 1996
## 2518                                        Cayman Islands    KY   CYM 1997
## 2519                                        Cayman Islands    KY   CYM 1998
## 2520                                        Cayman Islands    KY   CYM 1999
## 2521                                        Cayman Islands    KY   CYM 2000
## 2522                                        Cayman Islands    KY   CYM 2001
## 2523                                        Cayman Islands    KY   CYM 2002
## 2524                                        Cayman Islands    KY   CYM 2003
## 2525                                        Cayman Islands    KY   CYM 2004
## 2526                                        Cayman Islands    KY   CYM 2005
## 2527                                        Cayman Islands    KY   CYM 2006
## 2528                                        Cayman Islands    KY   CYM 2007
## 2529                                        Cayman Islands    KY   CYM 2008
## 2530                                        Cayman Islands    KY   CYM 2009
## 2531                                        Cayman Islands    KY   CYM 2010
## 2532                                        Cayman Islands    KY   CYM 2011
## 2533                                        Cayman Islands    KY   CYM 2012
## 2534                                        Cayman Islands    KY   CYM 2013
## 2535                                        Cayman Islands    KY   CYM 2014
## 2536                                        Cayman Islands    KY   CYM 2015
## 2537                                        Cayman Islands    KY   CYM 2016
## 2538                                        Cayman Islands    KY   CYM 2017
## 2539                                        Cayman Islands    KY   CYM 2018
## 2540                                        Cayman Islands    KY   CYM 2019
## 2541                                        Cayman Islands    KY   CYM 2020
## 2542                                        Cayman Islands    KY   CYM 2021
## 2543                              Central African Republic    CF   CAF 1960
## 2544                              Central African Republic    CF   CAF 1961
## 2545                              Central African Republic    CF   CAF 1962
## 2546                              Central African Republic    CF   CAF 1963
## 2547                              Central African Republic    CF   CAF 1964
## 2548                              Central African Republic    CF   CAF 1965
## 2549                              Central African Republic    CF   CAF 1966
## 2550                              Central African Republic    CF   CAF 1967
## 2551                              Central African Republic    CF   CAF 1968
## 2552                              Central African Republic    CF   CAF 1969
## 2553                              Central African Republic    CF   CAF 1970
## 2554                              Central African Republic    CF   CAF 1971
## 2555                              Central African Republic    CF   CAF 1972
## 2556                              Central African Republic    CF   CAF 1973
## 2557                              Central African Republic    CF   CAF 1974
## 2558                              Central African Republic    CF   CAF 1975
## 2559                              Central African Republic    CF   CAF 1976
## 2560                              Central African Republic    CF   CAF 1977
## 2561                              Central African Republic    CF   CAF 1978
## 2562                              Central African Republic    CF   CAF 1979
## 2563                              Central African Republic    CF   CAF 1980
## 2564                              Central African Republic    CF   CAF 1981
## 2565                              Central African Republic    CF   CAF 1982
## 2566                              Central African Republic    CF   CAF 1983
## 2567                              Central African Republic    CF   CAF 1984
## 2568                              Central African Republic    CF   CAF 1985
## 2569                              Central African Republic    CF   CAF 1986
## 2570                              Central African Republic    CF   CAF 1987
## 2571                              Central African Republic    CF   CAF 1988
## 2572                              Central African Republic    CF   CAF 1989
## 2573                              Central African Republic    CF   CAF 1990
## 2574                              Central African Republic    CF   CAF 1991
## 2575                              Central African Republic    CF   CAF 1992
## 2576                              Central African Republic    CF   CAF 1993
## 2577                              Central African Republic    CF   CAF 1994
## 2578                              Central African Republic    CF   CAF 1995
## 2579                              Central African Republic    CF   CAF 1996
## 2580                              Central African Republic    CF   CAF 1997
## 2581                              Central African Republic    CF   CAF 1998
## 2582                              Central African Republic    CF   CAF 1999
## 2583                              Central African Republic    CF   CAF 2000
## 2584                              Central African Republic    CF   CAF 2001
## 2585                              Central African Republic    CF   CAF 2002
## 2586                              Central African Republic    CF   CAF 2003
## 2587                              Central African Republic    CF   CAF 2004
## 2588                              Central African Republic    CF   CAF 2005
## 2589                              Central African Republic    CF   CAF 2006
## 2590                              Central African Republic    CF   CAF 2007
## 2591                              Central African Republic    CF   CAF 2008
## 2592                              Central African Republic    CF   CAF 2009
## 2593                              Central African Republic    CF   CAF 2010
## 2594                              Central African Republic    CF   CAF 2011
## 2595                              Central African Republic    CF   CAF 2012
## 2596                              Central African Republic    CF   CAF 2013
## 2597                              Central African Republic    CF   CAF 2014
## 2598                              Central African Republic    CF   CAF 2015
## 2599                              Central African Republic    CF   CAF 2016
## 2600                              Central African Republic    CF   CAF 2017
## 2601                              Central African Republic    CF   CAF 2018
## 2602                              Central African Republic    CF   CAF 2019
## 2603                              Central African Republic    CF   CAF 2020
## 2604                              Central African Republic    CF   CAF 2021
## 2605                        Central Europe and the Baltics    B8   CEB 1960
## 2606                        Central Europe and the Baltics    B8   CEB 1961
## 2607                        Central Europe and the Baltics    B8   CEB 1962
## 2608                        Central Europe and the Baltics    B8   CEB 1963
## 2609                        Central Europe and the Baltics    B8   CEB 1964
## 2610                        Central Europe and the Baltics    B8   CEB 1965
## 2611                        Central Europe and the Baltics    B8   CEB 1966
## 2612                        Central Europe and the Baltics    B8   CEB 1967
## 2613                        Central Europe and the Baltics    B8   CEB 1968
## 2614                        Central Europe and the Baltics    B8   CEB 1969
## 2615                        Central Europe and the Baltics    B8   CEB 1970
## 2616                        Central Europe and the Baltics    B8   CEB 1971
## 2617                        Central Europe and the Baltics    B8   CEB 1972
## 2618                        Central Europe and the Baltics    B8   CEB 1973
## 2619                        Central Europe and the Baltics    B8   CEB 1974
## 2620                        Central Europe and the Baltics    B8   CEB 1975
## 2621                        Central Europe and the Baltics    B8   CEB 1976
## 2622                        Central Europe and the Baltics    B8   CEB 1977
## 2623                        Central Europe and the Baltics    B8   CEB 1978
## 2624                        Central Europe and the Baltics    B8   CEB 1979
## 2625                        Central Europe and the Baltics    B8   CEB 1980
## 2626                        Central Europe and the Baltics    B8   CEB 1981
## 2627                        Central Europe and the Baltics    B8   CEB 1982
## 2628                        Central Europe and the Baltics    B8   CEB 1983
## 2629                        Central Europe and the Baltics    B8   CEB 1984
## 2630                        Central Europe and the Baltics    B8   CEB 1985
## 2631                        Central Europe and the Baltics    B8   CEB 1986
## 2632                        Central Europe and the Baltics    B8   CEB 1987
## 2633                        Central Europe and the Baltics    B8   CEB 1988
## 2634                        Central Europe and the Baltics    B8   CEB 1989
## 2635                        Central Europe and the Baltics    B8   CEB 1990
## 2636                        Central Europe and the Baltics    B8   CEB 1991
## 2637                        Central Europe and the Baltics    B8   CEB 1992
## 2638                        Central Europe and the Baltics    B8   CEB 1993
## 2639                        Central Europe and the Baltics    B8   CEB 1994
## 2640                        Central Europe and the Baltics    B8   CEB 1995
## 2641                        Central Europe and the Baltics    B8   CEB 1996
## 2642                        Central Europe and the Baltics    B8   CEB 1997
## 2643                        Central Europe and the Baltics    B8   CEB 1998
## 2644                        Central Europe and the Baltics    B8   CEB 1999
## 2645                        Central Europe and the Baltics    B8   CEB 2000
## 2646                        Central Europe and the Baltics    B8   CEB 2001
## 2647                        Central Europe and the Baltics    B8   CEB 2002
## 2648                        Central Europe and the Baltics    B8   CEB 2003
## 2649                        Central Europe and the Baltics    B8   CEB 2004
## 2650                        Central Europe and the Baltics    B8   CEB 2005
## 2651                        Central Europe and the Baltics    B8   CEB 2006
## 2652                        Central Europe and the Baltics    B8   CEB 2007
## 2653                        Central Europe and the Baltics    B8   CEB 2008
## 2654                        Central Europe and the Baltics    B8   CEB 2009
## 2655                        Central Europe and the Baltics    B8   CEB 2010
## 2656                        Central Europe and the Baltics    B8   CEB 2011
## 2657                        Central Europe and the Baltics    B8   CEB 2012
## 2658                        Central Europe and the Baltics    B8   CEB 2013
## 2659                        Central Europe and the Baltics    B8   CEB 2014
## 2660                        Central Europe and the Baltics    B8   CEB 2015
## 2661                        Central Europe and the Baltics    B8   CEB 2016
## 2662                        Central Europe and the Baltics    B8   CEB 2017
## 2663                        Central Europe and the Baltics    B8   CEB 2018
## 2664                        Central Europe and the Baltics    B8   CEB 2019
## 2665                        Central Europe and the Baltics    B8   CEB 2020
## 2666                        Central Europe and the Baltics    B8   CEB 2021
## 2667                                                  Chad    TD   TCD 1960
## 2668                                                  Chad    TD   TCD 1961
## 2669                                                  Chad    TD   TCD 1962
## 2670                                                  Chad    TD   TCD 1963
## 2671                                                  Chad    TD   TCD 1964
## 2672                                                  Chad    TD   TCD 1965
## 2673                                                  Chad    TD   TCD 1966
## 2674                                                  Chad    TD   TCD 1967
## 2675                                                  Chad    TD   TCD 1968
## 2676                                                  Chad    TD   TCD 1969
## 2677                                                  Chad    TD   TCD 1970
## 2678                                                  Chad    TD   TCD 1971
## 2679                                                  Chad    TD   TCD 1972
## 2680                                                  Chad    TD   TCD 1973
## 2681                                                  Chad    TD   TCD 1974
## 2682                                                  Chad    TD   TCD 1975
## 2683                                                  Chad    TD   TCD 1976
## 2684                                                  Chad    TD   TCD 1977
## 2685                                                  Chad    TD   TCD 1978
## 2686                                                  Chad    TD   TCD 1979
## 2687                                                  Chad    TD   TCD 1980
## 2688                                                  Chad    TD   TCD 1981
## 2689                                                  Chad    TD   TCD 1982
## 2690                                                  Chad    TD   TCD 1983
## 2691                                                  Chad    TD   TCD 1984
## 2692                                                  Chad    TD   TCD 1985
## 2693                                                  Chad    TD   TCD 1986
## 2694                                                  Chad    TD   TCD 1987
## 2695                                                  Chad    TD   TCD 1988
## 2696                                                  Chad    TD   TCD 1989
## 2697                                                  Chad    TD   TCD 1990
## 2698                                                  Chad    TD   TCD 1991
## 2699                                                  Chad    TD   TCD 1992
## 2700                                                  Chad    TD   TCD 1993
## 2701                                                  Chad    TD   TCD 1994
## 2702                                                  Chad    TD   TCD 1995
## 2703                                                  Chad    TD   TCD 1996
## 2704                                                  Chad    TD   TCD 1997
## 2705                                                  Chad    TD   TCD 1998
## 2706                                                  Chad    TD   TCD 1999
## 2707                                                  Chad    TD   TCD 2000
## 2708                                                  Chad    TD   TCD 2001
## 2709                                                  Chad    TD   TCD 2002
## 2710                                                  Chad    TD   TCD 2003
## 2711                                                  Chad    TD   TCD 2004
## 2712                                                  Chad    TD   TCD 2005
## 2713                                                  Chad    TD   TCD 2006
## 2714                                                  Chad    TD   TCD 2007
## 2715                                                  Chad    TD   TCD 2008
## 2716                                                  Chad    TD   TCD 2009
## 2717                                                  Chad    TD   TCD 2010
## 2718                                                  Chad    TD   TCD 2011
## 2719                                                  Chad    TD   TCD 2012
## 2720                                                  Chad    TD   TCD 2013
## 2721                                                  Chad    TD   TCD 2014
## 2722                                                  Chad    TD   TCD 2015
## 2723                                                  Chad    TD   TCD 2016
## 2724                                                  Chad    TD   TCD 2017
## 2725                                                  Chad    TD   TCD 2018
## 2726                                                  Chad    TD   TCD 2019
## 2727                                                  Chad    TD   TCD 2020
## 2728                                                  Chad    TD   TCD 2021
## 2729                                       Channel Islands    JG   CHI 1960
## 2730                                       Channel Islands    JG   CHI 1961
## 2731                                       Channel Islands    JG   CHI 1962
## 2732                                       Channel Islands    JG   CHI 1963
## 2733                                       Channel Islands    JG   CHI 1964
## 2734                                       Channel Islands    JG   CHI 1965
## 2735                                       Channel Islands    JG   CHI 1966
## 2736                                       Channel Islands    JG   CHI 1967
## 2737                                       Channel Islands    JG   CHI 1968
## 2738                                       Channel Islands    JG   CHI 1969
## 2739                                       Channel Islands    JG   CHI 1970
## 2740                                       Channel Islands    JG   CHI 1971
## 2741                                       Channel Islands    JG   CHI 1972
## 2742                                       Channel Islands    JG   CHI 1973
## 2743                                       Channel Islands    JG   CHI 1974
## 2744                                       Channel Islands    JG   CHI 1975
## 2745                                       Channel Islands    JG   CHI 1976
## 2746                                       Channel Islands    JG   CHI 1977
## 2747                                       Channel Islands    JG   CHI 1978
## 2748                                       Channel Islands    JG   CHI 1979
## 2749                                       Channel Islands    JG   CHI 1980
## 2750                                       Channel Islands    JG   CHI 1981
## 2751                                       Channel Islands    JG   CHI 1982
## 2752                                       Channel Islands    JG   CHI 1983
## 2753                                       Channel Islands    JG   CHI 1984
## 2754                                       Channel Islands    JG   CHI 1985
## 2755                                       Channel Islands    JG   CHI 1986
## 2756                                       Channel Islands    JG   CHI 1987
## 2757                                       Channel Islands    JG   CHI 1988
## 2758                                       Channel Islands    JG   CHI 1989
## 2759                                       Channel Islands    JG   CHI 1990
## 2760                                       Channel Islands    JG   CHI 1991
## 2761                                       Channel Islands    JG   CHI 1992
## 2762                                       Channel Islands    JG   CHI 1993
## 2763                                       Channel Islands    JG   CHI 1994
## 2764                                       Channel Islands    JG   CHI 1995
## 2765                                       Channel Islands    JG   CHI 1996
## 2766                                       Channel Islands    JG   CHI 1997
## 2767                                       Channel Islands    JG   CHI 1998
## 2768                                       Channel Islands    JG   CHI 1999
## 2769                                       Channel Islands    JG   CHI 2000
## 2770                                       Channel Islands    JG   CHI 2001
## 2771                                       Channel Islands    JG   CHI 2002
## 2772                                       Channel Islands    JG   CHI 2003
## 2773                                       Channel Islands    JG   CHI 2004
## 2774                                       Channel Islands    JG   CHI 2005
## 2775                                       Channel Islands    JG   CHI 2006
## 2776                                       Channel Islands    JG   CHI 2007
## 2777                                       Channel Islands    JG   CHI 2008
## 2778                                       Channel Islands    JG   CHI 2009
## 2779                                       Channel Islands    JG   CHI 2010
## 2780                                       Channel Islands    JG   CHI 2011
## 2781                                       Channel Islands    JG   CHI 2012
## 2782                                       Channel Islands    JG   CHI 2013
## 2783                                       Channel Islands    JG   CHI 2014
## 2784                                       Channel Islands    JG   CHI 2015
## 2785                                       Channel Islands    JG   CHI 2016
## 2786                                       Channel Islands    JG   CHI 2017
## 2787                                       Channel Islands    JG   CHI 2018
## 2788                                       Channel Islands    JG   CHI 2019
## 2789                                       Channel Islands    JG   CHI 2020
## 2790                                       Channel Islands    JG   CHI 2021
## 2791                                                 Chile    CL   CHL 1960
## 2792                                                 Chile    CL   CHL 1961
## 2793                                                 Chile    CL   CHL 1962
## 2794                                                 Chile    CL   CHL 1963
## 2795                                                 Chile    CL   CHL 1964
## 2796                                                 Chile    CL   CHL 1965
## 2797                                                 Chile    CL   CHL 1966
## 2798                                                 Chile    CL   CHL 1967
## 2799                                                 Chile    CL   CHL 1968
## 2800                                                 Chile    CL   CHL 1969
## 2801                                                 Chile    CL   CHL 1970
## 2802                                                 Chile    CL   CHL 1971
## 2803                                                 Chile    CL   CHL 1972
## 2804                                                 Chile    CL   CHL 1973
## 2805                                                 Chile    CL   CHL 1974
## 2806                                                 Chile    CL   CHL 1975
## 2807                                                 Chile    CL   CHL 1976
## 2808                                                 Chile    CL   CHL 1977
## 2809                                                 Chile    CL   CHL 1978
## 2810                                                 Chile    CL   CHL 1979
## 2811                                                 Chile    CL   CHL 1980
## 2812                                                 Chile    CL   CHL 1981
## 2813                                                 Chile    CL   CHL 1982
## 2814                                                 Chile    CL   CHL 1983
## 2815                                                 Chile    CL   CHL 1984
## 2816                                                 Chile    CL   CHL 1985
## 2817                                                 Chile    CL   CHL 1986
## 2818                                                 Chile    CL   CHL 1987
## 2819                                                 Chile    CL   CHL 1988
## 2820                                                 Chile    CL   CHL 1989
## 2821                                                 Chile    CL   CHL 1990
## 2822                                                 Chile    CL   CHL 1991
## 2823                                                 Chile    CL   CHL 1992
## 2824                                                 Chile    CL   CHL 1993
## 2825                                                 Chile    CL   CHL 1994
## 2826                                                 Chile    CL   CHL 1995
## 2827                                                 Chile    CL   CHL 1996
## 2828                                                 Chile    CL   CHL 1997
## 2829                                                 Chile    CL   CHL 1998
## 2830                                                 Chile    CL   CHL 1999
## 2831                                                 Chile    CL   CHL 2000
## 2832                                                 Chile    CL   CHL 2001
## 2833                                                 Chile    CL   CHL 2002
## 2834                                                 Chile    CL   CHL 2003
## 2835                                                 Chile    CL   CHL 2004
## 2836                                                 Chile    CL   CHL 2005
## 2837                                                 Chile    CL   CHL 2006
## 2838                                                 Chile    CL   CHL 2007
## 2839                                                 Chile    CL   CHL 2008
## 2840                                                 Chile    CL   CHL 2009
## 2841                                                 Chile    CL   CHL 2010
## 2842                                                 Chile    CL   CHL 2011
## 2843                                                 Chile    CL   CHL 2012
## 2844                                                 Chile    CL   CHL 2013
## 2845                                                 Chile    CL   CHL 2014
## 2846                                                 Chile    CL   CHL 2015
## 2847                                                 Chile    CL   CHL 2016
## 2848                                                 Chile    CL   CHL 2017
## 2849                                                 Chile    CL   CHL 2018
## 2850                                                 Chile    CL   CHL 2019
## 2851                                                 Chile    CL   CHL 2020
## 2852                                                 Chile    CL   CHL 2021
## 2853                                                 China    CN   CHN 1960
## 2854                                                 China    CN   CHN 1961
## 2855                                                 China    CN   CHN 1962
## 2856                                                 China    CN   CHN 1963
## 2857                                                 China    CN   CHN 1964
## 2858                                                 China    CN   CHN 1965
## 2859                                                 China    CN   CHN 1966
## 2860                                                 China    CN   CHN 1967
## 2861                                                 China    CN   CHN 1968
## 2862                                                 China    CN   CHN 1969
## 2863                                                 China    CN   CHN 1970
## 2864                                                 China    CN   CHN 1971
## 2865                                                 China    CN   CHN 1972
## 2866                                                 China    CN   CHN 1973
## 2867                                                 China    CN   CHN 1974
## 2868                                                 China    CN   CHN 1975
## 2869                                                 China    CN   CHN 1976
## 2870                                                 China    CN   CHN 1977
## 2871                                                 China    CN   CHN 1978
## 2872                                                 China    CN   CHN 1979
## 2873                                                 China    CN   CHN 1980
## 2874                                                 China    CN   CHN 1981
## 2875                                                 China    CN   CHN 1982
## 2876                                                 China    CN   CHN 1983
## 2877                                                 China    CN   CHN 1984
## 2878                                                 China    CN   CHN 1985
## 2879                                                 China    CN   CHN 1986
## 2880                                                 China    CN   CHN 1987
## 2881                                                 China    CN   CHN 1988
## 2882                                                 China    CN   CHN 1989
## 2883                                                 China    CN   CHN 1990
## 2884                                                 China    CN   CHN 1991
## 2885                                                 China    CN   CHN 1992
## 2886                                                 China    CN   CHN 1993
## 2887                                                 China    CN   CHN 1994
## 2888                                                 China    CN   CHN 1995
## 2889                                                 China    CN   CHN 1996
## 2890                                                 China    CN   CHN 1997
## 2891                                                 China    CN   CHN 1998
## 2892                                                 China    CN   CHN 1999
## 2893                                                 China    CN   CHN 2000
## 2894                                                 China    CN   CHN 2001
## 2895                                                 China    CN   CHN 2002
## 2896                                                 China    CN   CHN 2003
## 2897                                                 China    CN   CHN 2004
## 2898                                                 China    CN   CHN 2005
## 2899                                                 China    CN   CHN 2006
## 2900                                                 China    CN   CHN 2007
## 2901                                                 China    CN   CHN 2008
## 2902                                                 China    CN   CHN 2009
## 2903                                                 China    CN   CHN 2010
## 2904                                                 China    CN   CHN 2011
## 2905                                                 China    CN   CHN 2012
## 2906                                                 China    CN   CHN 2013
## 2907                                                 China    CN   CHN 2014
## 2908                                                 China    CN   CHN 2015
## 2909                                                 China    CN   CHN 2016
## 2910                                                 China    CN   CHN 2017
## 2911                                                 China    CN   CHN 2018
## 2912                                                 China    CN   CHN 2019
## 2913                                                 China    CN   CHN 2020
## 2914                                                 China    CN   CHN 2021
## 2915                                              Colombia    CO   COL 1960
## 2916                                              Colombia    CO   COL 1961
## 2917                                              Colombia    CO   COL 1962
## 2918                                              Colombia    CO   COL 1963
## 2919                                              Colombia    CO   COL 1964
## 2920                                              Colombia    CO   COL 1965
## 2921                                              Colombia    CO   COL 1966
## 2922                                              Colombia    CO   COL 1967
## 2923                                              Colombia    CO   COL 1968
## 2924                                              Colombia    CO   COL 1969
## 2925                                              Colombia    CO   COL 1970
## 2926                                              Colombia    CO   COL 1971
## 2927                                              Colombia    CO   COL 1972
## 2928                                              Colombia    CO   COL 1973
## 2929                                              Colombia    CO   COL 1974
## 2930                                              Colombia    CO   COL 1975
## 2931                                              Colombia    CO   COL 1976
## 2932                                              Colombia    CO   COL 1977
## 2933                                              Colombia    CO   COL 1978
## 2934                                              Colombia    CO   COL 1979
## 2935                                              Colombia    CO   COL 1980
## 2936                                              Colombia    CO   COL 1981
## 2937                                              Colombia    CO   COL 1982
## 2938                                              Colombia    CO   COL 1983
## 2939                                              Colombia    CO   COL 1984
## 2940                                              Colombia    CO   COL 1985
## 2941                                              Colombia    CO   COL 1986
## 2942                                              Colombia    CO   COL 1987
## 2943                                              Colombia    CO   COL 1988
## 2944                                              Colombia    CO   COL 1989
## 2945                                              Colombia    CO   COL 1990
## 2946                                              Colombia    CO   COL 1991
## 2947                                              Colombia    CO   COL 1992
## 2948                                              Colombia    CO   COL 1993
## 2949                                              Colombia    CO   COL 1994
## 2950                                              Colombia    CO   COL 1995
## 2951                                              Colombia    CO   COL 1996
## 2952                                              Colombia    CO   COL 1997
## 2953                                              Colombia    CO   COL 1998
## 2954                                              Colombia    CO   COL 1999
## 2955                                              Colombia    CO   COL 2000
## 2956                                              Colombia    CO   COL 2001
## 2957                                              Colombia    CO   COL 2002
## 2958                                              Colombia    CO   COL 2003
## 2959                                              Colombia    CO   COL 2004
## 2960                                              Colombia    CO   COL 2005
## 2961                                              Colombia    CO   COL 2006
## 2962                                              Colombia    CO   COL 2007
## 2963                                              Colombia    CO   COL 2008
## 2964                                              Colombia    CO   COL 2009
## 2965                                              Colombia    CO   COL 2010
## 2966                                              Colombia    CO   COL 2011
## 2967                                              Colombia    CO   COL 2012
## 2968                                              Colombia    CO   COL 2013
## 2969                                              Colombia    CO   COL 2014
## 2970                                              Colombia    CO   COL 2015
## 2971                                              Colombia    CO   COL 2016
## 2972                                              Colombia    CO   COL 2017
## 2973                                              Colombia    CO   COL 2018
## 2974                                              Colombia    CO   COL 2019
## 2975                                              Colombia    CO   COL 2020
## 2976                                              Colombia    CO   COL 2021
## 2977                                               Comoros    KM   COM 1960
## 2978                                               Comoros    KM   COM 1961
## 2979                                               Comoros    KM   COM 1962
## 2980                                               Comoros    KM   COM 1963
## 2981                                               Comoros    KM   COM 1964
## 2982                                               Comoros    KM   COM 1965
## 2983                                               Comoros    KM   COM 1966
## 2984                                               Comoros    KM   COM 1967
## 2985                                               Comoros    KM   COM 1968
## 2986                                               Comoros    KM   COM 1969
## 2987                                               Comoros    KM   COM 1970
## 2988                                               Comoros    KM   COM 1971
## 2989                                               Comoros    KM   COM 1972
## 2990                                               Comoros    KM   COM 1973
## 2991                                               Comoros    KM   COM 1974
## 2992                                               Comoros    KM   COM 1975
## 2993                                               Comoros    KM   COM 1976
## 2994                                               Comoros    KM   COM 1977
## 2995                                               Comoros    KM   COM 1978
## 2996                                               Comoros    KM   COM 1979
## 2997                                               Comoros    KM   COM 1980
## 2998                                               Comoros    KM   COM 1981
## 2999                                               Comoros    KM   COM 1982
## 3000                                               Comoros    KM   COM 1983
## 3001                                               Comoros    KM   COM 1984
## 3002                                               Comoros    KM   COM 1985
## 3003                                               Comoros    KM   COM 1986
## 3004                                               Comoros    KM   COM 1987
## 3005                                               Comoros    KM   COM 1988
## 3006                                               Comoros    KM   COM 1989
## 3007                                               Comoros    KM   COM 1990
## 3008                                               Comoros    KM   COM 1991
## 3009                                               Comoros    KM   COM 1992
## 3010                                               Comoros    KM   COM 1993
## 3011                                               Comoros    KM   COM 1994
## 3012                                               Comoros    KM   COM 1995
## 3013                                               Comoros    KM   COM 1996
## 3014                                               Comoros    KM   COM 1997
## 3015                                               Comoros    KM   COM 1998
## 3016                                               Comoros    KM   COM 1999
## 3017                                               Comoros    KM   COM 2000
## 3018                                               Comoros    KM   COM 2001
## 3019                                               Comoros    KM   COM 2002
## 3020                                               Comoros    KM   COM 2003
## 3021                                               Comoros    KM   COM 2004
## 3022                                               Comoros    KM   COM 2005
## 3023                                               Comoros    KM   COM 2006
## 3024                                               Comoros    KM   COM 2007
## 3025                                               Comoros    KM   COM 2008
## 3026                                               Comoros    KM   COM 2009
## 3027                                               Comoros    KM   COM 2010
## 3028                                               Comoros    KM   COM 2011
## 3029                                               Comoros    KM   COM 2012
## 3030                                               Comoros    KM   COM 2013
## 3031                                               Comoros    KM   COM 2014
## 3032                                               Comoros    KM   COM 2015
## 3033                                               Comoros    KM   COM 2016
## 3034                                               Comoros    KM   COM 2017
## 3035                                               Comoros    KM   COM 2018
## 3036                                               Comoros    KM   COM 2019
## 3037                                               Comoros    KM   COM 2020
## 3038                                               Comoros    KM   COM 2021
## 3039                                      Congo, Dem. Rep.    CD   COD 1960
## 3040                                      Congo, Dem. Rep.    CD   COD 1961
## 3041                                      Congo, Dem. Rep.    CD   COD 1962
## 3042                                      Congo, Dem. Rep.    CD   COD 1963
## 3043                                      Congo, Dem. Rep.    CD   COD 1964
## 3044                                      Congo, Dem. Rep.    CD   COD 1965
## 3045                                      Congo, Dem. Rep.    CD   COD 1966
## 3046                                      Congo, Dem. Rep.    CD   COD 1967
## 3047                                      Congo, Dem. Rep.    CD   COD 1968
## 3048                                      Congo, Dem. Rep.    CD   COD 1969
## 3049                                      Congo, Dem. Rep.    CD   COD 1970
## 3050                                      Congo, Dem. Rep.    CD   COD 1971
## 3051                                      Congo, Dem. Rep.    CD   COD 1972
## 3052                                      Congo, Dem. Rep.    CD   COD 1973
## 3053                                      Congo, Dem. Rep.    CD   COD 1974
## 3054                                      Congo, Dem. Rep.    CD   COD 1975
## 3055                                      Congo, Dem. Rep.    CD   COD 1976
## 3056                                      Congo, Dem. Rep.    CD   COD 1977
## 3057                                      Congo, Dem. Rep.    CD   COD 1978
## 3058                                      Congo, Dem. Rep.    CD   COD 1979
## 3059                                      Congo, Dem. Rep.    CD   COD 1980
## 3060                                      Congo, Dem. Rep.    CD   COD 1981
## 3061                                      Congo, Dem. Rep.    CD   COD 1982
## 3062                                      Congo, Dem. Rep.    CD   COD 1983
## 3063                                      Congo, Dem. Rep.    CD   COD 1984
## 3064                                      Congo, Dem. Rep.    CD   COD 1985
## 3065                                      Congo, Dem. Rep.    CD   COD 1986
## 3066                                      Congo, Dem. Rep.    CD   COD 1987
## 3067                                      Congo, Dem. Rep.    CD   COD 1988
## 3068                                      Congo, Dem. Rep.    CD   COD 1989
## 3069                                      Congo, Dem. Rep.    CD   COD 1990
## 3070                                      Congo, Dem. Rep.    CD   COD 1991
## 3071                                      Congo, Dem. Rep.    CD   COD 1992
## 3072                                      Congo, Dem. Rep.    CD   COD 1993
## 3073                                      Congo, Dem. Rep.    CD   COD 1994
## 3074                                      Congo, Dem. Rep.    CD   COD 1995
## 3075                                      Congo, Dem. Rep.    CD   COD 1996
## 3076                                      Congo, Dem. Rep.    CD   COD 1997
## 3077                                      Congo, Dem. Rep.    CD   COD 1998
## 3078                                      Congo, Dem. Rep.    CD   COD 1999
## 3079                                      Congo, Dem. Rep.    CD   COD 2000
## 3080                                      Congo, Dem. Rep.    CD   COD 2001
## 3081                                      Congo, Dem. Rep.    CD   COD 2002
## 3082                                      Congo, Dem. Rep.    CD   COD 2003
## 3083                                      Congo, Dem. Rep.    CD   COD 2004
## 3084                                      Congo, Dem. Rep.    CD   COD 2005
## 3085                                      Congo, Dem. Rep.    CD   COD 2006
## 3086                                      Congo, Dem. Rep.    CD   COD 2007
## 3087                                      Congo, Dem. Rep.    CD   COD 2008
## 3088                                      Congo, Dem. Rep.    CD   COD 2009
## 3089                                      Congo, Dem. Rep.    CD   COD 2010
## 3090                                      Congo, Dem. Rep.    CD   COD 2011
## 3091                                      Congo, Dem. Rep.    CD   COD 2012
## 3092                                      Congo, Dem. Rep.    CD   COD 2013
## 3093                                      Congo, Dem. Rep.    CD   COD 2014
## 3094                                      Congo, Dem. Rep.    CD   COD 2015
## 3095                                      Congo, Dem. Rep.    CD   COD 2016
## 3096                                      Congo, Dem. Rep.    CD   COD 2017
## 3097                                      Congo, Dem. Rep.    CD   COD 2018
## 3098                                      Congo, Dem. Rep.    CD   COD 2019
## 3099                                      Congo, Dem. Rep.    CD   COD 2020
## 3100                                      Congo, Dem. Rep.    CD   COD 2021
## 3101                                           Congo, Rep.    CG   COG 1960
## 3102                                           Congo, Rep.    CG   COG 1961
## 3103                                           Congo, Rep.    CG   COG 1962
## 3104                                           Congo, Rep.    CG   COG 1963
## 3105                                           Congo, Rep.    CG   COG 1964
## 3106                                           Congo, Rep.    CG   COG 1965
## 3107                                           Congo, Rep.    CG   COG 1966
## 3108                                           Congo, Rep.    CG   COG 1967
## 3109                                           Congo, Rep.    CG   COG 1968
## 3110                                           Congo, Rep.    CG   COG 1969
## 3111                                           Congo, Rep.    CG   COG 1970
## 3112                                           Congo, Rep.    CG   COG 1971
## 3113                                           Congo, Rep.    CG   COG 1972
## 3114                                           Congo, Rep.    CG   COG 1973
## 3115                                           Congo, Rep.    CG   COG 1974
## 3116                                           Congo, Rep.    CG   COG 1975
## 3117                                           Congo, Rep.    CG   COG 1976
## 3118                                           Congo, Rep.    CG   COG 1977
## 3119                                           Congo, Rep.    CG   COG 1978
## 3120                                           Congo, Rep.    CG   COG 1979
## 3121                                           Congo, Rep.    CG   COG 1980
## 3122                                           Congo, Rep.    CG   COG 1981
## 3123                                           Congo, Rep.    CG   COG 1982
## 3124                                           Congo, Rep.    CG   COG 1983
## 3125                                           Congo, Rep.    CG   COG 1984
## 3126                                           Congo, Rep.    CG   COG 1985
## 3127                                           Congo, Rep.    CG   COG 1986
## 3128                                           Congo, Rep.    CG   COG 1987
## 3129                                           Congo, Rep.    CG   COG 1988
## 3130                                           Congo, Rep.    CG   COG 1989
## 3131                                           Congo, Rep.    CG   COG 1990
## 3132                                           Congo, Rep.    CG   COG 1991
## 3133                                           Congo, Rep.    CG   COG 1992
## 3134                                           Congo, Rep.    CG   COG 1993
## 3135                                           Congo, Rep.    CG   COG 1994
## 3136                                           Congo, Rep.    CG   COG 1995
## 3137                                           Congo, Rep.    CG   COG 1996
## 3138                                           Congo, Rep.    CG   COG 1997
## 3139                                           Congo, Rep.    CG   COG 1998
## 3140                                           Congo, Rep.    CG   COG 1999
## 3141                                           Congo, Rep.    CG   COG 2000
## 3142                                           Congo, Rep.    CG   COG 2001
## 3143                                           Congo, Rep.    CG   COG 2002
## 3144                                           Congo, Rep.    CG   COG 2003
## 3145                                           Congo, Rep.    CG   COG 2004
## 3146                                           Congo, Rep.    CG   COG 2005
## 3147                                           Congo, Rep.    CG   COG 2006
## 3148                                           Congo, Rep.    CG   COG 2007
## 3149                                           Congo, Rep.    CG   COG 2008
## 3150                                           Congo, Rep.    CG   COG 2009
## 3151                                           Congo, Rep.    CG   COG 2010
## 3152                                           Congo, Rep.    CG   COG 2011
## 3153                                           Congo, Rep.    CG   COG 2012
## 3154                                           Congo, Rep.    CG   COG 2013
## 3155                                           Congo, Rep.    CG   COG 2014
## 3156                                           Congo, Rep.    CG   COG 2015
## 3157                                           Congo, Rep.    CG   COG 2016
## 3158                                           Congo, Rep.    CG   COG 2017
## 3159                                           Congo, Rep.    CG   COG 2018
## 3160                                           Congo, Rep.    CG   COG 2019
## 3161                                           Congo, Rep.    CG   COG 2020
## 3162                                           Congo, Rep.    CG   COG 2021
## 3163                                            Costa Rica    CR   CRI 1960
## 3164                                            Costa Rica    CR   CRI 1961
## 3165                                            Costa Rica    CR   CRI 1962
## 3166                                            Costa Rica    CR   CRI 1963
## 3167                                            Costa Rica    CR   CRI 1964
## 3168                                            Costa Rica    CR   CRI 1965
## 3169                                            Costa Rica    CR   CRI 1966
## 3170                                            Costa Rica    CR   CRI 1967
## 3171                                            Costa Rica    CR   CRI 1968
## 3172                                            Costa Rica    CR   CRI 1969
## 3173                                            Costa Rica    CR   CRI 1970
## 3174                                            Costa Rica    CR   CRI 1971
## 3175                                            Costa Rica    CR   CRI 1972
## 3176                                            Costa Rica    CR   CRI 1973
## 3177                                            Costa Rica    CR   CRI 1974
## 3178                                            Costa Rica    CR   CRI 1975
## 3179                                            Costa Rica    CR   CRI 1976
## 3180                                            Costa Rica    CR   CRI 1977
## 3181                                            Costa Rica    CR   CRI 1978
## 3182                                            Costa Rica    CR   CRI 1979
## 3183                                            Costa Rica    CR   CRI 1980
## 3184                                            Costa Rica    CR   CRI 1981
## 3185                                            Costa Rica    CR   CRI 1982
## 3186                                            Costa Rica    CR   CRI 1983
## 3187                                            Costa Rica    CR   CRI 1984
## 3188                                            Costa Rica    CR   CRI 1985
## 3189                                            Costa Rica    CR   CRI 1986
## 3190                                            Costa Rica    CR   CRI 1987
## 3191                                            Costa Rica    CR   CRI 1988
## 3192                                            Costa Rica    CR   CRI 1989
## 3193                                            Costa Rica    CR   CRI 1990
## 3194                                            Costa Rica    CR   CRI 1991
## 3195                                            Costa Rica    CR   CRI 1992
## 3196                                            Costa Rica    CR   CRI 1993
## 3197                                            Costa Rica    CR   CRI 1994
## 3198                                            Costa Rica    CR   CRI 1995
## 3199                                            Costa Rica    CR   CRI 1996
## 3200                                            Costa Rica    CR   CRI 1997
## 3201                                            Costa Rica    CR   CRI 1998
## 3202                                            Costa Rica    CR   CRI 1999
## 3203                                            Costa Rica    CR   CRI 2000
## 3204                                            Costa Rica    CR   CRI 2001
## 3205                                            Costa Rica    CR   CRI 2002
## 3206                                            Costa Rica    CR   CRI 2003
## 3207                                            Costa Rica    CR   CRI 2004
## 3208                                            Costa Rica    CR   CRI 2005
## 3209                                            Costa Rica    CR   CRI 2006
## 3210                                            Costa Rica    CR   CRI 2007
## 3211                                            Costa Rica    CR   CRI 2008
## 3212                                            Costa Rica    CR   CRI 2009
## 3213                                            Costa Rica    CR   CRI 2010
## 3214                                            Costa Rica    CR   CRI 2011
## 3215                                            Costa Rica    CR   CRI 2012
## 3216                                            Costa Rica    CR   CRI 2013
## 3217                                            Costa Rica    CR   CRI 2014
## 3218                                            Costa Rica    CR   CRI 2015
## 3219                                            Costa Rica    CR   CRI 2016
## 3220                                            Costa Rica    CR   CRI 2017
## 3221                                            Costa Rica    CR   CRI 2018
## 3222                                            Costa Rica    CR   CRI 2019
## 3223                                            Costa Rica    CR   CRI 2020
## 3224                                            Costa Rica    CR   CRI 2021
## 3225                                         Cote d'Ivoire    CI   CIV 1960
## 3226                                         Cote d'Ivoire    CI   CIV 1961
## 3227                                         Cote d'Ivoire    CI   CIV 1962
## 3228                                         Cote d'Ivoire    CI   CIV 1963
## 3229                                         Cote d'Ivoire    CI   CIV 1964
## 3230                                         Cote d'Ivoire    CI   CIV 1965
## 3231                                         Cote d'Ivoire    CI   CIV 1966
## 3232                                         Cote d'Ivoire    CI   CIV 1967
## 3233                                         Cote d'Ivoire    CI   CIV 1968
## 3234                                         Cote d'Ivoire    CI   CIV 1969
## 3235                                         Cote d'Ivoire    CI   CIV 1970
## 3236                                         Cote d'Ivoire    CI   CIV 1971
## 3237                                         Cote d'Ivoire    CI   CIV 1972
## 3238                                         Cote d'Ivoire    CI   CIV 1973
## 3239                                         Cote d'Ivoire    CI   CIV 1974
## 3240                                         Cote d'Ivoire    CI   CIV 1975
## 3241                                         Cote d'Ivoire    CI   CIV 1976
## 3242                                         Cote d'Ivoire    CI   CIV 1977
## 3243                                         Cote d'Ivoire    CI   CIV 1978
## 3244                                         Cote d'Ivoire    CI   CIV 1979
## 3245                                         Cote d'Ivoire    CI   CIV 1980
## 3246                                         Cote d'Ivoire    CI   CIV 1981
## 3247                                         Cote d'Ivoire    CI   CIV 1982
## 3248                                         Cote d'Ivoire    CI   CIV 1983
## 3249                                         Cote d'Ivoire    CI   CIV 1984
## 3250                                         Cote d'Ivoire    CI   CIV 1985
## 3251                                         Cote d'Ivoire    CI   CIV 1986
## 3252                                         Cote d'Ivoire    CI   CIV 1987
## 3253                                         Cote d'Ivoire    CI   CIV 1988
## 3254                                         Cote d'Ivoire    CI   CIV 1989
## 3255                                         Cote d'Ivoire    CI   CIV 1990
## 3256                                         Cote d'Ivoire    CI   CIV 1991
## 3257                                         Cote d'Ivoire    CI   CIV 1992
## 3258                                         Cote d'Ivoire    CI   CIV 1993
## 3259                                         Cote d'Ivoire    CI   CIV 1994
## 3260                                         Cote d'Ivoire    CI   CIV 1995
## 3261                                         Cote d'Ivoire    CI   CIV 1996
## 3262                                         Cote d'Ivoire    CI   CIV 1997
## 3263                                         Cote d'Ivoire    CI   CIV 1998
## 3264                                         Cote d'Ivoire    CI   CIV 1999
## 3265                                         Cote d'Ivoire    CI   CIV 2000
## 3266                                         Cote d'Ivoire    CI   CIV 2001
## 3267                                         Cote d'Ivoire    CI   CIV 2002
## 3268                                         Cote d'Ivoire    CI   CIV 2003
## 3269                                         Cote d'Ivoire    CI   CIV 2004
## 3270                                         Cote d'Ivoire    CI   CIV 2005
## 3271                                         Cote d'Ivoire    CI   CIV 2006
## 3272                                         Cote d'Ivoire    CI   CIV 2007
## 3273                                         Cote d'Ivoire    CI   CIV 2008
## 3274                                         Cote d'Ivoire    CI   CIV 2009
## 3275                                         Cote d'Ivoire    CI   CIV 2010
## 3276                                         Cote d'Ivoire    CI   CIV 2011
## 3277                                         Cote d'Ivoire    CI   CIV 2012
## 3278                                         Cote d'Ivoire    CI   CIV 2013
## 3279                                         Cote d'Ivoire    CI   CIV 2014
## 3280                                         Cote d'Ivoire    CI   CIV 2015
## 3281                                         Cote d'Ivoire    CI   CIV 2016
## 3282                                         Cote d'Ivoire    CI   CIV 2017
## 3283                                         Cote d'Ivoire    CI   CIV 2018
## 3284                                         Cote d'Ivoire    CI   CIV 2019
## 3285                                         Cote d'Ivoire    CI   CIV 2020
## 3286                                         Cote d'Ivoire    CI   CIV 2021
## 3287                                               Croatia    HR   HRV 1960
## 3288                                               Croatia    HR   HRV 1961
## 3289                                               Croatia    HR   HRV 1962
## 3290                                               Croatia    HR   HRV 1963
## 3291                                               Croatia    HR   HRV 1964
## 3292                                               Croatia    HR   HRV 1965
## 3293                                               Croatia    HR   HRV 1966
## 3294                                               Croatia    HR   HRV 1967
## 3295                                               Croatia    HR   HRV 1968
## 3296                                               Croatia    HR   HRV 1969
## 3297                                               Croatia    HR   HRV 1970
## 3298                                               Croatia    HR   HRV 1971
## 3299                                               Croatia    HR   HRV 1972
## 3300                                               Croatia    HR   HRV 1973
## 3301                                               Croatia    HR   HRV 1974
## 3302                                               Croatia    HR   HRV 1975
## 3303                                               Croatia    HR   HRV 1976
## 3304                                               Croatia    HR   HRV 1977
## 3305                                               Croatia    HR   HRV 1978
## 3306                                               Croatia    HR   HRV 1979
## 3307                                               Croatia    HR   HRV 1980
## 3308                                               Croatia    HR   HRV 1981
## 3309                                               Croatia    HR   HRV 1982
## 3310                                               Croatia    HR   HRV 1983
## 3311                                               Croatia    HR   HRV 1984
## 3312                                               Croatia    HR   HRV 1985
## 3313                                               Croatia    HR   HRV 1986
## 3314                                               Croatia    HR   HRV 1987
## 3315                                               Croatia    HR   HRV 1988
## 3316                                               Croatia    HR   HRV 1989
## 3317                                               Croatia    HR   HRV 1990
## 3318                                               Croatia    HR   HRV 1991
## 3319                                               Croatia    HR   HRV 1992
## 3320                                               Croatia    HR   HRV 1993
## 3321                                               Croatia    HR   HRV 1994
## 3322                                               Croatia    HR   HRV 1995
## 3323                                               Croatia    HR   HRV 1996
## 3324                                               Croatia    HR   HRV 1997
## 3325                                               Croatia    HR   HRV 1998
## 3326                                               Croatia    HR   HRV 1999
## 3327                                               Croatia    HR   HRV 2000
## 3328                                               Croatia    HR   HRV 2001
## 3329                                               Croatia    HR   HRV 2002
## 3330                                               Croatia    HR   HRV 2003
## 3331                                               Croatia    HR   HRV 2004
## 3332                                               Croatia    HR   HRV 2005
## 3333                                               Croatia    HR   HRV 2006
## 3334                                               Croatia    HR   HRV 2007
## 3335                                               Croatia    HR   HRV 2008
## 3336                                               Croatia    HR   HRV 2009
## 3337                                               Croatia    HR   HRV 2010
## 3338                                               Croatia    HR   HRV 2011
## 3339                                               Croatia    HR   HRV 2012
## 3340                                               Croatia    HR   HRV 2013
## 3341                                               Croatia    HR   HRV 2014
## 3342                                               Croatia    HR   HRV 2015
## 3343                                               Croatia    HR   HRV 2016
## 3344                                               Croatia    HR   HRV 2017
## 3345                                               Croatia    HR   HRV 2018
## 3346                                               Croatia    HR   HRV 2019
## 3347                                               Croatia    HR   HRV 2020
## 3348                                               Croatia    HR   HRV 2021
## 3349                                                  Cuba    CU   CUB 1960
## 3350                                                  Cuba    CU   CUB 1961
## 3351                                                  Cuba    CU   CUB 1962
## 3352                                                  Cuba    CU   CUB 1963
## 3353                                                  Cuba    CU   CUB 1964
## 3354                                                  Cuba    CU   CUB 1965
## 3355                                                  Cuba    CU   CUB 1966
## 3356                                                  Cuba    CU   CUB 1967
## 3357                                                  Cuba    CU   CUB 1968
## 3358                                                  Cuba    CU   CUB 1969
## 3359                                                  Cuba    CU   CUB 1970
## 3360                                                  Cuba    CU   CUB 1971
## 3361                                                  Cuba    CU   CUB 1972
## 3362                                                  Cuba    CU   CUB 1973
## 3363                                                  Cuba    CU   CUB 1974
## 3364                                                  Cuba    CU   CUB 1975
## 3365                                                  Cuba    CU   CUB 1976
## 3366                                                  Cuba    CU   CUB 1977
## 3367                                                  Cuba    CU   CUB 1978
## 3368                                                  Cuba    CU   CUB 1979
## 3369                                                  Cuba    CU   CUB 1980
## 3370                                                  Cuba    CU   CUB 1981
## 3371                                                  Cuba    CU   CUB 1982
## 3372                                                  Cuba    CU   CUB 1983
## 3373                                                  Cuba    CU   CUB 1984
## 3374                                                  Cuba    CU   CUB 1985
## 3375                                                  Cuba    CU   CUB 1986
## 3376                                                  Cuba    CU   CUB 1987
## 3377                                                  Cuba    CU   CUB 1988
## 3378                                                  Cuba    CU   CUB 1989
## 3379                                                  Cuba    CU   CUB 1990
## 3380                                                  Cuba    CU   CUB 1991
## 3381                                                  Cuba    CU   CUB 1992
## 3382                                                  Cuba    CU   CUB 1993
## 3383                                                  Cuba    CU   CUB 1994
## 3384                                                  Cuba    CU   CUB 1995
## 3385                                                  Cuba    CU   CUB 1996
## 3386                                                  Cuba    CU   CUB 1997
## 3387                                                  Cuba    CU   CUB 1998
## 3388                                                  Cuba    CU   CUB 1999
## 3389                                                  Cuba    CU   CUB 2000
## 3390                                                  Cuba    CU   CUB 2001
## 3391                                                  Cuba    CU   CUB 2002
## 3392                                                  Cuba    CU   CUB 2003
## 3393                                                  Cuba    CU   CUB 2004
## 3394                                                  Cuba    CU   CUB 2005
## 3395                                                  Cuba    CU   CUB 2006
## 3396                                                  Cuba    CU   CUB 2007
## 3397                                                  Cuba    CU   CUB 2008
## 3398                                                  Cuba    CU   CUB 2009
## 3399                                                  Cuba    CU   CUB 2010
## 3400                                                  Cuba    CU   CUB 2011
## 3401                                                  Cuba    CU   CUB 2012
## 3402                                                  Cuba    CU   CUB 2013
## 3403                                                  Cuba    CU   CUB 2014
## 3404                                                  Cuba    CU   CUB 2015
## 3405                                                  Cuba    CU   CUB 2016
## 3406                                                  Cuba    CU   CUB 2017
## 3407                                                  Cuba    CU   CUB 2018
## 3408                                                  Cuba    CU   CUB 2019
## 3409                                                  Cuba    CU   CUB 2020
## 3410                                                  Cuba    CU   CUB 2021
## 3411                                               Curacao    CW   CUW 1960
## 3412                                               Curacao    CW   CUW 1961
## 3413                                               Curacao    CW   CUW 1962
## 3414                                               Curacao    CW   CUW 1963
## 3415                                               Curacao    CW   CUW 1964
## 3416                                               Curacao    CW   CUW 1965
## 3417                                               Curacao    CW   CUW 1966
## 3418                                               Curacao    CW   CUW 1967
## 3419                                               Curacao    CW   CUW 1968
## 3420                                               Curacao    CW   CUW 1969
## 3421                                               Curacao    CW   CUW 1970
## 3422                                               Curacao    CW   CUW 1971
## 3423                                               Curacao    CW   CUW 1972
## 3424                                               Curacao    CW   CUW 1973
## 3425                                               Curacao    CW   CUW 1974
## 3426                                               Curacao    CW   CUW 1975
## 3427                                               Curacao    CW   CUW 1976
## 3428                                               Curacao    CW   CUW 1977
## 3429                                               Curacao    CW   CUW 1978
## 3430                                               Curacao    CW   CUW 1979
## 3431                                               Curacao    CW   CUW 1980
## 3432                                               Curacao    CW   CUW 1981
## 3433                                               Curacao    CW   CUW 1982
## 3434                                               Curacao    CW   CUW 1983
## 3435                                               Curacao    CW   CUW 1984
## 3436                                               Curacao    CW   CUW 1985
## 3437                                               Curacao    CW   CUW 1986
## 3438                                               Curacao    CW   CUW 1987
## 3439                                               Curacao    CW   CUW 1988
## 3440                                               Curacao    CW   CUW 1989
## 3441                                               Curacao    CW   CUW 1990
## 3442                                               Curacao    CW   CUW 1991
## 3443                                               Curacao    CW   CUW 1992
## 3444                                               Curacao    CW   CUW 1993
## 3445                                               Curacao    CW   CUW 1994
## 3446                                               Curacao    CW   CUW 1995
## 3447                                               Curacao    CW   CUW 1996
## 3448                                               Curacao    CW   CUW 1997
## 3449                                               Curacao    CW   CUW 1998
## 3450                                               Curacao    CW   CUW 1999
## 3451                                               Curacao    CW   CUW 2000
## 3452                                               Curacao    CW   CUW 2001
## 3453                                               Curacao    CW   CUW 2002
## 3454                                               Curacao    CW   CUW 2003
## 3455                                               Curacao    CW   CUW 2004
## 3456                                               Curacao    CW   CUW 2005
## 3457                                               Curacao    CW   CUW 2006
## 3458                                               Curacao    CW   CUW 2007
## 3459                                               Curacao    CW   CUW 2008
## 3460                                               Curacao    CW   CUW 2009
## 3461                                               Curacao    CW   CUW 2010
## 3462                                               Curacao    CW   CUW 2011
## 3463                                               Curacao    CW   CUW 2012
## 3464                                               Curacao    CW   CUW 2013
## 3465                                               Curacao    CW   CUW 2014
## 3466                                               Curacao    CW   CUW 2015
## 3467                                               Curacao    CW   CUW 2016
## 3468                                               Curacao    CW   CUW 2017
## 3469                                               Curacao    CW   CUW 2018
## 3470                                               Curacao    CW   CUW 2019
## 3471                                               Curacao    CW   CUW 2020
## 3472                                               Curacao    CW   CUW 2021
## 3473                                                Cyprus    CY   CYP 1960
## 3474                                                Cyprus    CY   CYP 1961
## 3475                                                Cyprus    CY   CYP 1962
## 3476                                                Cyprus    CY   CYP 1963
## 3477                                                Cyprus    CY   CYP 1964
## 3478                                                Cyprus    CY   CYP 1965
## 3479                                                Cyprus    CY   CYP 1966
## 3480                                                Cyprus    CY   CYP 1967
## 3481                                                Cyprus    CY   CYP 1968
## 3482                                                Cyprus    CY   CYP 1969
## 3483                                                Cyprus    CY   CYP 1970
## 3484                                                Cyprus    CY   CYP 1971
## 3485                                                Cyprus    CY   CYP 1972
## 3486                                                Cyprus    CY   CYP 1973
## 3487                                                Cyprus    CY   CYP 1974
## 3488                                                Cyprus    CY   CYP 1975
## 3489                                                Cyprus    CY   CYP 1976
## 3490                                                Cyprus    CY   CYP 1977
## 3491                                                Cyprus    CY   CYP 1978
## 3492                                                Cyprus    CY   CYP 1979
## 3493                                                Cyprus    CY   CYP 1980
## 3494                                                Cyprus    CY   CYP 1981
## 3495                                                Cyprus    CY   CYP 1982
## 3496                                                Cyprus    CY   CYP 1983
## 3497                                                Cyprus    CY   CYP 1984
## 3498                                                Cyprus    CY   CYP 1985
## 3499                                                Cyprus    CY   CYP 1986
## 3500                                                Cyprus    CY   CYP 1987
## 3501                                                Cyprus    CY   CYP 1988
## 3502                                                Cyprus    CY   CYP 1989
## 3503                                                Cyprus    CY   CYP 1990
## 3504                                                Cyprus    CY   CYP 1991
## 3505                                                Cyprus    CY   CYP 1992
## 3506                                                Cyprus    CY   CYP 1993
## 3507                                                Cyprus    CY   CYP 1994
## 3508                                                Cyprus    CY   CYP 1995
## 3509                                                Cyprus    CY   CYP 1996
## 3510                                                Cyprus    CY   CYP 1997
## 3511                                                Cyprus    CY   CYP 1998
## 3512                                                Cyprus    CY   CYP 1999
## 3513                                                Cyprus    CY   CYP 2000
## 3514                                                Cyprus    CY   CYP 2001
## 3515                                                Cyprus    CY   CYP 2002
## 3516                                                Cyprus    CY   CYP 2003
## 3517                                                Cyprus    CY   CYP 2004
## 3518                                                Cyprus    CY   CYP 2005
## 3519                                                Cyprus    CY   CYP 2006
## 3520                                                Cyprus    CY   CYP 2007
## 3521                                                Cyprus    CY   CYP 2008
## 3522                                                Cyprus    CY   CYP 2009
## 3523                                                Cyprus    CY   CYP 2010
## 3524                                                Cyprus    CY   CYP 2011
## 3525                                                Cyprus    CY   CYP 2012
## 3526                                                Cyprus    CY   CYP 2013
## 3527                                                Cyprus    CY   CYP 2014
## 3528                                                Cyprus    CY   CYP 2015
## 3529                                                Cyprus    CY   CYP 2016
## 3530                                                Cyprus    CY   CYP 2017
## 3531                                                Cyprus    CY   CYP 2018
## 3532                                                Cyprus    CY   CYP 2019
## 3533                                                Cyprus    CY   CYP 2020
## 3534                                                Cyprus    CY   CYP 2021
## 3535                                               Czechia    CZ   CZE 1960
## 3536                                               Czechia    CZ   CZE 1961
## 3537                                               Czechia    CZ   CZE 1962
## 3538                                               Czechia    CZ   CZE 1963
## 3539                                               Czechia    CZ   CZE 1964
## 3540                                               Czechia    CZ   CZE 1965
## 3541                                               Czechia    CZ   CZE 1966
## 3542                                               Czechia    CZ   CZE 1967
## 3543                                               Czechia    CZ   CZE 1968
## 3544                                               Czechia    CZ   CZE 1969
## 3545                                               Czechia    CZ   CZE 1970
## 3546                                               Czechia    CZ   CZE 1971
## 3547                                               Czechia    CZ   CZE 1972
## 3548                                               Czechia    CZ   CZE 1973
## 3549                                               Czechia    CZ   CZE 1974
## 3550                                               Czechia    CZ   CZE 1975
## 3551                                               Czechia    CZ   CZE 1976
## 3552                                               Czechia    CZ   CZE 1977
## 3553                                               Czechia    CZ   CZE 1978
## 3554                                               Czechia    CZ   CZE 1979
## 3555                                               Czechia    CZ   CZE 1980
## 3556                                               Czechia    CZ   CZE 1981
## 3557                                               Czechia    CZ   CZE 1982
## 3558                                               Czechia    CZ   CZE 1983
## 3559                                               Czechia    CZ   CZE 1984
## 3560                                               Czechia    CZ   CZE 1985
## 3561                                               Czechia    CZ   CZE 1986
## 3562                                               Czechia    CZ   CZE 1987
## 3563                                               Czechia    CZ   CZE 1988
## 3564                                               Czechia    CZ   CZE 1989
## 3565                                               Czechia    CZ   CZE 1990
## 3566                                               Czechia    CZ   CZE 1991
## 3567                                               Czechia    CZ   CZE 1992
## 3568                                               Czechia    CZ   CZE 1993
## 3569                                               Czechia    CZ   CZE 1994
## 3570                                               Czechia    CZ   CZE 1995
## 3571                                               Czechia    CZ   CZE 1996
## 3572                                               Czechia    CZ   CZE 1997
## 3573                                               Czechia    CZ   CZE 1998
## 3574                                               Czechia    CZ   CZE 1999
## 3575                                               Czechia    CZ   CZE 2000
## 3576                                               Czechia    CZ   CZE 2001
## 3577                                               Czechia    CZ   CZE 2002
## 3578                                               Czechia    CZ   CZE 2003
## 3579                                               Czechia    CZ   CZE 2004
## 3580                                               Czechia    CZ   CZE 2005
## 3581                                               Czechia    CZ   CZE 2006
## 3582                                               Czechia    CZ   CZE 2007
## 3583                                               Czechia    CZ   CZE 2008
## 3584                                               Czechia    CZ   CZE 2009
## 3585                                               Czechia    CZ   CZE 2010
## 3586                                               Czechia    CZ   CZE 2011
## 3587                                               Czechia    CZ   CZE 2012
## 3588                                               Czechia    CZ   CZE 2013
## 3589                                               Czechia    CZ   CZE 2014
## 3590                                               Czechia    CZ   CZE 2015
## 3591                                               Czechia    CZ   CZE 2016
## 3592                                               Czechia    CZ   CZE 2017
## 3593                                               Czechia    CZ   CZE 2018
## 3594                                               Czechia    CZ   CZE 2019
## 3595                                               Czechia    CZ   CZE 2020
## 3596                                               Czechia    CZ   CZE 2021
## 3597                                               Denmark    DK   DNK 1960
## 3598                                               Denmark    DK   DNK 1961
## 3599                                               Denmark    DK   DNK 1962
## 3600                                               Denmark    DK   DNK 1963
## 3601                                               Denmark    DK   DNK 1964
## 3602                                               Denmark    DK   DNK 1965
## 3603                                               Denmark    DK   DNK 1966
## 3604                                               Denmark    DK   DNK 1967
## 3605                                               Denmark    DK   DNK 1968
## 3606                                               Denmark    DK   DNK 1969
## 3607                                               Denmark    DK   DNK 1970
## 3608                                               Denmark    DK   DNK 1971
## 3609                                               Denmark    DK   DNK 1972
## 3610                                               Denmark    DK   DNK 1973
## 3611                                               Denmark    DK   DNK 1974
## 3612                                               Denmark    DK   DNK 1975
## 3613                                               Denmark    DK   DNK 1976
## 3614                                               Denmark    DK   DNK 1977
## 3615                                               Denmark    DK   DNK 1978
## 3616                                               Denmark    DK   DNK 1979
## 3617                                               Denmark    DK   DNK 1980
## 3618                                               Denmark    DK   DNK 1981
## 3619                                               Denmark    DK   DNK 1982
## 3620                                               Denmark    DK   DNK 1983
## 3621                                               Denmark    DK   DNK 1984
## 3622                                               Denmark    DK   DNK 1985
## 3623                                               Denmark    DK   DNK 1986
## 3624                                               Denmark    DK   DNK 1987
## 3625                                               Denmark    DK   DNK 1988
## 3626                                               Denmark    DK   DNK 1989
## 3627                                               Denmark    DK   DNK 1990
## 3628                                               Denmark    DK   DNK 1991
## 3629                                               Denmark    DK   DNK 1992
## 3630                                               Denmark    DK   DNK 1993
## 3631                                               Denmark    DK   DNK 1994
## 3632                                               Denmark    DK   DNK 1995
## 3633                                               Denmark    DK   DNK 1996
## 3634                                               Denmark    DK   DNK 1997
## 3635                                               Denmark    DK   DNK 1998
## 3636                                               Denmark    DK   DNK 1999
## 3637                                               Denmark    DK   DNK 2000
## 3638                                               Denmark    DK   DNK 2001
## 3639                                               Denmark    DK   DNK 2002
## 3640                                               Denmark    DK   DNK 2003
## 3641                                               Denmark    DK   DNK 2004
## 3642                                               Denmark    DK   DNK 2005
## 3643                                               Denmark    DK   DNK 2006
## 3644                                               Denmark    DK   DNK 2007
## 3645                                               Denmark    DK   DNK 2008
## 3646                                               Denmark    DK   DNK 2009
## 3647                                               Denmark    DK   DNK 2010
## 3648                                               Denmark    DK   DNK 2011
## 3649                                               Denmark    DK   DNK 2012
## 3650                                               Denmark    DK   DNK 2013
## 3651                                               Denmark    DK   DNK 2014
## 3652                                               Denmark    DK   DNK 2015
## 3653                                               Denmark    DK   DNK 2016
## 3654                                               Denmark    DK   DNK 2017
## 3655                                               Denmark    DK   DNK 2018
## 3656                                               Denmark    DK   DNK 2019
## 3657                                               Denmark    DK   DNK 2020
## 3658                                               Denmark    DK   DNK 2021
## 3659                                              Djibouti    DJ   DJI 1960
## 3660                                              Djibouti    DJ   DJI 1961
## 3661                                              Djibouti    DJ   DJI 1962
## 3662                                              Djibouti    DJ   DJI 1963
## 3663                                              Djibouti    DJ   DJI 1964
## 3664                                              Djibouti    DJ   DJI 1965
## 3665                                              Djibouti    DJ   DJI 1966
## 3666                                              Djibouti    DJ   DJI 1967
## 3667                                              Djibouti    DJ   DJI 1968
## 3668                                              Djibouti    DJ   DJI 1969
## 3669                                              Djibouti    DJ   DJI 1970
## 3670                                              Djibouti    DJ   DJI 1971
## 3671                                              Djibouti    DJ   DJI 1972
## 3672                                              Djibouti    DJ   DJI 1973
## 3673                                              Djibouti    DJ   DJI 1974
## 3674                                              Djibouti    DJ   DJI 1975
## 3675                                              Djibouti    DJ   DJI 1976
## 3676                                              Djibouti    DJ   DJI 1977
## 3677                                              Djibouti    DJ   DJI 1978
## 3678                                              Djibouti    DJ   DJI 1979
## 3679                                              Djibouti    DJ   DJI 1980
## 3680                                              Djibouti    DJ   DJI 1981
## 3681                                              Djibouti    DJ   DJI 1982
## 3682                                              Djibouti    DJ   DJI 1983
## 3683                                              Djibouti    DJ   DJI 1984
## 3684                                              Djibouti    DJ   DJI 1985
## 3685                                              Djibouti    DJ   DJI 1986
## 3686                                              Djibouti    DJ   DJI 1987
## 3687                                              Djibouti    DJ   DJI 1988
## 3688                                              Djibouti    DJ   DJI 1989
## 3689                                              Djibouti    DJ   DJI 1990
## 3690                                              Djibouti    DJ   DJI 1991
## 3691                                              Djibouti    DJ   DJI 1992
## 3692                                              Djibouti    DJ   DJI 1993
## 3693                                              Djibouti    DJ   DJI 1994
## 3694                                              Djibouti    DJ   DJI 1995
## 3695                                              Djibouti    DJ   DJI 1996
## 3696                                              Djibouti    DJ   DJI 1997
## 3697                                              Djibouti    DJ   DJI 1998
## 3698                                              Djibouti    DJ   DJI 1999
## 3699                                              Djibouti    DJ   DJI 2000
## 3700                                              Djibouti    DJ   DJI 2001
## 3701                                              Djibouti    DJ   DJI 2002
## 3702                                              Djibouti    DJ   DJI 2003
## 3703                                              Djibouti    DJ   DJI 2004
## 3704                                              Djibouti    DJ   DJI 2005
## 3705                                              Djibouti    DJ   DJI 2006
## 3706                                              Djibouti    DJ   DJI 2007
## 3707                                              Djibouti    DJ   DJI 2008
## 3708                                              Djibouti    DJ   DJI 2009
## 3709                                              Djibouti    DJ   DJI 2010
## 3710                                              Djibouti    DJ   DJI 2011
## 3711                                              Djibouti    DJ   DJI 2012
## 3712                                              Djibouti    DJ   DJI 2013
## 3713                                              Djibouti    DJ   DJI 2014
## 3714                                              Djibouti    DJ   DJI 2015
## 3715                                              Djibouti    DJ   DJI 2016
## 3716                                              Djibouti    DJ   DJI 2017
## 3717                                              Djibouti    DJ   DJI 2018
## 3718                                              Djibouti    DJ   DJI 2019
## 3719                                              Djibouti    DJ   DJI 2020
## 3720                                              Djibouti    DJ   DJI 2021
## 3721                                              Dominica    DM   DMA 1960
## 3722                                              Dominica    DM   DMA 1961
## 3723                                              Dominica    DM   DMA 1962
## 3724                                              Dominica    DM   DMA 1963
## 3725                                              Dominica    DM   DMA 1964
## 3726                                              Dominica    DM   DMA 1965
## 3727                                              Dominica    DM   DMA 1966
## 3728                                              Dominica    DM   DMA 1967
## 3729                                              Dominica    DM   DMA 1968
## 3730                                              Dominica    DM   DMA 1969
## 3731                                              Dominica    DM   DMA 1970
## 3732                                              Dominica    DM   DMA 1971
## 3733                                              Dominica    DM   DMA 1972
## 3734                                              Dominica    DM   DMA 1973
## 3735                                              Dominica    DM   DMA 1974
## 3736                                              Dominica    DM   DMA 1975
## 3737                                              Dominica    DM   DMA 1976
## 3738                                              Dominica    DM   DMA 1977
## 3739                                              Dominica    DM   DMA 1978
## 3740                                              Dominica    DM   DMA 1979
## 3741                                              Dominica    DM   DMA 1980
## 3742                                              Dominica    DM   DMA 1981
## 3743                                              Dominica    DM   DMA 1982
## 3744                                              Dominica    DM   DMA 1983
## 3745                                              Dominica    DM   DMA 1984
## 3746                                              Dominica    DM   DMA 1985
## 3747                                              Dominica    DM   DMA 1986
## 3748                                              Dominica    DM   DMA 1987
## 3749                                              Dominica    DM   DMA 1988
## 3750                                              Dominica    DM   DMA 1989
## 3751                                              Dominica    DM   DMA 1990
## 3752                                              Dominica    DM   DMA 1991
## 3753                                              Dominica    DM   DMA 1992
## 3754                                              Dominica    DM   DMA 1993
## 3755                                              Dominica    DM   DMA 1994
## 3756                                              Dominica    DM   DMA 1995
## 3757                                              Dominica    DM   DMA 1996
## 3758                                              Dominica    DM   DMA 1997
## 3759                                              Dominica    DM   DMA 1998
## 3760                                              Dominica    DM   DMA 1999
## 3761                                              Dominica    DM   DMA 2000
## 3762                                              Dominica    DM   DMA 2001
## 3763                                              Dominica    DM   DMA 2002
## 3764                                              Dominica    DM   DMA 2003
## 3765                                              Dominica    DM   DMA 2004
## 3766                                              Dominica    DM   DMA 2005
## 3767                                              Dominica    DM   DMA 2006
## 3768                                              Dominica    DM   DMA 2007
## 3769                                              Dominica    DM   DMA 2008
## 3770                                              Dominica    DM   DMA 2009
## 3771                                              Dominica    DM   DMA 2010
## 3772                                              Dominica    DM   DMA 2011
## 3773                                              Dominica    DM   DMA 2012
## 3774                                              Dominica    DM   DMA 2013
## 3775                                              Dominica    DM   DMA 2014
## 3776                                              Dominica    DM   DMA 2015
## 3777                                              Dominica    DM   DMA 2016
## 3778                                              Dominica    DM   DMA 2017
## 3779                                              Dominica    DM   DMA 2018
## 3780                                              Dominica    DM   DMA 2019
## 3781                                              Dominica    DM   DMA 2020
## 3782                                              Dominica    DM   DMA 2021
## 3783                                    Dominican Republic    DO   DOM 1960
## 3784                                    Dominican Republic    DO   DOM 1961
## 3785                                    Dominican Republic    DO   DOM 1962
## 3786                                    Dominican Republic    DO   DOM 1963
## 3787                                    Dominican Republic    DO   DOM 1964
## 3788                                    Dominican Republic    DO   DOM 1965
## 3789                                    Dominican Republic    DO   DOM 1966
## 3790                                    Dominican Republic    DO   DOM 1967
## 3791                                    Dominican Republic    DO   DOM 1968
## 3792                                    Dominican Republic    DO   DOM 1969
## 3793                                    Dominican Republic    DO   DOM 1970
## 3794                                    Dominican Republic    DO   DOM 1971
## 3795                                    Dominican Republic    DO   DOM 1972
## 3796                                    Dominican Republic    DO   DOM 1973
## 3797                                    Dominican Republic    DO   DOM 1974
## 3798                                    Dominican Republic    DO   DOM 1975
## 3799                                    Dominican Republic    DO   DOM 1976
## 3800                                    Dominican Republic    DO   DOM 1977
## 3801                                    Dominican Republic    DO   DOM 1978
## 3802                                    Dominican Republic    DO   DOM 1979
## 3803                                    Dominican Republic    DO   DOM 1980
## 3804                                    Dominican Republic    DO   DOM 1981
## 3805                                    Dominican Republic    DO   DOM 1982
## 3806                                    Dominican Republic    DO   DOM 1983
## 3807                                    Dominican Republic    DO   DOM 1984
## 3808                                    Dominican Republic    DO   DOM 1985
## 3809                                    Dominican Republic    DO   DOM 1986
## 3810                                    Dominican Republic    DO   DOM 1987
## 3811                                    Dominican Republic    DO   DOM 1988
## 3812                                    Dominican Republic    DO   DOM 1989
## 3813                                    Dominican Republic    DO   DOM 1990
## 3814                                    Dominican Republic    DO   DOM 1991
## 3815                                    Dominican Republic    DO   DOM 1992
## 3816                                    Dominican Republic    DO   DOM 1993
## 3817                                    Dominican Republic    DO   DOM 1994
## 3818                                    Dominican Republic    DO   DOM 1995
## 3819                                    Dominican Republic    DO   DOM 1996
## 3820                                    Dominican Republic    DO   DOM 1997
## 3821                                    Dominican Republic    DO   DOM 1998
## 3822                                    Dominican Republic    DO   DOM 1999
## 3823                                    Dominican Republic    DO   DOM 2000
## 3824                                    Dominican Republic    DO   DOM 2001
## 3825                                    Dominican Republic    DO   DOM 2002
## 3826                                    Dominican Republic    DO   DOM 2003
## 3827                                    Dominican Republic    DO   DOM 2004
## 3828                                    Dominican Republic    DO   DOM 2005
## 3829                                    Dominican Republic    DO   DOM 2006
## 3830                                    Dominican Republic    DO   DOM 2007
## 3831                                    Dominican Republic    DO   DOM 2008
## 3832                                    Dominican Republic    DO   DOM 2009
## 3833                                    Dominican Republic    DO   DOM 2010
## 3834                                    Dominican Republic    DO   DOM 2011
## 3835                                    Dominican Republic    DO   DOM 2012
## 3836                                    Dominican Republic    DO   DOM 2013
## 3837                                    Dominican Republic    DO   DOM 2014
## 3838                                    Dominican Republic    DO   DOM 2015
## 3839                                    Dominican Republic    DO   DOM 2016
## 3840                                    Dominican Republic    DO   DOM 2017
## 3841                                    Dominican Republic    DO   DOM 2018
## 3842                                    Dominican Republic    DO   DOM 2019
## 3843                                    Dominican Republic    DO   DOM 2020
## 3844                                    Dominican Republic    DO   DOM 2021
## 3845                            Early-demographic dividend    V2   EAR 1960
## 3846                            Early-demographic dividend    V2   EAR 1961
## 3847                            Early-demographic dividend    V2   EAR 1962
## 3848                            Early-demographic dividend    V2   EAR 1963
## 3849                            Early-demographic dividend    V2   EAR 1964
## 3850                            Early-demographic dividend    V2   EAR 1965
## 3851                            Early-demographic dividend    V2   EAR 1966
## 3852                            Early-demographic dividend    V2   EAR 1967
## 3853                            Early-demographic dividend    V2   EAR 1968
## 3854                            Early-demographic dividend    V2   EAR 1969
## 3855                            Early-demographic dividend    V2   EAR 1970
## 3856                            Early-demographic dividend    V2   EAR 1971
## 3857                            Early-demographic dividend    V2   EAR 1972
## 3858                            Early-demographic dividend    V2   EAR 1973
## 3859                            Early-demographic dividend    V2   EAR 1974
## 3860                            Early-demographic dividend    V2   EAR 1975
## 3861                            Early-demographic dividend    V2   EAR 1976
## 3862                            Early-demographic dividend    V2   EAR 1977
## 3863                            Early-demographic dividend    V2   EAR 1978
## 3864                            Early-demographic dividend    V2   EAR 1979
## 3865                            Early-demographic dividend    V2   EAR 1980
## 3866                            Early-demographic dividend    V2   EAR 1981
## 3867                            Early-demographic dividend    V2   EAR 1982
## 3868                            Early-demographic dividend    V2   EAR 1983
## 3869                            Early-demographic dividend    V2   EAR 1984
## 3870                            Early-demographic dividend    V2   EAR 1985
## 3871                            Early-demographic dividend    V2   EAR 1986
## 3872                            Early-demographic dividend    V2   EAR 1987
## 3873                            Early-demographic dividend    V2   EAR 1988
## 3874                            Early-demographic dividend    V2   EAR 1989
## 3875                            Early-demographic dividend    V2   EAR 1990
## 3876                            Early-demographic dividend    V2   EAR 1991
## 3877                            Early-demographic dividend    V2   EAR 1992
## 3878                            Early-demographic dividend    V2   EAR 1993
## 3879                            Early-demographic dividend    V2   EAR 1994
## 3880                            Early-demographic dividend    V2   EAR 1995
## 3881                            Early-demographic dividend    V2   EAR 1996
## 3882                            Early-demographic dividend    V2   EAR 1997
## 3883                            Early-demographic dividend    V2   EAR 1998
## 3884                            Early-demographic dividend    V2   EAR 1999
## 3885                            Early-demographic dividend    V2   EAR 2000
## 3886                            Early-demographic dividend    V2   EAR 2001
## 3887                            Early-demographic dividend    V2   EAR 2002
## 3888                            Early-demographic dividend    V2   EAR 2003
## 3889                            Early-demographic dividend    V2   EAR 2004
## 3890                            Early-demographic dividend    V2   EAR 2005
## 3891                            Early-demographic dividend    V2   EAR 2006
## 3892                            Early-demographic dividend    V2   EAR 2007
## 3893                            Early-demographic dividend    V2   EAR 2008
## 3894                            Early-demographic dividend    V2   EAR 2009
## 3895                            Early-demographic dividend    V2   EAR 2010
## 3896                            Early-demographic dividend    V2   EAR 2011
## 3897                            Early-demographic dividend    V2   EAR 2012
## 3898                            Early-demographic dividend    V2   EAR 2013
## 3899                            Early-demographic dividend    V2   EAR 2014
## 3900                            Early-demographic dividend    V2   EAR 2015
## 3901                            Early-demographic dividend    V2   EAR 2016
## 3902                            Early-demographic dividend    V2   EAR 2017
## 3903                            Early-demographic dividend    V2   EAR 2018
## 3904                            Early-demographic dividend    V2   EAR 2019
## 3905                            Early-demographic dividend    V2   EAR 2020
## 3906                            Early-demographic dividend    V2   EAR 2021
## 3907                                   East Asia & Pacific    Z4   EAS 1960
## 3908                                   East Asia & Pacific    Z4   EAS 1961
## 3909                                   East Asia & Pacific    Z4   EAS 1962
## 3910                                   East Asia & Pacific    Z4   EAS 1963
## 3911                                   East Asia & Pacific    Z4   EAS 1964
## 3912                                   East Asia & Pacific    Z4   EAS 1965
## 3913                                   East Asia & Pacific    Z4   EAS 1966
## 3914                                   East Asia & Pacific    Z4   EAS 1967
## 3915                                   East Asia & Pacific    Z4   EAS 1968
## 3916                                   East Asia & Pacific    Z4   EAS 1969
## 3917                                   East Asia & Pacific    Z4   EAS 1970
## 3918                                   East Asia & Pacific    Z4   EAS 1971
## 3919                                   East Asia & Pacific    Z4   EAS 1972
## 3920                                   East Asia & Pacific    Z4   EAS 1973
## 3921                                   East Asia & Pacific    Z4   EAS 1974
## 3922                                   East Asia & Pacific    Z4   EAS 1975
## 3923                                   East Asia & Pacific    Z4   EAS 1976
## 3924                                   East Asia & Pacific    Z4   EAS 1977
## 3925                                   East Asia & Pacific    Z4   EAS 1978
## 3926                                   East Asia & Pacific    Z4   EAS 1979
## 3927                                   East Asia & Pacific    Z4   EAS 1980
## 3928                                   East Asia & Pacific    Z4   EAS 1981
## 3929                                   East Asia & Pacific    Z4   EAS 1982
## 3930                                   East Asia & Pacific    Z4   EAS 1983
## 3931                                   East Asia & Pacific    Z4   EAS 1984
## 3932                                   East Asia & Pacific    Z4   EAS 1985
## 3933                                   East Asia & Pacific    Z4   EAS 1986
## 3934                                   East Asia & Pacific    Z4   EAS 1987
## 3935                                   East Asia & Pacific    Z4   EAS 1988
## 3936                                   East Asia & Pacific    Z4   EAS 1989
## 3937                                   East Asia & Pacific    Z4   EAS 1990
## 3938                                   East Asia & Pacific    Z4   EAS 1991
## 3939                                   East Asia & Pacific    Z4   EAS 1992
## 3940                                   East Asia & Pacific    Z4   EAS 1993
## 3941                                   East Asia & Pacific    Z4   EAS 1994
## 3942                                   East Asia & Pacific    Z4   EAS 1995
## 3943                                   East Asia & Pacific    Z4   EAS 1996
## 3944                                   East Asia & Pacific    Z4   EAS 1997
## 3945                                   East Asia & Pacific    Z4   EAS 1998
## 3946                                   East Asia & Pacific    Z4   EAS 1999
## 3947                                   East Asia & Pacific    Z4   EAS 2000
## 3948                                   East Asia & Pacific    Z4   EAS 2001
## 3949                                   East Asia & Pacific    Z4   EAS 2002
## 3950                                   East Asia & Pacific    Z4   EAS 2003
## 3951                                   East Asia & Pacific    Z4   EAS 2004
## 3952                                   East Asia & Pacific    Z4   EAS 2005
## 3953                                   East Asia & Pacific    Z4   EAS 2006
## 3954                                   East Asia & Pacific    Z4   EAS 2007
## 3955                                   East Asia & Pacific    Z4   EAS 2008
## 3956                                   East Asia & Pacific    Z4   EAS 2009
## 3957                                   East Asia & Pacific    Z4   EAS 2010
## 3958                                   East Asia & Pacific    Z4   EAS 2011
## 3959                                   East Asia & Pacific    Z4   EAS 2012
## 3960                                   East Asia & Pacific    Z4   EAS 2013
## 3961                                   East Asia & Pacific    Z4   EAS 2014
## 3962                                   East Asia & Pacific    Z4   EAS 2015
## 3963                                   East Asia & Pacific    Z4   EAS 2016
## 3964                                   East Asia & Pacific    Z4   EAS 2017
## 3965                                   East Asia & Pacific    Z4   EAS 2018
## 3966                                   East Asia & Pacific    Z4   EAS 2019
## 3967                                   East Asia & Pacific    Z4   EAS 2020
## 3968                                   East Asia & Pacific    Z4   EAS 2021
## 3969           East Asia & Pacific (excluding high income)    4E   EAP 1960
## 3970           East Asia & Pacific (excluding high income)    4E   EAP 1961
## 3971           East Asia & Pacific (excluding high income)    4E   EAP 1962
## 3972           East Asia & Pacific (excluding high income)    4E   EAP 1963
## 3973           East Asia & Pacific (excluding high income)    4E   EAP 1964
## 3974           East Asia & Pacific (excluding high income)    4E   EAP 1965
## 3975           East Asia & Pacific (excluding high income)    4E   EAP 1966
## 3976           East Asia & Pacific (excluding high income)    4E   EAP 1967
## 3977           East Asia & Pacific (excluding high income)    4E   EAP 1968
## 3978           East Asia & Pacific (excluding high income)    4E   EAP 1969
## 3979           East Asia & Pacific (excluding high income)    4E   EAP 1970
## 3980           East Asia & Pacific (excluding high income)    4E   EAP 1971
## 3981           East Asia & Pacific (excluding high income)    4E   EAP 1972
## 3982           East Asia & Pacific (excluding high income)    4E   EAP 1973
## 3983           East Asia & Pacific (excluding high income)    4E   EAP 1974
## 3984           East Asia & Pacific (excluding high income)    4E   EAP 1975
## 3985           East Asia & Pacific (excluding high income)    4E   EAP 1976
## 3986           East Asia & Pacific (excluding high income)    4E   EAP 1977
## 3987           East Asia & Pacific (excluding high income)    4E   EAP 1978
## 3988           East Asia & Pacific (excluding high income)    4E   EAP 1979
## 3989           East Asia & Pacific (excluding high income)    4E   EAP 1980
## 3990           East Asia & Pacific (excluding high income)    4E   EAP 1981
## 3991           East Asia & Pacific (excluding high income)    4E   EAP 1982
## 3992           East Asia & Pacific (excluding high income)    4E   EAP 1983
## 3993           East Asia & Pacific (excluding high income)    4E   EAP 1984
## 3994           East Asia & Pacific (excluding high income)    4E   EAP 1985
## 3995           East Asia & Pacific (excluding high income)    4E   EAP 1986
## 3996           East Asia & Pacific (excluding high income)    4E   EAP 1987
## 3997           East Asia & Pacific (excluding high income)    4E   EAP 1988
## 3998           East Asia & Pacific (excluding high income)    4E   EAP 1989
## 3999           East Asia & Pacific (excluding high income)    4E   EAP 1990
## 4000           East Asia & Pacific (excluding high income)    4E   EAP 1991
## 4001           East Asia & Pacific (excluding high income)    4E   EAP 1992
## 4002           East Asia & Pacific (excluding high income)    4E   EAP 1993
## 4003           East Asia & Pacific (excluding high income)    4E   EAP 1994
## 4004           East Asia & Pacific (excluding high income)    4E   EAP 1995
## 4005           East Asia & Pacific (excluding high income)    4E   EAP 1996
## 4006           East Asia & Pacific (excluding high income)    4E   EAP 1997
## 4007           East Asia & Pacific (excluding high income)    4E   EAP 1998
## 4008           East Asia & Pacific (excluding high income)    4E   EAP 1999
## 4009           East Asia & Pacific (excluding high income)    4E   EAP 2000
## 4010           East Asia & Pacific (excluding high income)    4E   EAP 2001
## 4011           East Asia & Pacific (excluding high income)    4E   EAP 2002
## 4012           East Asia & Pacific (excluding high income)    4E   EAP 2003
## 4013           East Asia & Pacific (excluding high income)    4E   EAP 2004
## 4014           East Asia & Pacific (excluding high income)    4E   EAP 2005
## 4015           East Asia & Pacific (excluding high income)    4E   EAP 2006
## 4016           East Asia & Pacific (excluding high income)    4E   EAP 2007
## 4017           East Asia & Pacific (excluding high income)    4E   EAP 2008
## 4018           East Asia & Pacific (excluding high income)    4E   EAP 2009
## 4019           East Asia & Pacific (excluding high income)    4E   EAP 2010
## 4020           East Asia & Pacific (excluding high income)    4E   EAP 2011
## 4021           East Asia & Pacific (excluding high income)    4E   EAP 2012
## 4022           East Asia & Pacific (excluding high income)    4E   EAP 2013
## 4023           East Asia & Pacific (excluding high income)    4E   EAP 2014
## 4024           East Asia & Pacific (excluding high income)    4E   EAP 2015
## 4025           East Asia & Pacific (excluding high income)    4E   EAP 2016
## 4026           East Asia & Pacific (excluding high income)    4E   EAP 2017
## 4027           East Asia & Pacific (excluding high income)    4E   EAP 2018
## 4028           East Asia & Pacific (excluding high income)    4E   EAP 2019
## 4029           East Asia & Pacific (excluding high income)    4E   EAP 2020
## 4030           East Asia & Pacific (excluding high income)    4E   EAP 2021
## 4031            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1960
## 4032            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1961
## 4033            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1962
## 4034            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1963
## 4035            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1964
## 4036            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1965
## 4037            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1966
## 4038            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1967
## 4039            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1968
## 4040            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1969
## 4041            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1970
## 4042            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1971
## 4043            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1972
## 4044            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1973
## 4045            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1974
## 4046            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1975
## 4047            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1976
## 4048            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1977
## 4049            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1978
## 4050            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1979
## 4051            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1980
## 4052            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1981
## 4053            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1982
## 4054            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1983
## 4055            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1984
## 4056            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1985
## 4057            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1986
## 4058            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1987
## 4059            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1988
## 4060            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1989
## 4061            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1990
## 4062            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1991
## 4063            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1992
## 4064            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1993
## 4065            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1994
## 4066            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1995
## 4067            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1996
## 4068            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1997
## 4069            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1998
## 4070            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1999
## 4071            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2000
## 4072            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2001
## 4073            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2002
## 4074            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2003
## 4075            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2004
## 4076            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2005
## 4077            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2006
## 4078            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2007
## 4079            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2008
## 4080            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2009
## 4081            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2010
## 4082            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2011
## 4083            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2012
## 4084            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2013
## 4085            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2014
## 4086            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2015
## 4087            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2016
## 4088            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2017
## 4089            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2018
## 4090            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2019
## 4091            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2020
## 4092            East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2021
## 4093                                               Ecuador    EC   ECU 1960
## 4094                                               Ecuador    EC   ECU 1961
## 4095                                               Ecuador    EC   ECU 1962
## 4096                                               Ecuador    EC   ECU 1963
## 4097                                               Ecuador    EC   ECU 1964
## 4098                                               Ecuador    EC   ECU 1965
## 4099                                               Ecuador    EC   ECU 1966
## 4100                                               Ecuador    EC   ECU 1967
## 4101                                               Ecuador    EC   ECU 1968
## 4102                                               Ecuador    EC   ECU 1969
## 4103                                               Ecuador    EC   ECU 1970
## 4104                                               Ecuador    EC   ECU 1971
## 4105                                               Ecuador    EC   ECU 1972
## 4106                                               Ecuador    EC   ECU 1973
## 4107                                               Ecuador    EC   ECU 1974
## 4108                                               Ecuador    EC   ECU 1975
## 4109                                               Ecuador    EC   ECU 1976
## 4110                                               Ecuador    EC   ECU 1977
## 4111                                               Ecuador    EC   ECU 1978
## 4112                                               Ecuador    EC   ECU 1979
## 4113                                               Ecuador    EC   ECU 1980
## 4114                                               Ecuador    EC   ECU 1981
## 4115                                               Ecuador    EC   ECU 1982
## 4116                                               Ecuador    EC   ECU 1983
## 4117                                               Ecuador    EC   ECU 1984
## 4118                                               Ecuador    EC   ECU 1985
## 4119                                               Ecuador    EC   ECU 1986
## 4120                                               Ecuador    EC   ECU 1987
## 4121                                               Ecuador    EC   ECU 1988
## 4122                                               Ecuador    EC   ECU 1989
## 4123                                               Ecuador    EC   ECU 1990
## 4124                                               Ecuador    EC   ECU 1991
## 4125                                               Ecuador    EC   ECU 1992
## 4126                                               Ecuador    EC   ECU 1993
## 4127                                               Ecuador    EC   ECU 1994
## 4128                                               Ecuador    EC   ECU 1995
## 4129                                               Ecuador    EC   ECU 1996
## 4130                                               Ecuador    EC   ECU 1997
## 4131                                               Ecuador    EC   ECU 1998
## 4132                                               Ecuador    EC   ECU 1999
## 4133                                               Ecuador    EC   ECU 2000
## 4134                                               Ecuador    EC   ECU 2001
## 4135                                               Ecuador    EC   ECU 2002
## 4136                                               Ecuador    EC   ECU 2003
## 4137                                               Ecuador    EC   ECU 2004
## 4138                                               Ecuador    EC   ECU 2005
## 4139                                               Ecuador    EC   ECU 2006
## 4140                                               Ecuador    EC   ECU 2007
## 4141                                               Ecuador    EC   ECU 2008
## 4142                                               Ecuador    EC   ECU 2009
## 4143                                               Ecuador    EC   ECU 2010
## 4144                                               Ecuador    EC   ECU 2011
## 4145                                               Ecuador    EC   ECU 2012
## 4146                                               Ecuador    EC   ECU 2013
## 4147                                               Ecuador    EC   ECU 2014
## 4148                                               Ecuador    EC   ECU 2015
## 4149                                               Ecuador    EC   ECU 2016
## 4150                                               Ecuador    EC   ECU 2017
## 4151                                               Ecuador    EC   ECU 2018
## 4152                                               Ecuador    EC   ECU 2019
## 4153                                               Ecuador    EC   ECU 2020
## 4154                                               Ecuador    EC   ECU 2021
## 4155                                      Egypt, Arab Rep.    EG   EGY 1960
## 4156                                      Egypt, Arab Rep.    EG   EGY 1961
## 4157                                      Egypt, Arab Rep.    EG   EGY 1962
## 4158                                      Egypt, Arab Rep.    EG   EGY 1963
## 4159                                      Egypt, Arab Rep.    EG   EGY 1964
## 4160                                      Egypt, Arab Rep.    EG   EGY 1965
## 4161                                      Egypt, Arab Rep.    EG   EGY 1966
## 4162                                      Egypt, Arab Rep.    EG   EGY 1967
## 4163                                      Egypt, Arab Rep.    EG   EGY 1968
## 4164                                      Egypt, Arab Rep.    EG   EGY 1969
## 4165                                      Egypt, Arab Rep.    EG   EGY 1970
## 4166                                      Egypt, Arab Rep.    EG   EGY 1971
## 4167                                      Egypt, Arab Rep.    EG   EGY 1972
## 4168                                      Egypt, Arab Rep.    EG   EGY 1973
## 4169                                      Egypt, Arab Rep.    EG   EGY 1974
## 4170                                      Egypt, Arab Rep.    EG   EGY 1975
## 4171                                      Egypt, Arab Rep.    EG   EGY 1976
## 4172                                      Egypt, Arab Rep.    EG   EGY 1977
## 4173                                      Egypt, Arab Rep.    EG   EGY 1978
## 4174                                      Egypt, Arab Rep.    EG   EGY 1979
## 4175                                      Egypt, Arab Rep.    EG   EGY 1980
## 4176                                      Egypt, Arab Rep.    EG   EGY 1981
## 4177                                      Egypt, Arab Rep.    EG   EGY 1982
## 4178                                      Egypt, Arab Rep.    EG   EGY 1983
## 4179                                      Egypt, Arab Rep.    EG   EGY 1984
## 4180                                      Egypt, Arab Rep.    EG   EGY 1985
## 4181                                      Egypt, Arab Rep.    EG   EGY 1986
## 4182                                      Egypt, Arab Rep.    EG   EGY 1987
## 4183                                      Egypt, Arab Rep.    EG   EGY 1988
## 4184                                      Egypt, Arab Rep.    EG   EGY 1989
## 4185                                      Egypt, Arab Rep.    EG   EGY 1990
## 4186                                      Egypt, Arab Rep.    EG   EGY 1991
## 4187                                      Egypt, Arab Rep.    EG   EGY 1992
## 4188                                      Egypt, Arab Rep.    EG   EGY 1993
## 4189                                      Egypt, Arab Rep.    EG   EGY 1994
## 4190                                      Egypt, Arab Rep.    EG   EGY 1995
## 4191                                      Egypt, Arab Rep.    EG   EGY 1996
## 4192                                      Egypt, Arab Rep.    EG   EGY 1997
## 4193                                      Egypt, Arab Rep.    EG   EGY 1998
## 4194                                      Egypt, Arab Rep.    EG   EGY 1999
## 4195                                      Egypt, Arab Rep.    EG   EGY 2000
## 4196                                      Egypt, Arab Rep.    EG   EGY 2001
## 4197                                      Egypt, Arab Rep.    EG   EGY 2002
## 4198                                      Egypt, Arab Rep.    EG   EGY 2003
## 4199                                      Egypt, Arab Rep.    EG   EGY 2004
## 4200                                      Egypt, Arab Rep.    EG   EGY 2005
## 4201                                      Egypt, Arab Rep.    EG   EGY 2006
## 4202                                      Egypt, Arab Rep.    EG   EGY 2007
## 4203                                      Egypt, Arab Rep.    EG   EGY 2008
## 4204                                      Egypt, Arab Rep.    EG   EGY 2009
## 4205                                      Egypt, Arab Rep.    EG   EGY 2010
## 4206                                      Egypt, Arab Rep.    EG   EGY 2011
## 4207                                      Egypt, Arab Rep.    EG   EGY 2012
## 4208                                      Egypt, Arab Rep.    EG   EGY 2013
## 4209                                      Egypt, Arab Rep.    EG   EGY 2014
## 4210                                      Egypt, Arab Rep.    EG   EGY 2015
## 4211                                      Egypt, Arab Rep.    EG   EGY 2016
## 4212                                      Egypt, Arab Rep.    EG   EGY 2017
## 4213                                      Egypt, Arab Rep.    EG   EGY 2018
## 4214                                      Egypt, Arab Rep.    EG   EGY 2019
## 4215                                      Egypt, Arab Rep.    EG   EGY 2020
## 4216                                      Egypt, Arab Rep.    EG   EGY 2021
## 4217                                           El Salvador    SV   SLV 1960
## 4218                                           El Salvador    SV   SLV 1961
## 4219                                           El Salvador    SV   SLV 1962
## 4220                                           El Salvador    SV   SLV 1963
## 4221                                           El Salvador    SV   SLV 1964
## 4222                                           El Salvador    SV   SLV 1965
## 4223                                           El Salvador    SV   SLV 1966
## 4224                                           El Salvador    SV   SLV 1967
## 4225                                           El Salvador    SV   SLV 1968
## 4226                                           El Salvador    SV   SLV 1969
## 4227                                           El Salvador    SV   SLV 1970
## 4228                                           El Salvador    SV   SLV 1971
## 4229                                           El Salvador    SV   SLV 1972
## 4230                                           El Salvador    SV   SLV 1973
## 4231                                           El Salvador    SV   SLV 1974
## 4232                                           El Salvador    SV   SLV 1975
## 4233                                           El Salvador    SV   SLV 1976
## 4234                                           El Salvador    SV   SLV 1977
## 4235                                           El Salvador    SV   SLV 1978
## 4236                                           El Salvador    SV   SLV 1979
## 4237                                           El Salvador    SV   SLV 1980
## 4238                                           El Salvador    SV   SLV 1981
## 4239                                           El Salvador    SV   SLV 1982
## 4240                                           El Salvador    SV   SLV 1983
## 4241                                           El Salvador    SV   SLV 1984
## 4242                                           El Salvador    SV   SLV 1985
## 4243                                           El Salvador    SV   SLV 1986
## 4244                                           El Salvador    SV   SLV 1987
## 4245                                           El Salvador    SV   SLV 1988
## 4246                                           El Salvador    SV   SLV 1989
## 4247                                           El Salvador    SV   SLV 1990
## 4248                                           El Salvador    SV   SLV 1991
## 4249                                           El Salvador    SV   SLV 1992
## 4250                                           El Salvador    SV   SLV 1993
## 4251                                           El Salvador    SV   SLV 1994
## 4252                                           El Salvador    SV   SLV 1995
## 4253                                           El Salvador    SV   SLV 1996
## 4254                                           El Salvador    SV   SLV 1997
## 4255                                           El Salvador    SV   SLV 1998
## 4256                                           El Salvador    SV   SLV 1999
## 4257                                           El Salvador    SV   SLV 2000
## 4258                                           El Salvador    SV   SLV 2001
## 4259                                           El Salvador    SV   SLV 2002
## 4260                                           El Salvador    SV   SLV 2003
## 4261                                           El Salvador    SV   SLV 2004
## 4262                                           El Salvador    SV   SLV 2005
## 4263                                           El Salvador    SV   SLV 2006
## 4264                                           El Salvador    SV   SLV 2007
## 4265                                           El Salvador    SV   SLV 2008
## 4266                                           El Salvador    SV   SLV 2009
## 4267                                           El Salvador    SV   SLV 2010
## 4268                                           El Salvador    SV   SLV 2011
## 4269                                           El Salvador    SV   SLV 2012
## 4270                                           El Salvador    SV   SLV 2013
## 4271                                           El Salvador    SV   SLV 2014
## 4272                                           El Salvador    SV   SLV 2015
## 4273                                           El Salvador    SV   SLV 2016
## 4274                                           El Salvador    SV   SLV 2017
## 4275                                           El Salvador    SV   SLV 2018
## 4276                                           El Salvador    SV   SLV 2019
## 4277                                           El Salvador    SV   SLV 2020
## 4278                                           El Salvador    SV   SLV 2021
## 4279                                     Equatorial Guinea    GQ   GNQ 1960
## 4280                                     Equatorial Guinea    GQ   GNQ 1961
## 4281                                     Equatorial Guinea    GQ   GNQ 1962
## 4282                                     Equatorial Guinea    GQ   GNQ 1963
## 4283                                     Equatorial Guinea    GQ   GNQ 1964
## 4284                                     Equatorial Guinea    GQ   GNQ 1965
## 4285                                     Equatorial Guinea    GQ   GNQ 1966
## 4286                                     Equatorial Guinea    GQ   GNQ 1967
## 4287                                     Equatorial Guinea    GQ   GNQ 1968
## 4288                                     Equatorial Guinea    GQ   GNQ 1969
## 4289                                     Equatorial Guinea    GQ   GNQ 1970
## 4290                                     Equatorial Guinea    GQ   GNQ 1971
## 4291                                     Equatorial Guinea    GQ   GNQ 1972
## 4292                                     Equatorial Guinea    GQ   GNQ 1973
## 4293                                     Equatorial Guinea    GQ   GNQ 1974
## 4294                                     Equatorial Guinea    GQ   GNQ 1975
## 4295                                     Equatorial Guinea    GQ   GNQ 1976
## 4296                                     Equatorial Guinea    GQ   GNQ 1977
## 4297                                     Equatorial Guinea    GQ   GNQ 1978
## 4298                                     Equatorial Guinea    GQ   GNQ 1979
## 4299                                     Equatorial Guinea    GQ   GNQ 1980
## 4300                                     Equatorial Guinea    GQ   GNQ 1981
## 4301                                     Equatorial Guinea    GQ   GNQ 1982
## 4302                                     Equatorial Guinea    GQ   GNQ 1983
## 4303                                     Equatorial Guinea    GQ   GNQ 1984
## 4304                                     Equatorial Guinea    GQ   GNQ 1985
## 4305                                     Equatorial Guinea    GQ   GNQ 1986
## 4306                                     Equatorial Guinea    GQ   GNQ 1987
## 4307                                     Equatorial Guinea    GQ   GNQ 1988
## 4308                                     Equatorial Guinea    GQ   GNQ 1989
## 4309                                     Equatorial Guinea    GQ   GNQ 1990
## 4310                                     Equatorial Guinea    GQ   GNQ 1991
## 4311                                     Equatorial Guinea    GQ   GNQ 1992
## 4312                                     Equatorial Guinea    GQ   GNQ 1993
## 4313                                     Equatorial Guinea    GQ   GNQ 1994
## 4314                                     Equatorial Guinea    GQ   GNQ 1995
## 4315                                     Equatorial Guinea    GQ   GNQ 1996
## 4316                                     Equatorial Guinea    GQ   GNQ 1997
## 4317                                     Equatorial Guinea    GQ   GNQ 1998
## 4318                                     Equatorial Guinea    GQ   GNQ 1999
## 4319                                     Equatorial Guinea    GQ   GNQ 2000
## 4320                                     Equatorial Guinea    GQ   GNQ 2001
## 4321                                     Equatorial Guinea    GQ   GNQ 2002
## 4322                                     Equatorial Guinea    GQ   GNQ 2003
## 4323                                     Equatorial Guinea    GQ   GNQ 2004
## 4324                                     Equatorial Guinea    GQ   GNQ 2005
## 4325                                     Equatorial Guinea    GQ   GNQ 2006
## 4326                                     Equatorial Guinea    GQ   GNQ 2007
## 4327                                     Equatorial Guinea    GQ   GNQ 2008
## 4328                                     Equatorial Guinea    GQ   GNQ 2009
## 4329                                     Equatorial Guinea    GQ   GNQ 2010
## 4330                                     Equatorial Guinea    GQ   GNQ 2011
## 4331                                     Equatorial Guinea    GQ   GNQ 2012
## 4332                                     Equatorial Guinea    GQ   GNQ 2013
## 4333                                     Equatorial Guinea    GQ   GNQ 2014
## 4334                                     Equatorial Guinea    GQ   GNQ 2015
## 4335                                     Equatorial Guinea    GQ   GNQ 2016
## 4336                                     Equatorial Guinea    GQ   GNQ 2017
## 4337                                     Equatorial Guinea    GQ   GNQ 2018
## 4338                                     Equatorial Guinea    GQ   GNQ 2019
## 4339                                     Equatorial Guinea    GQ   GNQ 2020
## 4340                                     Equatorial Guinea    GQ   GNQ 2021
## 4341                                               Eritrea    ER   ERI 1960
## 4342                                               Eritrea    ER   ERI 1961
## 4343                                               Eritrea    ER   ERI 1962
## 4344                                               Eritrea    ER   ERI 1963
## 4345                                               Eritrea    ER   ERI 1964
## 4346                                               Eritrea    ER   ERI 1965
## 4347                                               Eritrea    ER   ERI 1966
## 4348                                               Eritrea    ER   ERI 1967
## 4349                                               Eritrea    ER   ERI 1968
## 4350                                               Eritrea    ER   ERI 1969
## 4351                                               Eritrea    ER   ERI 1970
## 4352                                               Eritrea    ER   ERI 1971
## 4353                                               Eritrea    ER   ERI 1972
## 4354                                               Eritrea    ER   ERI 1973
## 4355                                               Eritrea    ER   ERI 1974
## 4356                                               Eritrea    ER   ERI 1975
## 4357                                               Eritrea    ER   ERI 1976
## 4358                                               Eritrea    ER   ERI 1977
## 4359                                               Eritrea    ER   ERI 1978
## 4360                                               Eritrea    ER   ERI 1979
## 4361                                               Eritrea    ER   ERI 1980
## 4362                                               Eritrea    ER   ERI 1981
## 4363                                               Eritrea    ER   ERI 1982
## 4364                                               Eritrea    ER   ERI 1983
## 4365                                               Eritrea    ER   ERI 1984
## 4366                                               Eritrea    ER   ERI 1985
## 4367                                               Eritrea    ER   ERI 1986
## 4368                                               Eritrea    ER   ERI 1987
## 4369                                               Eritrea    ER   ERI 1988
## 4370                                               Eritrea    ER   ERI 1989
## 4371                                               Eritrea    ER   ERI 1990
## 4372                                               Eritrea    ER   ERI 1991
## 4373                                               Eritrea    ER   ERI 1992
## 4374                                               Eritrea    ER   ERI 1993
## 4375                                               Eritrea    ER   ERI 1994
## 4376                                               Eritrea    ER   ERI 1995
## 4377                                               Eritrea    ER   ERI 1996
## 4378                                               Eritrea    ER   ERI 1997
## 4379                                               Eritrea    ER   ERI 1998
## 4380                                               Eritrea    ER   ERI 1999
## 4381                                               Eritrea    ER   ERI 2000
## 4382                                               Eritrea    ER   ERI 2001
## 4383                                               Eritrea    ER   ERI 2002
## 4384                                               Eritrea    ER   ERI 2003
## 4385                                               Eritrea    ER   ERI 2004
## 4386                                               Eritrea    ER   ERI 2005
## 4387                                               Eritrea    ER   ERI 2006
## 4388                                               Eritrea    ER   ERI 2007
## 4389                                               Eritrea    ER   ERI 2008
## 4390                                               Eritrea    ER   ERI 2009
## 4391                                               Eritrea    ER   ERI 2010
## 4392                                               Eritrea    ER   ERI 2011
## 4393                                               Eritrea    ER   ERI 2012
## 4394                                               Eritrea    ER   ERI 2013
## 4395                                               Eritrea    ER   ERI 2014
## 4396                                               Eritrea    ER   ERI 2015
## 4397                                               Eritrea    ER   ERI 2016
## 4398                                               Eritrea    ER   ERI 2017
## 4399                                               Eritrea    ER   ERI 2018
## 4400                                               Eritrea    ER   ERI 2019
## 4401                                               Eritrea    ER   ERI 2020
## 4402                                               Eritrea    ER   ERI 2021
## 4403                                               Estonia    EE   EST 1960
## 4404                                               Estonia    EE   EST 1961
## 4405                                               Estonia    EE   EST 1962
## 4406                                               Estonia    EE   EST 1963
## 4407                                               Estonia    EE   EST 1964
## 4408                                               Estonia    EE   EST 1965
## 4409                                               Estonia    EE   EST 1966
## 4410                                               Estonia    EE   EST 1967
## 4411                                               Estonia    EE   EST 1968
## 4412                                               Estonia    EE   EST 1969
## 4413                                               Estonia    EE   EST 1970
## 4414                                               Estonia    EE   EST 1971
## 4415                                               Estonia    EE   EST 1972
## 4416                                               Estonia    EE   EST 1973
## 4417                                               Estonia    EE   EST 1974
## 4418                                               Estonia    EE   EST 1975
## 4419                                               Estonia    EE   EST 1976
## 4420                                               Estonia    EE   EST 1977
## 4421                                               Estonia    EE   EST 1978
## 4422                                               Estonia    EE   EST 1979
## 4423                                               Estonia    EE   EST 1980
## 4424                                               Estonia    EE   EST 1981
## 4425                                               Estonia    EE   EST 1982
## 4426                                               Estonia    EE   EST 1983
## 4427                                               Estonia    EE   EST 1984
## 4428                                               Estonia    EE   EST 1985
## 4429                                               Estonia    EE   EST 1986
## 4430                                               Estonia    EE   EST 1987
## 4431                                               Estonia    EE   EST 1988
## 4432                                               Estonia    EE   EST 1989
## 4433                                               Estonia    EE   EST 1990
## 4434                                               Estonia    EE   EST 1991
## 4435                                               Estonia    EE   EST 1992
## 4436                                               Estonia    EE   EST 1993
## 4437                                               Estonia    EE   EST 1994
## 4438                                               Estonia    EE   EST 1995
## 4439                                               Estonia    EE   EST 1996
## 4440                                               Estonia    EE   EST 1997
## 4441                                               Estonia    EE   EST 1998
## 4442                                               Estonia    EE   EST 1999
## 4443                                               Estonia    EE   EST 2000
## 4444                                               Estonia    EE   EST 2001
## 4445                                               Estonia    EE   EST 2002
## 4446                                               Estonia    EE   EST 2003
## 4447                                               Estonia    EE   EST 2004
## 4448                                               Estonia    EE   EST 2005
## 4449                                               Estonia    EE   EST 2006
## 4450                                               Estonia    EE   EST 2007
## 4451                                               Estonia    EE   EST 2008
## 4452                                               Estonia    EE   EST 2009
## 4453                                               Estonia    EE   EST 2010
## 4454                                               Estonia    EE   EST 2011
## 4455                                               Estonia    EE   EST 2012
## 4456                                               Estonia    EE   EST 2013
## 4457                                               Estonia    EE   EST 2014
## 4458                                               Estonia    EE   EST 2015
## 4459                                               Estonia    EE   EST 2016
## 4460                                               Estonia    EE   EST 2017
## 4461                                               Estonia    EE   EST 2018
## 4462                                               Estonia    EE   EST 2019
## 4463                                               Estonia    EE   EST 2020
## 4464                                               Estonia    EE   EST 2021
## 4465                                              Eswatini    SZ   SWZ 1960
## 4466                                              Eswatini    SZ   SWZ 1961
## 4467                                              Eswatini    SZ   SWZ 1962
## 4468                                              Eswatini    SZ   SWZ 1963
## 4469                                              Eswatini    SZ   SWZ 1964
## 4470                                              Eswatini    SZ   SWZ 1965
## 4471                                              Eswatini    SZ   SWZ 1966
## 4472                                              Eswatini    SZ   SWZ 1967
## 4473                                              Eswatini    SZ   SWZ 1968
## 4474                                              Eswatini    SZ   SWZ 1969
## 4475                                              Eswatini    SZ   SWZ 1970
## 4476                                              Eswatini    SZ   SWZ 1971
## 4477                                              Eswatini    SZ   SWZ 1972
## 4478                                              Eswatini    SZ   SWZ 1973
## 4479                                              Eswatini    SZ   SWZ 1974
## 4480                                              Eswatini    SZ   SWZ 1975
## 4481                                              Eswatini    SZ   SWZ 1976
## 4482                                              Eswatini    SZ   SWZ 1977
## 4483                                              Eswatini    SZ   SWZ 1978
## 4484                                              Eswatini    SZ   SWZ 1979
## 4485                                              Eswatini    SZ   SWZ 1980
## 4486                                              Eswatini    SZ   SWZ 1981
## 4487                                              Eswatini    SZ   SWZ 1982
## 4488                                              Eswatini    SZ   SWZ 1983
## 4489                                              Eswatini    SZ   SWZ 1984
## 4490                                              Eswatini    SZ   SWZ 1985
## 4491                                              Eswatini    SZ   SWZ 1986
## 4492                                              Eswatini    SZ   SWZ 1987
## 4493                                              Eswatini    SZ   SWZ 1988
## 4494                                              Eswatini    SZ   SWZ 1989
## 4495                                              Eswatini    SZ   SWZ 1990
## 4496                                              Eswatini    SZ   SWZ 1991
## 4497                                              Eswatini    SZ   SWZ 1992
## 4498                                              Eswatini    SZ   SWZ 1993
## 4499                                              Eswatini    SZ   SWZ 1994
## 4500                                              Eswatini    SZ   SWZ 1995
## 4501                                              Eswatini    SZ   SWZ 1996
## 4502                                              Eswatini    SZ   SWZ 1997
## 4503                                              Eswatini    SZ   SWZ 1998
## 4504                                              Eswatini    SZ   SWZ 1999
## 4505                                              Eswatini    SZ   SWZ 2000
## 4506                                              Eswatini    SZ   SWZ 2001
## 4507                                              Eswatini    SZ   SWZ 2002
## 4508                                              Eswatini    SZ   SWZ 2003
## 4509                                              Eswatini    SZ   SWZ 2004
## 4510                                              Eswatini    SZ   SWZ 2005
## 4511                                              Eswatini    SZ   SWZ 2006
## 4512                                              Eswatini    SZ   SWZ 2007
## 4513                                              Eswatini    SZ   SWZ 2008
## 4514                                              Eswatini    SZ   SWZ 2009
## 4515                                              Eswatini    SZ   SWZ 2010
## 4516                                              Eswatini    SZ   SWZ 2011
## 4517                                              Eswatini    SZ   SWZ 2012
## 4518                                              Eswatini    SZ   SWZ 2013
## 4519                                              Eswatini    SZ   SWZ 2014
## 4520                                              Eswatini    SZ   SWZ 2015
## 4521                                              Eswatini    SZ   SWZ 2016
## 4522                                              Eswatini    SZ   SWZ 2017
## 4523                                              Eswatini    SZ   SWZ 2018
## 4524                                              Eswatini    SZ   SWZ 2019
## 4525                                              Eswatini    SZ   SWZ 2020
## 4526                                              Eswatini    SZ   SWZ 2021
## 4527                                              Ethiopia    ET   ETH 1960
## 4528                                              Ethiopia    ET   ETH 1961
## 4529                                              Ethiopia    ET   ETH 1962
## 4530                                              Ethiopia    ET   ETH 1963
## 4531                                              Ethiopia    ET   ETH 1964
## 4532                                              Ethiopia    ET   ETH 1965
## 4533                                              Ethiopia    ET   ETH 1966
## 4534                                              Ethiopia    ET   ETH 1967
## 4535                                              Ethiopia    ET   ETH 1968
## 4536                                              Ethiopia    ET   ETH 1969
## 4537                                              Ethiopia    ET   ETH 1970
## 4538                                              Ethiopia    ET   ETH 1971
## 4539                                              Ethiopia    ET   ETH 1972
## 4540                                              Ethiopia    ET   ETH 1973
## 4541                                              Ethiopia    ET   ETH 1974
## 4542                                              Ethiopia    ET   ETH 1975
## 4543                                              Ethiopia    ET   ETH 1976
## 4544                                              Ethiopia    ET   ETH 1977
## 4545                                              Ethiopia    ET   ETH 1978
## 4546                                              Ethiopia    ET   ETH 1979
## 4547                                              Ethiopia    ET   ETH 1980
## 4548                                              Ethiopia    ET   ETH 1981
## 4549                                              Ethiopia    ET   ETH 1982
## 4550                                              Ethiopia    ET   ETH 1983
## 4551                                              Ethiopia    ET   ETH 1984
## 4552                                              Ethiopia    ET   ETH 1985
## 4553                                              Ethiopia    ET   ETH 1986
## 4554                                              Ethiopia    ET   ETH 1987
## 4555                                              Ethiopia    ET   ETH 1988
## 4556                                              Ethiopia    ET   ETH 1989
## 4557                                              Ethiopia    ET   ETH 1990
## 4558                                              Ethiopia    ET   ETH 1991
## 4559                                              Ethiopia    ET   ETH 1992
## 4560                                              Ethiopia    ET   ETH 1993
## 4561                                              Ethiopia    ET   ETH 1994
## 4562                                              Ethiopia    ET   ETH 1995
## 4563                                              Ethiopia    ET   ETH 1996
## 4564                                              Ethiopia    ET   ETH 1997
## 4565                                              Ethiopia    ET   ETH 1998
## 4566                                              Ethiopia    ET   ETH 1999
## 4567                                              Ethiopia    ET   ETH 2000
## 4568                                              Ethiopia    ET   ETH 2001
## 4569                                              Ethiopia    ET   ETH 2002
## 4570                                              Ethiopia    ET   ETH 2003
## 4571                                              Ethiopia    ET   ETH 2004
## 4572                                              Ethiopia    ET   ETH 2005
## 4573                                              Ethiopia    ET   ETH 2006
## 4574                                              Ethiopia    ET   ETH 2007
## 4575                                              Ethiopia    ET   ETH 2008
## 4576                                              Ethiopia    ET   ETH 2009
## 4577                                              Ethiopia    ET   ETH 2010
## 4578                                              Ethiopia    ET   ETH 2011
## 4579                                              Ethiopia    ET   ETH 2012
## 4580                                              Ethiopia    ET   ETH 2013
## 4581                                              Ethiopia    ET   ETH 2014
## 4582                                              Ethiopia    ET   ETH 2015
## 4583                                              Ethiopia    ET   ETH 2016
## 4584                                              Ethiopia    ET   ETH 2017
## 4585                                              Ethiopia    ET   ETH 2018
## 4586                                              Ethiopia    ET   ETH 2019
## 4587                                              Ethiopia    ET   ETH 2020
## 4588                                              Ethiopia    ET   ETH 2021
## 4589                                             Euro area    XC   EMU 1960
## 4590                                             Euro area    XC   EMU 1961
## 4591                                             Euro area    XC   EMU 1962
## 4592                                             Euro area    XC   EMU 1963
## 4593                                             Euro area    XC   EMU 1964
## 4594                                             Euro area    XC   EMU 1965
## 4595                                             Euro area    XC   EMU 1966
## 4596                                             Euro area    XC   EMU 1967
## 4597                                             Euro area    XC   EMU 1968
## 4598                                             Euro area    XC   EMU 1969
## 4599                                             Euro area    XC   EMU 1970
## 4600                                             Euro area    XC   EMU 1971
## 4601                                             Euro area    XC   EMU 1972
## 4602                                             Euro area    XC   EMU 1973
## 4603                                             Euro area    XC   EMU 1974
## 4604                                             Euro area    XC   EMU 1975
## 4605                                             Euro area    XC   EMU 1976
## 4606                                             Euro area    XC   EMU 1977
## 4607                                             Euro area    XC   EMU 1978
## 4608                                             Euro area    XC   EMU 1979
## 4609                                             Euro area    XC   EMU 1980
## 4610                                             Euro area    XC   EMU 1981
## 4611                                             Euro area    XC   EMU 1982
## 4612                                             Euro area    XC   EMU 1983
## 4613                                             Euro area    XC   EMU 1984
## 4614                                             Euro area    XC   EMU 1985
## 4615                                             Euro area    XC   EMU 1986
## 4616                                             Euro area    XC   EMU 1987
## 4617                                             Euro area    XC   EMU 1988
## 4618                                             Euro area    XC   EMU 1989
## 4619                                             Euro area    XC   EMU 1990
## 4620                                             Euro area    XC   EMU 1991
## 4621                                             Euro area    XC   EMU 1992
## 4622                                             Euro area    XC   EMU 1993
## 4623                                             Euro area    XC   EMU 1994
## 4624                                             Euro area    XC   EMU 1995
## 4625                                             Euro area    XC   EMU 1996
## 4626                                             Euro area    XC   EMU 1997
## 4627                                             Euro area    XC   EMU 1998
## 4628                                             Euro area    XC   EMU 1999
## 4629                                             Euro area    XC   EMU 2000
## 4630                                             Euro area    XC   EMU 2001
## 4631                                             Euro area    XC   EMU 2002
## 4632                                             Euro area    XC   EMU 2003
## 4633                                             Euro area    XC   EMU 2004
## 4634                                             Euro area    XC   EMU 2005
## 4635                                             Euro area    XC   EMU 2006
## 4636                                             Euro area    XC   EMU 2007
## 4637                                             Euro area    XC   EMU 2008
## 4638                                             Euro area    XC   EMU 2009
## 4639                                             Euro area    XC   EMU 2010
## 4640                                             Euro area    XC   EMU 2011
## 4641                                             Euro area    XC   EMU 2012
## 4642                                             Euro area    XC   EMU 2013
## 4643                                             Euro area    XC   EMU 2014
## 4644                                             Euro area    XC   EMU 2015
## 4645                                             Euro area    XC   EMU 2016
## 4646                                             Euro area    XC   EMU 2017
## 4647                                             Euro area    XC   EMU 2018
## 4648                                             Euro area    XC   EMU 2019
## 4649                                             Euro area    XC   EMU 2020
## 4650                                             Euro area    XC   EMU 2021
## 4651                                 Europe & Central Asia    Z7   ECS 1960
## 4652                                 Europe & Central Asia    Z7   ECS 1961
## 4653                                 Europe & Central Asia    Z7   ECS 1962
## 4654                                 Europe & Central Asia    Z7   ECS 1963
## 4655                                 Europe & Central Asia    Z7   ECS 1964
## 4656                                 Europe & Central Asia    Z7   ECS 1965
## 4657                                 Europe & Central Asia    Z7   ECS 1966
## 4658                                 Europe & Central Asia    Z7   ECS 1967
## 4659                                 Europe & Central Asia    Z7   ECS 1968
## 4660                                 Europe & Central Asia    Z7   ECS 1969
## 4661                                 Europe & Central Asia    Z7   ECS 1970
## 4662                                 Europe & Central Asia    Z7   ECS 1971
## 4663                                 Europe & Central Asia    Z7   ECS 1972
## 4664                                 Europe & Central Asia    Z7   ECS 1973
## 4665                                 Europe & Central Asia    Z7   ECS 1974
## 4666                                 Europe & Central Asia    Z7   ECS 1975
## 4667                                 Europe & Central Asia    Z7   ECS 1976
## 4668                                 Europe & Central Asia    Z7   ECS 1977
## 4669                                 Europe & Central Asia    Z7   ECS 1978
## 4670                                 Europe & Central Asia    Z7   ECS 1979
## 4671                                 Europe & Central Asia    Z7   ECS 1980
## 4672                                 Europe & Central Asia    Z7   ECS 1981
## 4673                                 Europe & Central Asia    Z7   ECS 1982
## 4674                                 Europe & Central Asia    Z7   ECS 1983
## 4675                                 Europe & Central Asia    Z7   ECS 1984
## 4676                                 Europe & Central Asia    Z7   ECS 1985
## 4677                                 Europe & Central Asia    Z7   ECS 1986
## 4678                                 Europe & Central Asia    Z7   ECS 1987
## 4679                                 Europe & Central Asia    Z7   ECS 1988
## 4680                                 Europe & Central Asia    Z7   ECS 1989
## 4681                                 Europe & Central Asia    Z7   ECS 1990
## 4682                                 Europe & Central Asia    Z7   ECS 1991
## 4683                                 Europe & Central Asia    Z7   ECS 1992
## 4684                                 Europe & Central Asia    Z7   ECS 1993
## 4685                                 Europe & Central Asia    Z7   ECS 1994
## 4686                                 Europe & Central Asia    Z7   ECS 1995
## 4687                                 Europe & Central Asia    Z7   ECS 1996
## 4688                                 Europe & Central Asia    Z7   ECS 1997
## 4689                                 Europe & Central Asia    Z7   ECS 1998
## 4690                                 Europe & Central Asia    Z7   ECS 1999
## 4691                                 Europe & Central Asia    Z7   ECS 2000
## 4692                                 Europe & Central Asia    Z7   ECS 2001
## 4693                                 Europe & Central Asia    Z7   ECS 2002
## 4694                                 Europe & Central Asia    Z7   ECS 2003
## 4695                                 Europe & Central Asia    Z7   ECS 2004
## 4696                                 Europe & Central Asia    Z7   ECS 2005
## 4697                                 Europe & Central Asia    Z7   ECS 2006
## 4698                                 Europe & Central Asia    Z7   ECS 2007
## 4699                                 Europe & Central Asia    Z7   ECS 2008
## 4700                                 Europe & Central Asia    Z7   ECS 2009
## 4701                                 Europe & Central Asia    Z7   ECS 2010
## 4702                                 Europe & Central Asia    Z7   ECS 2011
## 4703                                 Europe & Central Asia    Z7   ECS 2012
## 4704                                 Europe & Central Asia    Z7   ECS 2013
## 4705                                 Europe & Central Asia    Z7   ECS 2014
## 4706                                 Europe & Central Asia    Z7   ECS 2015
## 4707                                 Europe & Central Asia    Z7   ECS 2016
## 4708                                 Europe & Central Asia    Z7   ECS 2017
## 4709                                 Europe & Central Asia    Z7   ECS 2018
## 4710                                 Europe & Central Asia    Z7   ECS 2019
## 4711                                 Europe & Central Asia    Z7   ECS 2020
## 4712                                 Europe & Central Asia    Z7   ECS 2021
## 4713         Europe & Central Asia (excluding high income)    7E   ECA 1960
## 4714         Europe & Central Asia (excluding high income)    7E   ECA 1961
## 4715         Europe & Central Asia (excluding high income)    7E   ECA 1962
## 4716         Europe & Central Asia (excluding high income)    7E   ECA 1963
## 4717         Europe & Central Asia (excluding high income)    7E   ECA 1964
## 4718         Europe & Central Asia (excluding high income)    7E   ECA 1965
## 4719         Europe & Central Asia (excluding high income)    7E   ECA 1966
## 4720         Europe & Central Asia (excluding high income)    7E   ECA 1967
## 4721         Europe & Central Asia (excluding high income)    7E   ECA 1968
## 4722         Europe & Central Asia (excluding high income)    7E   ECA 1969
## 4723         Europe & Central Asia (excluding high income)    7E   ECA 1970
## 4724         Europe & Central Asia (excluding high income)    7E   ECA 1971
## 4725         Europe & Central Asia (excluding high income)    7E   ECA 1972
## 4726         Europe & Central Asia (excluding high income)    7E   ECA 1973
## 4727         Europe & Central Asia (excluding high income)    7E   ECA 1974
## 4728         Europe & Central Asia (excluding high income)    7E   ECA 1975
## 4729         Europe & Central Asia (excluding high income)    7E   ECA 1976
## 4730         Europe & Central Asia (excluding high income)    7E   ECA 1977
## 4731         Europe & Central Asia (excluding high income)    7E   ECA 1978
## 4732         Europe & Central Asia (excluding high income)    7E   ECA 1979
## 4733         Europe & Central Asia (excluding high income)    7E   ECA 1980
## 4734         Europe & Central Asia (excluding high income)    7E   ECA 1981
## 4735         Europe & Central Asia (excluding high income)    7E   ECA 1982
## 4736         Europe & Central Asia (excluding high income)    7E   ECA 1983
## 4737         Europe & Central Asia (excluding high income)    7E   ECA 1984
## 4738         Europe & Central Asia (excluding high income)    7E   ECA 1985
## 4739         Europe & Central Asia (excluding high income)    7E   ECA 1986
## 4740         Europe & Central Asia (excluding high income)    7E   ECA 1987
## 4741         Europe & Central Asia (excluding high income)    7E   ECA 1988
## 4742         Europe & Central Asia (excluding high income)    7E   ECA 1989
## 4743         Europe & Central Asia (excluding high income)    7E   ECA 1990
## 4744         Europe & Central Asia (excluding high income)    7E   ECA 1991
## 4745         Europe & Central Asia (excluding high income)    7E   ECA 1992
## 4746         Europe & Central Asia (excluding high income)    7E   ECA 1993
## 4747         Europe & Central Asia (excluding high income)    7E   ECA 1994
## 4748         Europe & Central Asia (excluding high income)    7E   ECA 1995
## 4749         Europe & Central Asia (excluding high income)    7E   ECA 1996
## 4750         Europe & Central Asia (excluding high income)    7E   ECA 1997
## 4751         Europe & Central Asia (excluding high income)    7E   ECA 1998
## 4752         Europe & Central Asia (excluding high income)    7E   ECA 1999
## 4753         Europe & Central Asia (excluding high income)    7E   ECA 2000
## 4754         Europe & Central Asia (excluding high income)    7E   ECA 2001
## 4755         Europe & Central Asia (excluding high income)    7E   ECA 2002
## 4756         Europe & Central Asia (excluding high income)    7E   ECA 2003
## 4757         Europe & Central Asia (excluding high income)    7E   ECA 2004
## 4758         Europe & Central Asia (excluding high income)    7E   ECA 2005
## 4759         Europe & Central Asia (excluding high income)    7E   ECA 2006
## 4760         Europe & Central Asia (excluding high income)    7E   ECA 2007
## 4761         Europe & Central Asia (excluding high income)    7E   ECA 2008
## 4762         Europe & Central Asia (excluding high income)    7E   ECA 2009
## 4763         Europe & Central Asia (excluding high income)    7E   ECA 2010
## 4764         Europe & Central Asia (excluding high income)    7E   ECA 2011
## 4765         Europe & Central Asia (excluding high income)    7E   ECA 2012
## 4766         Europe & Central Asia (excluding high income)    7E   ECA 2013
## 4767         Europe & Central Asia (excluding high income)    7E   ECA 2014
## 4768         Europe & Central Asia (excluding high income)    7E   ECA 2015
## 4769         Europe & Central Asia (excluding high income)    7E   ECA 2016
## 4770         Europe & Central Asia (excluding high income)    7E   ECA 2017
## 4771         Europe & Central Asia (excluding high income)    7E   ECA 2018
## 4772         Europe & Central Asia (excluding high income)    7E   ECA 2019
## 4773         Europe & Central Asia (excluding high income)    7E   ECA 2020
## 4774         Europe & Central Asia (excluding high income)    7E   ECA 2021
## 4775          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1960
## 4776          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1961
## 4777          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1962
## 4778          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1963
## 4779          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1964
## 4780          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1965
## 4781          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1966
## 4782          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1967
## 4783          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1968
## 4784          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1969
## 4785          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1970
## 4786          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1971
## 4787          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1972
## 4788          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1973
## 4789          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1974
## 4790          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1975
## 4791          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1976
## 4792          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1977
## 4793          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1978
## 4794          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1979
## 4795          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1980
## 4796          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1981
## 4797          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1982
## 4798          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1983
## 4799          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1984
## 4800          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1985
## 4801          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1986
## 4802          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1987
## 4803          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1988
## 4804          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1989
## 4805          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1990
## 4806          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1991
## 4807          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1992
## 4808          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1993
## 4809          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1994
## 4810          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1995
## 4811          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1996
## 4812          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1997
## 4813          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1998
## 4814          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1999
## 4815          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2000
## 4816          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2001
## 4817          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2002
## 4818          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2003
## 4819          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2004
## 4820          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2005
## 4821          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2006
## 4822          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2007
## 4823          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2008
## 4824          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2009
## 4825          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2010
## 4826          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2011
## 4827          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2012
## 4828          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2013
## 4829          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2014
## 4830          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2015
## 4831          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2016
## 4832          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2017
## 4833          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2018
## 4834          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2019
## 4835          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2020
## 4836          Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2021
## 4837                                        European Union    EU   EUU 1960
## 4838                                        European Union    EU   EUU 1961
## 4839                                        European Union    EU   EUU 1962
## 4840                                        European Union    EU   EUU 1963
## 4841                                        European Union    EU   EUU 1964
## 4842                                        European Union    EU   EUU 1965
## 4843                                        European Union    EU   EUU 1966
## 4844                                        European Union    EU   EUU 1967
## 4845                                        European Union    EU   EUU 1968
## 4846                                        European Union    EU   EUU 1969
## 4847                                        European Union    EU   EUU 1970
## 4848                                        European Union    EU   EUU 1971
## 4849                                        European Union    EU   EUU 1972
## 4850                                        European Union    EU   EUU 1973
## 4851                                        European Union    EU   EUU 1974
## 4852                                        European Union    EU   EUU 1975
## 4853                                        European Union    EU   EUU 1976
## 4854                                        European Union    EU   EUU 1977
## 4855                                        European Union    EU   EUU 1978
## 4856                                        European Union    EU   EUU 1979
## 4857                                        European Union    EU   EUU 1980
## 4858                                        European Union    EU   EUU 1981
## 4859                                        European Union    EU   EUU 1982
## 4860                                        European Union    EU   EUU 1983
## 4861                                        European Union    EU   EUU 1984
## 4862                                        European Union    EU   EUU 1985
## 4863                                        European Union    EU   EUU 1986
## 4864                                        European Union    EU   EUU 1987
## 4865                                        European Union    EU   EUU 1988
## 4866                                        European Union    EU   EUU 1989
## 4867                                        European Union    EU   EUU 1990
## 4868                                        European Union    EU   EUU 1991
## 4869                                        European Union    EU   EUU 1992
## 4870                                        European Union    EU   EUU 1993
## 4871                                        European Union    EU   EUU 1994
## 4872                                        European Union    EU   EUU 1995
## 4873                                        European Union    EU   EUU 1996
## 4874                                        European Union    EU   EUU 1997
## 4875                                        European Union    EU   EUU 1998
## 4876                                        European Union    EU   EUU 1999
## 4877                                        European Union    EU   EUU 2000
## 4878                                        European Union    EU   EUU 2001
## 4879                                        European Union    EU   EUU 2002
## 4880                                        European Union    EU   EUU 2003
## 4881                                        European Union    EU   EUU 2004
## 4882                                        European Union    EU   EUU 2005
## 4883                                        European Union    EU   EUU 2006
## 4884                                        European Union    EU   EUU 2007
## 4885                                        European Union    EU   EUU 2008
## 4886                                        European Union    EU   EUU 2009
## 4887                                        European Union    EU   EUU 2010
## 4888                                        European Union    EU   EUU 2011
## 4889                                        European Union    EU   EUU 2012
## 4890                                        European Union    EU   EUU 2013
## 4891                                        European Union    EU   EUU 2014
## 4892                                        European Union    EU   EUU 2015
## 4893                                        European Union    EU   EUU 2016
## 4894                                        European Union    EU   EUU 2017
## 4895                                        European Union    EU   EUU 2018
## 4896                                        European Union    EU   EUU 2019
## 4897                                        European Union    EU   EUU 2020
## 4898                                        European Union    EU   EUU 2021
## 4899                                         Faroe Islands    FO   FRO 1960
## 4900                                         Faroe Islands    FO   FRO 1961
## 4901                                         Faroe Islands    FO   FRO 1962
## 4902                                         Faroe Islands    FO   FRO 1963
## 4903                                         Faroe Islands    FO   FRO 1964
## 4904                                         Faroe Islands    FO   FRO 1965
## 4905                                         Faroe Islands    FO   FRO 1966
## 4906                                         Faroe Islands    FO   FRO 1967
## 4907                                         Faroe Islands    FO   FRO 1968
## 4908                                         Faroe Islands    FO   FRO 1969
## 4909                                         Faroe Islands    FO   FRO 1970
## 4910                                         Faroe Islands    FO   FRO 1971
## 4911                                         Faroe Islands    FO   FRO 1972
## 4912                                         Faroe Islands    FO   FRO 1973
## 4913                                         Faroe Islands    FO   FRO 1974
## 4914                                         Faroe Islands    FO   FRO 1975
## 4915                                         Faroe Islands    FO   FRO 1976
## 4916                                         Faroe Islands    FO   FRO 1977
## 4917                                         Faroe Islands    FO   FRO 1978
## 4918                                         Faroe Islands    FO   FRO 1979
## 4919                                         Faroe Islands    FO   FRO 1980
## 4920                                         Faroe Islands    FO   FRO 1981
## 4921                                         Faroe Islands    FO   FRO 1982
## 4922                                         Faroe Islands    FO   FRO 1983
## 4923                                         Faroe Islands    FO   FRO 1984
## 4924                                         Faroe Islands    FO   FRO 1985
## 4925                                         Faroe Islands    FO   FRO 1986
## 4926                                         Faroe Islands    FO   FRO 1987
## 4927                                         Faroe Islands    FO   FRO 1988
## 4928                                         Faroe Islands    FO   FRO 1989
## 4929                                         Faroe Islands    FO   FRO 1990
## 4930                                         Faroe Islands    FO   FRO 1991
## 4931                                         Faroe Islands    FO   FRO 1992
## 4932                                         Faroe Islands    FO   FRO 1993
## 4933                                         Faroe Islands    FO   FRO 1994
## 4934                                         Faroe Islands    FO   FRO 1995
## 4935                                         Faroe Islands    FO   FRO 1996
## 4936                                         Faroe Islands    FO   FRO 1997
## 4937                                         Faroe Islands    FO   FRO 1998
## 4938                                         Faroe Islands    FO   FRO 1999
## 4939                                         Faroe Islands    FO   FRO 2000
## 4940                                         Faroe Islands    FO   FRO 2001
## 4941                                         Faroe Islands    FO   FRO 2002
## 4942                                         Faroe Islands    FO   FRO 2003
## 4943                                         Faroe Islands    FO   FRO 2004
## 4944                                         Faroe Islands    FO   FRO 2005
## 4945                                         Faroe Islands    FO   FRO 2006
## 4946                                         Faroe Islands    FO   FRO 2007
## 4947                                         Faroe Islands    FO   FRO 2008
## 4948                                         Faroe Islands    FO   FRO 2009
## 4949                                         Faroe Islands    FO   FRO 2010
## 4950                                         Faroe Islands    FO   FRO 2011
## 4951                                         Faroe Islands    FO   FRO 2012
## 4952                                         Faroe Islands    FO   FRO 2013
## 4953                                         Faroe Islands    FO   FRO 2014
## 4954                                         Faroe Islands    FO   FRO 2015
## 4955                                         Faroe Islands    FO   FRO 2016
## 4956                                         Faroe Islands    FO   FRO 2017
## 4957                                         Faroe Islands    FO   FRO 2018
## 4958                                         Faroe Islands    FO   FRO 2019
## 4959                                         Faroe Islands    FO   FRO 2020
## 4960                                         Faroe Islands    FO   FRO 2021
## 4961                                                  Fiji    FJ   FJI 1960
## 4962                                                  Fiji    FJ   FJI 1961
## 4963                                                  Fiji    FJ   FJI 1962
## 4964                                                  Fiji    FJ   FJI 1963
## 4965                                                  Fiji    FJ   FJI 1964
## 4966                                                  Fiji    FJ   FJI 1965
## 4967                                                  Fiji    FJ   FJI 1966
## 4968                                                  Fiji    FJ   FJI 1967
## 4969                                                  Fiji    FJ   FJI 1968
## 4970                                                  Fiji    FJ   FJI 1969
## 4971                                                  Fiji    FJ   FJI 1970
## 4972                                                  Fiji    FJ   FJI 1971
## 4973                                                  Fiji    FJ   FJI 1972
## 4974                                                  Fiji    FJ   FJI 1973
## 4975                                                  Fiji    FJ   FJI 1974
## 4976                                                  Fiji    FJ   FJI 1975
## 4977                                                  Fiji    FJ   FJI 1976
## 4978                                                  Fiji    FJ   FJI 1977
## 4979                                                  Fiji    FJ   FJI 1978
## 4980                                                  Fiji    FJ   FJI 1979
## 4981                                                  Fiji    FJ   FJI 1980
## 4982                                                  Fiji    FJ   FJI 1981
## 4983                                                  Fiji    FJ   FJI 1982
## 4984                                                  Fiji    FJ   FJI 1983
## 4985                                                  Fiji    FJ   FJI 1984
## 4986                                                  Fiji    FJ   FJI 1985
## 4987                                                  Fiji    FJ   FJI 1986
## 4988                                                  Fiji    FJ   FJI 1987
## 4989                                                  Fiji    FJ   FJI 1988
## 4990                                                  Fiji    FJ   FJI 1989
## 4991                                                  Fiji    FJ   FJI 1990
## 4992                                                  Fiji    FJ   FJI 1991
## 4993                                                  Fiji    FJ   FJI 1992
## 4994                                                  Fiji    FJ   FJI 1993
## 4995                                                  Fiji    FJ   FJI 1994
## 4996                                                  Fiji    FJ   FJI 1995
## 4997                                                  Fiji    FJ   FJI 1996
## 4998                                                  Fiji    FJ   FJI 1997
## 4999                                                  Fiji    FJ   FJI 1998
## 5000                                                  Fiji    FJ   FJI 1999
## 5001                                                  Fiji    FJ   FJI 2000
## 5002                                                  Fiji    FJ   FJI 2001
## 5003                                                  Fiji    FJ   FJI 2002
## 5004                                                  Fiji    FJ   FJI 2003
## 5005                                                  Fiji    FJ   FJI 2004
## 5006                                                  Fiji    FJ   FJI 2005
## 5007                                                  Fiji    FJ   FJI 2006
## 5008                                                  Fiji    FJ   FJI 2007
## 5009                                                  Fiji    FJ   FJI 2008
## 5010                                                  Fiji    FJ   FJI 2009
## 5011                                                  Fiji    FJ   FJI 2010
## 5012                                                  Fiji    FJ   FJI 2011
## 5013                                                  Fiji    FJ   FJI 2012
## 5014                                                  Fiji    FJ   FJI 2013
## 5015                                                  Fiji    FJ   FJI 2014
## 5016                                                  Fiji    FJ   FJI 2015
## 5017                                                  Fiji    FJ   FJI 2016
## 5018                                                  Fiji    FJ   FJI 2017
## 5019                                                  Fiji    FJ   FJI 2018
## 5020                                                  Fiji    FJ   FJI 2019
## 5021                                                  Fiji    FJ   FJI 2020
## 5022                                                  Fiji    FJ   FJI 2021
## 5023                                               Finland    FI   FIN 1960
## 5024                                               Finland    FI   FIN 1961
## 5025                                               Finland    FI   FIN 1962
## 5026                                               Finland    FI   FIN 1963
## 5027                                               Finland    FI   FIN 1964
## 5028                                               Finland    FI   FIN 1965
## 5029                                               Finland    FI   FIN 1966
## 5030                                               Finland    FI   FIN 1967
## 5031                                               Finland    FI   FIN 1968
## 5032                                               Finland    FI   FIN 1969
## 5033                                               Finland    FI   FIN 1970
## 5034                                               Finland    FI   FIN 1971
## 5035                                               Finland    FI   FIN 1972
## 5036                                               Finland    FI   FIN 1973
## 5037                                               Finland    FI   FIN 1974
## 5038                                               Finland    FI   FIN 1975
## 5039                                               Finland    FI   FIN 1976
## 5040                                               Finland    FI   FIN 1977
## 5041                                               Finland    FI   FIN 1978
## 5042                                               Finland    FI   FIN 1979
## 5043                                               Finland    FI   FIN 1980
## 5044                                               Finland    FI   FIN 1981
## 5045                                               Finland    FI   FIN 1982
## 5046                                               Finland    FI   FIN 1983
## 5047                                               Finland    FI   FIN 1984
## 5048                                               Finland    FI   FIN 1985
## 5049                                               Finland    FI   FIN 1986
## 5050                                               Finland    FI   FIN 1987
## 5051                                               Finland    FI   FIN 1988
## 5052                                               Finland    FI   FIN 1989
## 5053                                               Finland    FI   FIN 1990
## 5054                                               Finland    FI   FIN 1991
## 5055                                               Finland    FI   FIN 1992
## 5056                                               Finland    FI   FIN 1993
## 5057                                               Finland    FI   FIN 1994
## 5058                                               Finland    FI   FIN 1995
## 5059                                               Finland    FI   FIN 1996
## 5060                                               Finland    FI   FIN 1997
## 5061                                               Finland    FI   FIN 1998
## 5062                                               Finland    FI   FIN 1999
## 5063                                               Finland    FI   FIN 2000
## 5064                                               Finland    FI   FIN 2001
## 5065                                               Finland    FI   FIN 2002
## 5066                                               Finland    FI   FIN 2003
## 5067                                               Finland    FI   FIN 2004
## 5068                                               Finland    FI   FIN 2005
## 5069                                               Finland    FI   FIN 2006
## 5070                                               Finland    FI   FIN 2007
## 5071                                               Finland    FI   FIN 2008
## 5072                                               Finland    FI   FIN 2009
## 5073                                               Finland    FI   FIN 2010
## 5074                                               Finland    FI   FIN 2011
## 5075                                               Finland    FI   FIN 2012
## 5076                                               Finland    FI   FIN 2013
## 5077                                               Finland    FI   FIN 2014
## 5078                                               Finland    FI   FIN 2015
## 5079                                               Finland    FI   FIN 2016
## 5080                                               Finland    FI   FIN 2017
## 5081                                               Finland    FI   FIN 2018
## 5082                                               Finland    FI   FIN 2019
## 5083                                               Finland    FI   FIN 2020
## 5084                                               Finland    FI   FIN 2021
## 5085              Fragile and conflict affected situations    F1   FCS 1960
## 5086              Fragile and conflict affected situations    F1   FCS 1961
## 5087              Fragile and conflict affected situations    F1   FCS 1962
## 5088              Fragile and conflict affected situations    F1   FCS 1963
## 5089              Fragile and conflict affected situations    F1   FCS 1964
## 5090              Fragile and conflict affected situations    F1   FCS 1965
## 5091              Fragile and conflict affected situations    F1   FCS 1966
## 5092              Fragile and conflict affected situations    F1   FCS 1967
## 5093              Fragile and conflict affected situations    F1   FCS 1968
## 5094              Fragile and conflict affected situations    F1   FCS 1969
## 5095              Fragile and conflict affected situations    F1   FCS 1970
## 5096              Fragile and conflict affected situations    F1   FCS 1971
## 5097              Fragile and conflict affected situations    F1   FCS 1972
## 5098              Fragile and conflict affected situations    F1   FCS 1973
## 5099              Fragile and conflict affected situations    F1   FCS 1974
## 5100              Fragile and conflict affected situations    F1   FCS 1975
## 5101              Fragile and conflict affected situations    F1   FCS 1976
## 5102              Fragile and conflict affected situations    F1   FCS 1977
## 5103              Fragile and conflict affected situations    F1   FCS 1978
## 5104              Fragile and conflict affected situations    F1   FCS 1979
## 5105              Fragile and conflict affected situations    F1   FCS 1980
## 5106              Fragile and conflict affected situations    F1   FCS 1981
## 5107              Fragile and conflict affected situations    F1   FCS 1982
## 5108              Fragile and conflict affected situations    F1   FCS 1983
## 5109              Fragile and conflict affected situations    F1   FCS 1984
## 5110              Fragile and conflict affected situations    F1   FCS 1985
## 5111              Fragile and conflict affected situations    F1   FCS 1986
## 5112              Fragile and conflict affected situations    F1   FCS 1987
## 5113              Fragile and conflict affected situations    F1   FCS 1988
## 5114              Fragile and conflict affected situations    F1   FCS 1989
## 5115              Fragile and conflict affected situations    F1   FCS 1990
## 5116              Fragile and conflict affected situations    F1   FCS 1991
## 5117              Fragile and conflict affected situations    F1   FCS 1992
## 5118              Fragile and conflict affected situations    F1   FCS 1993
## 5119              Fragile and conflict affected situations    F1   FCS 1994
## 5120              Fragile and conflict affected situations    F1   FCS 1995
## 5121              Fragile and conflict affected situations    F1   FCS 1996
## 5122              Fragile and conflict affected situations    F1   FCS 1997
## 5123              Fragile and conflict affected situations    F1   FCS 1998
## 5124              Fragile and conflict affected situations    F1   FCS 1999
## 5125              Fragile and conflict affected situations    F1   FCS 2000
## 5126              Fragile and conflict affected situations    F1   FCS 2001
## 5127              Fragile and conflict affected situations    F1   FCS 2002
## 5128              Fragile and conflict affected situations    F1   FCS 2003
## 5129              Fragile and conflict affected situations    F1   FCS 2004
## 5130              Fragile and conflict affected situations    F1   FCS 2005
## 5131              Fragile and conflict affected situations    F1   FCS 2006
## 5132              Fragile and conflict affected situations    F1   FCS 2007
## 5133              Fragile and conflict affected situations    F1   FCS 2008
## 5134              Fragile and conflict affected situations    F1   FCS 2009
## 5135              Fragile and conflict affected situations    F1   FCS 2010
## 5136              Fragile and conflict affected situations    F1   FCS 2011
## 5137              Fragile and conflict affected situations    F1   FCS 2012
## 5138              Fragile and conflict affected situations    F1   FCS 2013
## 5139              Fragile and conflict affected situations    F1   FCS 2014
## 5140              Fragile and conflict affected situations    F1   FCS 2015
## 5141              Fragile and conflict affected situations    F1   FCS 2016
## 5142              Fragile and conflict affected situations    F1   FCS 2017
## 5143              Fragile and conflict affected situations    F1   FCS 2018
## 5144              Fragile and conflict affected situations    F1   FCS 2019
## 5145              Fragile and conflict affected situations    F1   FCS 2020
## 5146              Fragile and conflict affected situations    F1   FCS 2021
## 5147                                                France    FR   FRA 1960
## 5148                                                France    FR   FRA 1961
## 5149                                                France    FR   FRA 1962
## 5150                                                France    FR   FRA 1963
## 5151                                                France    FR   FRA 1964
## 5152                                                France    FR   FRA 1965
## 5153                                                France    FR   FRA 1966
## 5154                                                France    FR   FRA 1967
## 5155                                                France    FR   FRA 1968
## 5156                                                France    FR   FRA 1969
## 5157                                                France    FR   FRA 1970
## 5158                                                France    FR   FRA 1971
## 5159                                                France    FR   FRA 1972
## 5160                                                France    FR   FRA 1973
## 5161                                                France    FR   FRA 1974
## 5162                                                France    FR   FRA 1975
## 5163                                                France    FR   FRA 1976
## 5164                                                France    FR   FRA 1977
## 5165                                                France    FR   FRA 1978
## 5166                                                France    FR   FRA 1979
## 5167                                                France    FR   FRA 1980
## 5168                                                France    FR   FRA 1981
## 5169                                                France    FR   FRA 1982
## 5170                                                France    FR   FRA 1983
## 5171                                                France    FR   FRA 1984
## 5172                                                France    FR   FRA 1985
## 5173                                                France    FR   FRA 1986
## 5174                                                France    FR   FRA 1987
## 5175                                                France    FR   FRA 1988
## 5176                                                France    FR   FRA 1989
## 5177                                                France    FR   FRA 1990
## 5178                                                France    FR   FRA 1991
## 5179                                                France    FR   FRA 1992
## 5180                                                France    FR   FRA 1993
## 5181                                                France    FR   FRA 1994
## 5182                                                France    FR   FRA 1995
## 5183                                                France    FR   FRA 1996
## 5184                                                France    FR   FRA 1997
## 5185                                                France    FR   FRA 1998
## 5186                                                France    FR   FRA 1999
## 5187                                                France    FR   FRA 2000
## 5188                                                France    FR   FRA 2001
## 5189                                                France    FR   FRA 2002
## 5190                                                France    FR   FRA 2003
## 5191                                                France    FR   FRA 2004
## 5192                                                France    FR   FRA 2005
## 5193                                                France    FR   FRA 2006
## 5194                                                France    FR   FRA 2007
## 5195                                                France    FR   FRA 2008
## 5196                                                France    FR   FRA 2009
## 5197                                                France    FR   FRA 2010
## 5198                                                France    FR   FRA 2011
## 5199                                                France    FR   FRA 2012
## 5200                                                France    FR   FRA 2013
## 5201                                                France    FR   FRA 2014
## 5202                                                France    FR   FRA 2015
## 5203                                                France    FR   FRA 2016
## 5204                                                France    FR   FRA 2017
## 5205                                                France    FR   FRA 2018
## 5206                                                France    FR   FRA 2019
## 5207                                                France    FR   FRA 2020
## 5208                                                France    FR   FRA 2021
## 5209                                      French Polynesia    PF   PYF 1960
## 5210                                      French Polynesia    PF   PYF 1961
## 5211                                      French Polynesia    PF   PYF 1962
## 5212                                      French Polynesia    PF   PYF 1963
## 5213                                      French Polynesia    PF   PYF 1964
## 5214                                      French Polynesia    PF   PYF 1965
## 5215                                      French Polynesia    PF   PYF 1966
## 5216                                      French Polynesia    PF   PYF 1967
## 5217                                      French Polynesia    PF   PYF 1968
## 5218                                      French Polynesia    PF   PYF 1969
## 5219                                      French Polynesia    PF   PYF 1970
## 5220                                      French Polynesia    PF   PYF 1971
## 5221                                      French Polynesia    PF   PYF 1972
## 5222                                      French Polynesia    PF   PYF 1973
## 5223                                      French Polynesia    PF   PYF 1974
## 5224                                      French Polynesia    PF   PYF 1975
## 5225                                      French Polynesia    PF   PYF 1976
## 5226                                      French Polynesia    PF   PYF 1977
## 5227                                      French Polynesia    PF   PYF 1978
## 5228                                      French Polynesia    PF   PYF 1979
## 5229                                      French Polynesia    PF   PYF 1980
## 5230                                      French Polynesia    PF   PYF 1981
## 5231                                      French Polynesia    PF   PYF 1982
## 5232                                      French Polynesia    PF   PYF 1983
## 5233                                      French Polynesia    PF   PYF 1984
## 5234                                      French Polynesia    PF   PYF 1985
## 5235                                      French Polynesia    PF   PYF 1986
## 5236                                      French Polynesia    PF   PYF 1987
## 5237                                      French Polynesia    PF   PYF 1988
## 5238                                      French Polynesia    PF   PYF 1989
## 5239                                      French Polynesia    PF   PYF 1990
## 5240                                      French Polynesia    PF   PYF 1991
## 5241                                      French Polynesia    PF   PYF 1992
## 5242                                      French Polynesia    PF   PYF 1993
## 5243                                      French Polynesia    PF   PYF 1994
## 5244                                      French Polynesia    PF   PYF 1995
## 5245                                      French Polynesia    PF   PYF 1996
## 5246                                      French Polynesia    PF   PYF 1997
## 5247                                      French Polynesia    PF   PYF 1998
## 5248                                      French Polynesia    PF   PYF 1999
## 5249                                      French Polynesia    PF   PYF 2000
## 5250                                      French Polynesia    PF   PYF 2001
## 5251                                      French Polynesia    PF   PYF 2002
## 5252                                      French Polynesia    PF   PYF 2003
## 5253                                      French Polynesia    PF   PYF 2004
## 5254                                      French Polynesia    PF   PYF 2005
## 5255                                      French Polynesia    PF   PYF 2006
## 5256                                      French Polynesia    PF   PYF 2007
## 5257                                      French Polynesia    PF   PYF 2008
## 5258                                      French Polynesia    PF   PYF 2009
## 5259                                      French Polynesia    PF   PYF 2010
## 5260                                      French Polynesia    PF   PYF 2011
## 5261                                      French Polynesia    PF   PYF 2012
## 5262                                      French Polynesia    PF   PYF 2013
## 5263                                      French Polynesia    PF   PYF 2014
## 5264                                      French Polynesia    PF   PYF 2015
## 5265                                      French Polynesia    PF   PYF 2016
## 5266                                      French Polynesia    PF   PYF 2017
## 5267                                      French Polynesia    PF   PYF 2018
## 5268                                      French Polynesia    PF   PYF 2019
## 5269                                      French Polynesia    PF   PYF 2020
## 5270                                      French Polynesia    PF   PYF 2021
## 5271                                                 Gabon    GA   GAB 1960
## 5272                                                 Gabon    GA   GAB 1961
## 5273                                                 Gabon    GA   GAB 1962
## 5274                                                 Gabon    GA   GAB 1963
## 5275                                                 Gabon    GA   GAB 1964
## 5276                                                 Gabon    GA   GAB 1965
## 5277                                                 Gabon    GA   GAB 1966
## 5278                                                 Gabon    GA   GAB 1967
## 5279                                                 Gabon    GA   GAB 1968
## 5280                                                 Gabon    GA   GAB 1969
## 5281                                                 Gabon    GA   GAB 1970
## 5282                                                 Gabon    GA   GAB 1971
## 5283                                                 Gabon    GA   GAB 1972
## 5284                                                 Gabon    GA   GAB 1973
## 5285                                                 Gabon    GA   GAB 1974
## 5286                                                 Gabon    GA   GAB 1975
## 5287                                                 Gabon    GA   GAB 1976
## 5288                                                 Gabon    GA   GAB 1977
## 5289                                                 Gabon    GA   GAB 1978
## 5290                                                 Gabon    GA   GAB 1979
## 5291                                                 Gabon    GA   GAB 1980
## 5292                                                 Gabon    GA   GAB 1981
## 5293                                                 Gabon    GA   GAB 1982
## 5294                                                 Gabon    GA   GAB 1983
## 5295                                                 Gabon    GA   GAB 1984
## 5296                                                 Gabon    GA   GAB 1985
## 5297                                                 Gabon    GA   GAB 1986
## 5298                                                 Gabon    GA   GAB 1987
## 5299                                                 Gabon    GA   GAB 1988
## 5300                                                 Gabon    GA   GAB 1989
## 5301                                                 Gabon    GA   GAB 1990
## 5302                                                 Gabon    GA   GAB 1991
## 5303                                                 Gabon    GA   GAB 1992
## 5304                                                 Gabon    GA   GAB 1993
## 5305                                                 Gabon    GA   GAB 1994
## 5306                                                 Gabon    GA   GAB 1995
## 5307                                                 Gabon    GA   GAB 1996
## 5308                                                 Gabon    GA   GAB 1997
## 5309                                                 Gabon    GA   GAB 1998
## 5310                                                 Gabon    GA   GAB 1999
## 5311                                                 Gabon    GA   GAB 2000
## 5312                                                 Gabon    GA   GAB 2001
## 5313                                                 Gabon    GA   GAB 2002
## 5314                                                 Gabon    GA   GAB 2003
## 5315                                                 Gabon    GA   GAB 2004
## 5316                                                 Gabon    GA   GAB 2005
## 5317                                                 Gabon    GA   GAB 2006
## 5318                                                 Gabon    GA   GAB 2007
## 5319                                                 Gabon    GA   GAB 2008
## 5320                                                 Gabon    GA   GAB 2009
## 5321                                                 Gabon    GA   GAB 2010
## 5322                                                 Gabon    GA   GAB 2011
## 5323                                                 Gabon    GA   GAB 2012
## 5324                                                 Gabon    GA   GAB 2013
## 5325                                                 Gabon    GA   GAB 2014
## 5326                                                 Gabon    GA   GAB 2015
## 5327                                                 Gabon    GA   GAB 2016
## 5328                                                 Gabon    GA   GAB 2017
## 5329                                                 Gabon    GA   GAB 2018
## 5330                                                 Gabon    GA   GAB 2019
## 5331                                                 Gabon    GA   GAB 2020
## 5332                                                 Gabon    GA   GAB 2021
## 5333                                           Gambia, The    GM   GMB 1960
## 5334                                           Gambia, The    GM   GMB 1961
## 5335                                           Gambia, The    GM   GMB 1962
## 5336                                           Gambia, The    GM   GMB 1963
## 5337                                           Gambia, The    GM   GMB 1964
## 5338                                           Gambia, The    GM   GMB 1965
## 5339                                           Gambia, The    GM   GMB 1966
## 5340                                           Gambia, The    GM   GMB 1967
## 5341                                           Gambia, The    GM   GMB 1968
## 5342                                           Gambia, The    GM   GMB 1969
## 5343                                           Gambia, The    GM   GMB 1970
## 5344                                           Gambia, The    GM   GMB 1971
## 5345                                           Gambia, The    GM   GMB 1972
## 5346                                           Gambia, The    GM   GMB 1973
## 5347                                           Gambia, The    GM   GMB 1974
## 5348                                           Gambia, The    GM   GMB 1975
## 5349                                           Gambia, The    GM   GMB 1976
## 5350                                           Gambia, The    GM   GMB 1977
## 5351                                           Gambia, The    GM   GMB 1978
## 5352                                           Gambia, The    GM   GMB 1979
## 5353                                           Gambia, The    GM   GMB 1980
## 5354                                           Gambia, The    GM   GMB 1981
## 5355                                           Gambia, The    GM   GMB 1982
## 5356                                           Gambia, The    GM   GMB 1983
## 5357                                           Gambia, The    GM   GMB 1984
## 5358                                           Gambia, The    GM   GMB 1985
## 5359                                           Gambia, The    GM   GMB 1986
## 5360                                           Gambia, The    GM   GMB 1987
## 5361                                           Gambia, The    GM   GMB 1988
## 5362                                           Gambia, The    GM   GMB 1989
## 5363                                           Gambia, The    GM   GMB 1990
## 5364                                           Gambia, The    GM   GMB 1991
## 5365                                           Gambia, The    GM   GMB 1992
## 5366                                           Gambia, The    GM   GMB 1993
## 5367                                           Gambia, The    GM   GMB 1994
## 5368                                           Gambia, The    GM   GMB 1995
## 5369                                           Gambia, The    GM   GMB 1996
## 5370                                           Gambia, The    GM   GMB 1997
## 5371                                           Gambia, The    GM   GMB 1998
## 5372                                           Gambia, The    GM   GMB 1999
## 5373                                           Gambia, The    GM   GMB 2000
## 5374                                           Gambia, The    GM   GMB 2001
## 5375                                           Gambia, The    GM   GMB 2002
## 5376                                           Gambia, The    GM   GMB 2003
## 5377                                           Gambia, The    GM   GMB 2004
## 5378                                           Gambia, The    GM   GMB 2005
## 5379                                           Gambia, The    GM   GMB 2006
## 5380                                           Gambia, The    GM   GMB 2007
## 5381                                           Gambia, The    GM   GMB 2008
## 5382                                           Gambia, The    GM   GMB 2009
## 5383                                           Gambia, The    GM   GMB 2010
## 5384                                           Gambia, The    GM   GMB 2011
## 5385                                           Gambia, The    GM   GMB 2012
## 5386                                           Gambia, The    GM   GMB 2013
## 5387                                           Gambia, The    GM   GMB 2014
## 5388                                           Gambia, The    GM   GMB 2015
## 5389                                           Gambia, The    GM   GMB 2016
## 5390                                           Gambia, The    GM   GMB 2017
## 5391                                           Gambia, The    GM   GMB 2018
## 5392                                           Gambia, The    GM   GMB 2019
## 5393                                           Gambia, The    GM   GMB 2020
## 5394                                           Gambia, The    GM   GMB 2021
## 5395                                               Georgia    GE   GEO 1960
## 5396                                               Georgia    GE   GEO 1961
## 5397                                               Georgia    GE   GEO 1962
## 5398                                               Georgia    GE   GEO 1963
## 5399                                               Georgia    GE   GEO 1964
## 5400                                               Georgia    GE   GEO 1965
## 5401                                               Georgia    GE   GEO 1966
## 5402                                               Georgia    GE   GEO 1967
## 5403                                               Georgia    GE   GEO 1968
## 5404                                               Georgia    GE   GEO 1969
## 5405                                               Georgia    GE   GEO 1970
## 5406                                               Georgia    GE   GEO 1971
## 5407                                               Georgia    GE   GEO 1972
## 5408                                               Georgia    GE   GEO 1973
## 5409                                               Georgia    GE   GEO 1974
## 5410                                               Georgia    GE   GEO 1975
## 5411                                               Georgia    GE   GEO 1976
## 5412                                               Georgia    GE   GEO 1977
## 5413                                               Georgia    GE   GEO 1978
## 5414                                               Georgia    GE   GEO 1979
## 5415                                               Georgia    GE   GEO 1980
## 5416                                               Georgia    GE   GEO 1981
## 5417                                               Georgia    GE   GEO 1982
## 5418                                               Georgia    GE   GEO 1983
## 5419                                               Georgia    GE   GEO 1984
## 5420                                               Georgia    GE   GEO 1985
## 5421                                               Georgia    GE   GEO 1986
## 5422                                               Georgia    GE   GEO 1987
## 5423                                               Georgia    GE   GEO 1988
## 5424                                               Georgia    GE   GEO 1989
## 5425                                               Georgia    GE   GEO 1990
## 5426                                               Georgia    GE   GEO 1991
## 5427                                               Georgia    GE   GEO 1992
## 5428                                               Georgia    GE   GEO 1993
## 5429                                               Georgia    GE   GEO 1994
## 5430                                               Georgia    GE   GEO 1995
## 5431                                               Georgia    GE   GEO 1996
## 5432                                               Georgia    GE   GEO 1997
## 5433                                               Georgia    GE   GEO 1998
## 5434                                               Georgia    GE   GEO 1999
## 5435                                               Georgia    GE   GEO 2000
## 5436                                               Georgia    GE   GEO 2001
## 5437                                               Georgia    GE   GEO 2002
## 5438                                               Georgia    GE   GEO 2003
## 5439                                               Georgia    GE   GEO 2004
## 5440                                               Georgia    GE   GEO 2005
## 5441                                               Georgia    GE   GEO 2006
## 5442                                               Georgia    GE   GEO 2007
## 5443                                               Georgia    GE   GEO 2008
## 5444                                               Georgia    GE   GEO 2009
## 5445                                               Georgia    GE   GEO 2010
## 5446                                               Georgia    GE   GEO 2011
## 5447                                               Georgia    GE   GEO 2012
## 5448                                               Georgia    GE   GEO 2013
## 5449                                               Georgia    GE   GEO 2014
## 5450                                               Georgia    GE   GEO 2015
## 5451                                               Georgia    GE   GEO 2016
## 5452                                               Georgia    GE   GEO 2017
## 5453                                               Georgia    GE   GEO 2018
## 5454                                               Georgia    GE   GEO 2019
## 5455                                               Georgia    GE   GEO 2020
## 5456                                               Georgia    GE   GEO 2021
## 5457                                               Germany    DE   DEU 1960
## 5458                                               Germany    DE   DEU 1961
## 5459                                               Germany    DE   DEU 1962
## 5460                                               Germany    DE   DEU 1963
## 5461                                               Germany    DE   DEU 1964
## 5462                                               Germany    DE   DEU 1965
## 5463                                               Germany    DE   DEU 1966
## 5464                                               Germany    DE   DEU 1967
## 5465                                               Germany    DE   DEU 1968
## 5466                                               Germany    DE   DEU 1969
## 5467                                               Germany    DE   DEU 1970
## 5468                                               Germany    DE   DEU 1971
## 5469                                               Germany    DE   DEU 1972
## 5470                                               Germany    DE   DEU 1973
## 5471                                               Germany    DE   DEU 1974
## 5472                                               Germany    DE   DEU 1975
## 5473                                               Germany    DE   DEU 1976
## 5474                                               Germany    DE   DEU 1977
## 5475                                               Germany    DE   DEU 1978
## 5476                                               Germany    DE   DEU 1979
## 5477                                               Germany    DE   DEU 1980
## 5478                                               Germany    DE   DEU 1981
## 5479                                               Germany    DE   DEU 1982
## 5480                                               Germany    DE   DEU 1983
## 5481                                               Germany    DE   DEU 1984
## 5482                                               Germany    DE   DEU 1985
## 5483                                               Germany    DE   DEU 1986
## 5484                                               Germany    DE   DEU 1987
## 5485                                               Germany    DE   DEU 1988
## 5486                                               Germany    DE   DEU 1989
## 5487                                               Germany    DE   DEU 1990
## 5488                                               Germany    DE   DEU 1991
## 5489                                               Germany    DE   DEU 1992
## 5490                                               Germany    DE   DEU 1993
## 5491                                               Germany    DE   DEU 1994
## 5492                                               Germany    DE   DEU 1995
## 5493                                               Germany    DE   DEU 1996
## 5494                                               Germany    DE   DEU 1997
## 5495                                               Germany    DE   DEU 1998
## 5496                                               Germany    DE   DEU 1999
## 5497                                               Germany    DE   DEU 2000
## 5498                                               Germany    DE   DEU 2001
## 5499                                               Germany    DE   DEU 2002
## 5500                                               Germany    DE   DEU 2003
## 5501                                               Germany    DE   DEU 2004
## 5502                                               Germany    DE   DEU 2005
## 5503                                               Germany    DE   DEU 2006
## 5504                                               Germany    DE   DEU 2007
## 5505                                               Germany    DE   DEU 2008
## 5506                                               Germany    DE   DEU 2009
## 5507                                               Germany    DE   DEU 2010
## 5508                                               Germany    DE   DEU 2011
## 5509                                               Germany    DE   DEU 2012
## 5510                                               Germany    DE   DEU 2013
## 5511                                               Germany    DE   DEU 2014
## 5512                                               Germany    DE   DEU 2015
## 5513                                               Germany    DE   DEU 2016
## 5514                                               Germany    DE   DEU 2017
## 5515                                               Germany    DE   DEU 2018
## 5516                                               Germany    DE   DEU 2019
## 5517                                               Germany    DE   DEU 2020
## 5518                                               Germany    DE   DEU 2021
## 5519                                                 Ghana    GH   GHA 1960
## 5520                                                 Ghana    GH   GHA 1961
## 5521                                                 Ghana    GH   GHA 1962
## 5522                                                 Ghana    GH   GHA 1963
## 5523                                                 Ghana    GH   GHA 1964
## 5524                                                 Ghana    GH   GHA 1965
## 5525                                                 Ghana    GH   GHA 1966
## 5526                                                 Ghana    GH   GHA 1967
## 5527                                                 Ghana    GH   GHA 1968
## 5528                                                 Ghana    GH   GHA 1969
## 5529                                                 Ghana    GH   GHA 1970
## 5530                                                 Ghana    GH   GHA 1971
## 5531                                                 Ghana    GH   GHA 1972
## 5532                                                 Ghana    GH   GHA 1973
## 5533                                                 Ghana    GH   GHA 1974
## 5534                                                 Ghana    GH   GHA 1975
## 5535                                                 Ghana    GH   GHA 1976
## 5536                                                 Ghana    GH   GHA 1977
## 5537                                                 Ghana    GH   GHA 1978
## 5538                                                 Ghana    GH   GHA 1979
## 5539                                                 Ghana    GH   GHA 1980
## 5540                                                 Ghana    GH   GHA 1981
## 5541                                                 Ghana    GH   GHA 1982
## 5542                                                 Ghana    GH   GHA 1983
## 5543                                                 Ghana    GH   GHA 1984
## 5544                                                 Ghana    GH   GHA 1985
## 5545                                                 Ghana    GH   GHA 1986
## 5546                                                 Ghana    GH   GHA 1987
## 5547                                                 Ghana    GH   GHA 1988
## 5548                                                 Ghana    GH   GHA 1989
## 5549                                                 Ghana    GH   GHA 1990
## 5550                                                 Ghana    GH   GHA 1991
## 5551                                                 Ghana    GH   GHA 1992
## 5552                                                 Ghana    GH   GHA 1993
## 5553                                                 Ghana    GH   GHA 1994
## 5554                                                 Ghana    GH   GHA 1995
## 5555                                                 Ghana    GH   GHA 1996
## 5556                                                 Ghana    GH   GHA 1997
## 5557                                                 Ghana    GH   GHA 1998
## 5558                                                 Ghana    GH   GHA 1999
## 5559                                                 Ghana    GH   GHA 2000
## 5560                                                 Ghana    GH   GHA 2001
## 5561                                                 Ghana    GH   GHA 2002
## 5562                                                 Ghana    GH   GHA 2003
## 5563                                                 Ghana    GH   GHA 2004
## 5564                                                 Ghana    GH   GHA 2005
## 5565                                                 Ghana    GH   GHA 2006
## 5566                                                 Ghana    GH   GHA 2007
## 5567                                                 Ghana    GH   GHA 2008
## 5568                                                 Ghana    GH   GHA 2009
## 5569                                                 Ghana    GH   GHA 2010
## 5570                                                 Ghana    GH   GHA 2011
## 5571                                                 Ghana    GH   GHA 2012
## 5572                                                 Ghana    GH   GHA 2013
## 5573                                                 Ghana    GH   GHA 2014
## 5574                                                 Ghana    GH   GHA 2015
## 5575                                                 Ghana    GH   GHA 2016
## 5576                                                 Ghana    GH   GHA 2017
## 5577                                                 Ghana    GH   GHA 2018
## 5578                                                 Ghana    GH   GHA 2019
## 5579                                                 Ghana    GH   GHA 2020
## 5580                                                 Ghana    GH   GHA 2021
## 5581                                             Gibraltar    GI   GIB 1960
## 5582                                             Gibraltar    GI   GIB 1961
## 5583                                             Gibraltar    GI   GIB 1962
## 5584                                             Gibraltar    GI   GIB 1963
## 5585                                             Gibraltar    GI   GIB 1964
## 5586                                             Gibraltar    GI   GIB 1965
## 5587                                             Gibraltar    GI   GIB 1966
## 5588                                             Gibraltar    GI   GIB 1967
## 5589                                             Gibraltar    GI   GIB 1968
## 5590                                             Gibraltar    GI   GIB 1969
## 5591                                             Gibraltar    GI   GIB 1970
## 5592                                             Gibraltar    GI   GIB 1971
## 5593                                             Gibraltar    GI   GIB 1972
## 5594                                             Gibraltar    GI   GIB 1973
## 5595                                             Gibraltar    GI   GIB 1974
## 5596                                             Gibraltar    GI   GIB 1975
## 5597                                             Gibraltar    GI   GIB 1976
## 5598                                             Gibraltar    GI   GIB 1977
## 5599                                             Gibraltar    GI   GIB 1978
## 5600                                             Gibraltar    GI   GIB 1979
## 5601                                             Gibraltar    GI   GIB 1980
## 5602                                             Gibraltar    GI   GIB 1981
## 5603                                             Gibraltar    GI   GIB 1982
## 5604                                             Gibraltar    GI   GIB 1983
## 5605                                             Gibraltar    GI   GIB 1984
## 5606                                             Gibraltar    GI   GIB 1985
## 5607                                             Gibraltar    GI   GIB 1986
## 5608                                             Gibraltar    GI   GIB 1987
## 5609                                             Gibraltar    GI   GIB 1988
## 5610                                             Gibraltar    GI   GIB 1989
## 5611                                             Gibraltar    GI   GIB 1990
## 5612                                             Gibraltar    GI   GIB 1991
## 5613                                             Gibraltar    GI   GIB 1992
## 5614                                             Gibraltar    GI   GIB 1993
## 5615                                             Gibraltar    GI   GIB 1994
## 5616                                             Gibraltar    GI   GIB 1995
## 5617                                             Gibraltar    GI   GIB 1996
## 5618                                             Gibraltar    GI   GIB 1997
## 5619                                             Gibraltar    GI   GIB 1998
## 5620                                             Gibraltar    GI   GIB 1999
## 5621                                             Gibraltar    GI   GIB 2000
## 5622                                             Gibraltar    GI   GIB 2001
## 5623                                             Gibraltar    GI   GIB 2002
## 5624                                             Gibraltar    GI   GIB 2003
## 5625                                             Gibraltar    GI   GIB 2004
## 5626                                             Gibraltar    GI   GIB 2005
## 5627                                             Gibraltar    GI   GIB 2006
## 5628                                             Gibraltar    GI   GIB 2007
## 5629                                             Gibraltar    GI   GIB 2008
## 5630                                             Gibraltar    GI   GIB 2009
## 5631                                             Gibraltar    GI   GIB 2010
## 5632                                             Gibraltar    GI   GIB 2011
## 5633                                             Gibraltar    GI   GIB 2012
## 5634                                             Gibraltar    GI   GIB 2013
## 5635                                             Gibraltar    GI   GIB 2014
## 5636                                             Gibraltar    GI   GIB 2015
## 5637                                             Gibraltar    GI   GIB 2016
## 5638                                             Gibraltar    GI   GIB 2017
## 5639                                             Gibraltar    GI   GIB 2018
## 5640                                             Gibraltar    GI   GIB 2019
## 5641                                             Gibraltar    GI   GIB 2020
## 5642                                             Gibraltar    GI   GIB 2021
## 5643                                                Greece    GR   GRC 1960
## 5644                                                Greece    GR   GRC 1961
## 5645                                                Greece    GR   GRC 1962
## 5646                                                Greece    GR   GRC 1963
## 5647                                                Greece    GR   GRC 1964
## 5648                                                Greece    GR   GRC 1965
## 5649                                                Greece    GR   GRC 1966
## 5650                                                Greece    GR   GRC 1967
## 5651                                                Greece    GR   GRC 1968
## 5652                                                Greece    GR   GRC 1969
## 5653                                                Greece    GR   GRC 1970
## 5654                                                Greece    GR   GRC 1971
## 5655                                                Greece    GR   GRC 1972
## 5656                                                Greece    GR   GRC 1973
## 5657                                                Greece    GR   GRC 1974
## 5658                                                Greece    GR   GRC 1975
## 5659                                                Greece    GR   GRC 1976
## 5660                                                Greece    GR   GRC 1977
## 5661                                                Greece    GR   GRC 1978
## 5662                                                Greece    GR   GRC 1979
## 5663                                                Greece    GR   GRC 1980
## 5664                                                Greece    GR   GRC 1981
## 5665                                                Greece    GR   GRC 1982
## 5666                                                Greece    GR   GRC 1983
## 5667                                                Greece    GR   GRC 1984
## 5668                                                Greece    GR   GRC 1985
## 5669                                                Greece    GR   GRC 1986
## 5670                                                Greece    GR   GRC 1987
## 5671                                                Greece    GR   GRC 1988
## 5672                                                Greece    GR   GRC 1989
## 5673                                                Greece    GR   GRC 1990
## 5674                                                Greece    GR   GRC 1991
## 5675                                                Greece    GR   GRC 1992
## 5676                                                Greece    GR   GRC 1993
## 5677                                                Greece    GR   GRC 1994
## 5678                                                Greece    GR   GRC 1995
## 5679                                                Greece    GR   GRC 1996
## 5680                                                Greece    GR   GRC 1997
## 5681                                                Greece    GR   GRC 1998
## 5682                                                Greece    GR   GRC 1999
## 5683                                                Greece    GR   GRC 2000
## 5684                                                Greece    GR   GRC 2001
## 5685                                                Greece    GR   GRC 2002
## 5686                                                Greece    GR   GRC 2003
## 5687                                                Greece    GR   GRC 2004
## 5688                                                Greece    GR   GRC 2005
## 5689                                                Greece    GR   GRC 2006
## 5690                                                Greece    GR   GRC 2007
## 5691                                                Greece    GR   GRC 2008
## 5692                                                Greece    GR   GRC 2009
## 5693                                                Greece    GR   GRC 2010
## 5694                                                Greece    GR   GRC 2011
## 5695                                                Greece    GR   GRC 2012
## 5696                                                Greece    GR   GRC 2013
## 5697                                                Greece    GR   GRC 2014
## 5698                                                Greece    GR   GRC 2015
## 5699                                                Greece    GR   GRC 2016
## 5700                                                Greece    GR   GRC 2017
## 5701                                                Greece    GR   GRC 2018
## 5702                                                Greece    GR   GRC 2019
## 5703                                                Greece    GR   GRC 2020
## 5704                                                Greece    GR   GRC 2021
## 5705                                             Greenland    GL   GRL 1960
## 5706                                             Greenland    GL   GRL 1961
## 5707                                             Greenland    GL   GRL 1962
## 5708                                             Greenland    GL   GRL 1963
## 5709                                             Greenland    GL   GRL 1964
## 5710                                             Greenland    GL   GRL 1965
## 5711                                             Greenland    GL   GRL 1966
## 5712                                             Greenland    GL   GRL 1967
## 5713                                             Greenland    GL   GRL 1968
## 5714                                             Greenland    GL   GRL 1969
## 5715                                             Greenland    GL   GRL 1970
## 5716                                             Greenland    GL   GRL 1971
## 5717                                             Greenland    GL   GRL 1972
## 5718                                             Greenland    GL   GRL 1973
## 5719                                             Greenland    GL   GRL 1974
## 5720                                             Greenland    GL   GRL 1975
## 5721                                             Greenland    GL   GRL 1976
## 5722                                             Greenland    GL   GRL 1977
## 5723                                             Greenland    GL   GRL 1978
## 5724                                             Greenland    GL   GRL 1979
## 5725                                             Greenland    GL   GRL 1980
## 5726                                             Greenland    GL   GRL 1981
## 5727                                             Greenland    GL   GRL 1982
## 5728                                             Greenland    GL   GRL 1983
## 5729                                             Greenland    GL   GRL 1984
## 5730                                             Greenland    GL   GRL 1985
## 5731                                             Greenland    GL   GRL 1986
## 5732                                             Greenland    GL   GRL 1987
## 5733                                             Greenland    GL   GRL 1988
## 5734                                             Greenland    GL   GRL 1989
## 5735                                             Greenland    GL   GRL 1990
## 5736                                             Greenland    GL   GRL 1991
## 5737                                             Greenland    GL   GRL 1992
## 5738                                             Greenland    GL   GRL 1993
## 5739                                             Greenland    GL   GRL 1994
## 5740                                             Greenland    GL   GRL 1995
## 5741                                             Greenland    GL   GRL 1996
## 5742                                             Greenland    GL   GRL 1997
## 5743                                             Greenland    GL   GRL 1998
## 5744                                             Greenland    GL   GRL 1999
## 5745                                             Greenland    GL   GRL 2000
## 5746                                             Greenland    GL   GRL 2001
## 5747                                             Greenland    GL   GRL 2002
## 5748                                             Greenland    GL   GRL 2003
## 5749                                             Greenland    GL   GRL 2004
## 5750                                             Greenland    GL   GRL 2005
## 5751                                             Greenland    GL   GRL 2006
## 5752                                             Greenland    GL   GRL 2007
## 5753                                             Greenland    GL   GRL 2008
## 5754                                             Greenland    GL   GRL 2009
## 5755                                             Greenland    GL   GRL 2010
## 5756                                             Greenland    GL   GRL 2011
## 5757                                             Greenland    GL   GRL 2012
## 5758                                             Greenland    GL   GRL 2013
## 5759                                             Greenland    GL   GRL 2014
## 5760                                             Greenland    GL   GRL 2015
## 5761                                             Greenland    GL   GRL 2016
## 5762                                             Greenland    GL   GRL 2017
## 5763                                             Greenland    GL   GRL 2018
## 5764                                             Greenland    GL   GRL 2019
## 5765                                             Greenland    GL   GRL 2020
## 5766                                             Greenland    GL   GRL 2021
## 5767                                               Grenada    GD   GRD 1960
## 5768                                               Grenada    GD   GRD 1961
## 5769                                               Grenada    GD   GRD 1962
## 5770                                               Grenada    GD   GRD 1963
## 5771                                               Grenada    GD   GRD 1964
## 5772                                               Grenada    GD   GRD 1965
## 5773                                               Grenada    GD   GRD 1966
## 5774                                               Grenada    GD   GRD 1967
## 5775                                               Grenada    GD   GRD 1968
## 5776                                               Grenada    GD   GRD 1969
## 5777                                               Grenada    GD   GRD 1970
## 5778                                               Grenada    GD   GRD 1971
## 5779                                               Grenada    GD   GRD 1972
## 5780                                               Grenada    GD   GRD 1973
## 5781                                               Grenada    GD   GRD 1974
## 5782                                               Grenada    GD   GRD 1975
## 5783                                               Grenada    GD   GRD 1976
## 5784                                               Grenada    GD   GRD 1977
## 5785                                               Grenada    GD   GRD 1978
## 5786                                               Grenada    GD   GRD 1979
## 5787                                               Grenada    GD   GRD 1980
## 5788                                               Grenada    GD   GRD 1981
## 5789                                               Grenada    GD   GRD 1982
## 5790                                               Grenada    GD   GRD 1983
## 5791                                               Grenada    GD   GRD 1984
## 5792                                               Grenada    GD   GRD 1985
## 5793                                               Grenada    GD   GRD 1986
## 5794                                               Grenada    GD   GRD 1987
## 5795                                               Grenada    GD   GRD 1988
## 5796                                               Grenada    GD   GRD 1989
## 5797                                               Grenada    GD   GRD 1990
## 5798                                               Grenada    GD   GRD 1991
## 5799                                               Grenada    GD   GRD 1992
## 5800                                               Grenada    GD   GRD 1993
## 5801                                               Grenada    GD   GRD 1994
## 5802                                               Grenada    GD   GRD 1995
## 5803                                               Grenada    GD   GRD 1996
## 5804                                               Grenada    GD   GRD 1997
## 5805                                               Grenada    GD   GRD 1998
## 5806                                               Grenada    GD   GRD 1999
## 5807                                               Grenada    GD   GRD 2000
## 5808                                               Grenada    GD   GRD 2001
## 5809                                               Grenada    GD   GRD 2002
## 5810                                               Grenada    GD   GRD 2003
## 5811                                               Grenada    GD   GRD 2004
## 5812                                               Grenada    GD   GRD 2005
## 5813                                               Grenada    GD   GRD 2006
## 5814                                               Grenada    GD   GRD 2007
## 5815                                               Grenada    GD   GRD 2008
## 5816                                               Grenada    GD   GRD 2009
## 5817                                               Grenada    GD   GRD 2010
## 5818                                               Grenada    GD   GRD 2011
## 5819                                               Grenada    GD   GRD 2012
## 5820                                               Grenada    GD   GRD 2013
## 5821                                               Grenada    GD   GRD 2014
## 5822                                               Grenada    GD   GRD 2015
## 5823                                               Grenada    GD   GRD 2016
## 5824                                               Grenada    GD   GRD 2017
## 5825                                               Grenada    GD   GRD 2018
## 5826                                               Grenada    GD   GRD 2019
## 5827                                               Grenada    GD   GRD 2020
## 5828                                               Grenada    GD   GRD 2021
## 5829                                                  Guam    GU   GUM 1960
## 5830                                                  Guam    GU   GUM 1961
## 5831                                                  Guam    GU   GUM 1962
## 5832                                                  Guam    GU   GUM 1963
## 5833                                                  Guam    GU   GUM 1964
## 5834                                                  Guam    GU   GUM 1965
## 5835                                                  Guam    GU   GUM 1966
## 5836                                                  Guam    GU   GUM 1967
## 5837                                                  Guam    GU   GUM 1968
## 5838                                                  Guam    GU   GUM 1969
## 5839                                                  Guam    GU   GUM 1970
## 5840                                                  Guam    GU   GUM 1971
## 5841                                                  Guam    GU   GUM 1972
## 5842                                                  Guam    GU   GUM 1973
## 5843                                                  Guam    GU   GUM 1974
## 5844                                                  Guam    GU   GUM 1975
## 5845                                                  Guam    GU   GUM 1976
## 5846                                                  Guam    GU   GUM 1977
## 5847                                                  Guam    GU   GUM 1978
## 5848                                                  Guam    GU   GUM 1979
## 5849                                                  Guam    GU   GUM 1980
## 5850                                                  Guam    GU   GUM 1981
## 5851                                                  Guam    GU   GUM 1982
## 5852                                                  Guam    GU   GUM 1983
## 5853                                                  Guam    GU   GUM 1984
## 5854                                                  Guam    GU   GUM 1985
## 5855                                                  Guam    GU   GUM 1986
## 5856                                                  Guam    GU   GUM 1987
## 5857                                                  Guam    GU   GUM 1988
## 5858                                                  Guam    GU   GUM 1989
## 5859                                                  Guam    GU   GUM 1990
## 5860                                                  Guam    GU   GUM 1991
## 5861                                                  Guam    GU   GUM 1992
## 5862                                                  Guam    GU   GUM 1993
## 5863                                                  Guam    GU   GUM 1994
## 5864                                                  Guam    GU   GUM 1995
## 5865                                                  Guam    GU   GUM 1996
## 5866                                                  Guam    GU   GUM 1997
## 5867                                                  Guam    GU   GUM 1998
## 5868                                                  Guam    GU   GUM 1999
## 5869                                                  Guam    GU   GUM 2000
## 5870                                                  Guam    GU   GUM 2001
## 5871                                                  Guam    GU   GUM 2002
## 5872                                                  Guam    GU   GUM 2003
## 5873                                                  Guam    GU   GUM 2004
## 5874                                                  Guam    GU   GUM 2005
## 5875                                                  Guam    GU   GUM 2006
## 5876                                                  Guam    GU   GUM 2007
## 5877                                                  Guam    GU   GUM 2008
## 5878                                                  Guam    GU   GUM 2009
## 5879                                                  Guam    GU   GUM 2010
## 5880                                                  Guam    GU   GUM 2011
## 5881                                                  Guam    GU   GUM 2012
## 5882                                                  Guam    GU   GUM 2013
## 5883                                                  Guam    GU   GUM 2014
## 5884                                                  Guam    GU   GUM 2015
## 5885                                                  Guam    GU   GUM 2016
## 5886                                                  Guam    GU   GUM 2017
## 5887                                                  Guam    GU   GUM 2018
## 5888                                                  Guam    GU   GUM 2019
## 5889                                                  Guam    GU   GUM 2020
## 5890                                                  Guam    GU   GUM 2021
## 5891                                             Guatemala    GT   GTM 1960
## 5892                                             Guatemala    GT   GTM 1961
## 5893                                             Guatemala    GT   GTM 1962
## 5894                                             Guatemala    GT   GTM 1963
## 5895                                             Guatemala    GT   GTM 1964
## 5896                                             Guatemala    GT   GTM 1965
## 5897                                             Guatemala    GT   GTM 1966
## 5898                                             Guatemala    GT   GTM 1967
## 5899                                             Guatemala    GT   GTM 1968
## 5900                                             Guatemala    GT   GTM 1969
## 5901                                             Guatemala    GT   GTM 1970
## 5902                                             Guatemala    GT   GTM 1971
## 5903                                             Guatemala    GT   GTM 1972
## 5904                                             Guatemala    GT   GTM 1973
## 5905                                             Guatemala    GT   GTM 1974
## 5906                                             Guatemala    GT   GTM 1975
## 5907                                             Guatemala    GT   GTM 1976
## 5908                                             Guatemala    GT   GTM 1977
## 5909                                             Guatemala    GT   GTM 1978
## 5910                                             Guatemala    GT   GTM 1979
## 5911                                             Guatemala    GT   GTM 1980
## 5912                                             Guatemala    GT   GTM 1981
## 5913                                             Guatemala    GT   GTM 1982
## 5914                                             Guatemala    GT   GTM 1983
## 5915                                             Guatemala    GT   GTM 1984
## 5916                                             Guatemala    GT   GTM 1985
## 5917                                             Guatemala    GT   GTM 1986
## 5918                                             Guatemala    GT   GTM 1987
## 5919                                             Guatemala    GT   GTM 1988
## 5920                                             Guatemala    GT   GTM 1989
## 5921                                             Guatemala    GT   GTM 1990
## 5922                                             Guatemala    GT   GTM 1991
## 5923                                             Guatemala    GT   GTM 1992
## 5924                                             Guatemala    GT   GTM 1993
## 5925                                             Guatemala    GT   GTM 1994
## 5926                                             Guatemala    GT   GTM 1995
## 5927                                             Guatemala    GT   GTM 1996
## 5928                                             Guatemala    GT   GTM 1997
## 5929                                             Guatemala    GT   GTM 1998
## 5930                                             Guatemala    GT   GTM 1999
## 5931                                             Guatemala    GT   GTM 2000
## 5932                                             Guatemala    GT   GTM 2001
## 5933                                             Guatemala    GT   GTM 2002
## 5934                                             Guatemala    GT   GTM 2003
## 5935                                             Guatemala    GT   GTM 2004
## 5936                                             Guatemala    GT   GTM 2005
## 5937                                             Guatemala    GT   GTM 2006
## 5938                                             Guatemala    GT   GTM 2007
## 5939                                             Guatemala    GT   GTM 2008
## 5940                                             Guatemala    GT   GTM 2009
## 5941                                             Guatemala    GT   GTM 2010
## 5942                                             Guatemala    GT   GTM 2011
## 5943                                             Guatemala    GT   GTM 2012
## 5944                                             Guatemala    GT   GTM 2013
## 5945                                             Guatemala    GT   GTM 2014
## 5946                                             Guatemala    GT   GTM 2015
## 5947                                             Guatemala    GT   GTM 2016
## 5948                                             Guatemala    GT   GTM 2017
## 5949                                             Guatemala    GT   GTM 2018
## 5950                                             Guatemala    GT   GTM 2019
## 5951                                             Guatemala    GT   GTM 2020
## 5952                                             Guatemala    GT   GTM 2021
## 5953                                                Guinea    GN   GIN 1960
## 5954                                                Guinea    GN   GIN 1961
## 5955                                                Guinea    GN   GIN 1962
## 5956                                                Guinea    GN   GIN 1963
## 5957                                                Guinea    GN   GIN 1964
## 5958                                                Guinea    GN   GIN 1965
## 5959                                                Guinea    GN   GIN 1966
## 5960                                                Guinea    GN   GIN 1967
## 5961                                                Guinea    GN   GIN 1968
## 5962                                                Guinea    GN   GIN 1969
## 5963                                                Guinea    GN   GIN 1970
## 5964                                                Guinea    GN   GIN 1971
## 5965                                                Guinea    GN   GIN 1972
## 5966                                                Guinea    GN   GIN 1973
## 5967                                                Guinea    GN   GIN 1974
## 5968                                                Guinea    GN   GIN 1975
## 5969                                                Guinea    GN   GIN 1976
## 5970                                                Guinea    GN   GIN 1977
## 5971                                                Guinea    GN   GIN 1978
## 5972                                                Guinea    GN   GIN 1979
## 5973                                                Guinea    GN   GIN 1980
## 5974                                                Guinea    GN   GIN 1981
## 5975                                                Guinea    GN   GIN 1982
## 5976                                                Guinea    GN   GIN 1983
## 5977                                                Guinea    GN   GIN 1984
## 5978                                                Guinea    GN   GIN 1985
## 5979                                                Guinea    GN   GIN 1986
## 5980                                                Guinea    GN   GIN 1987
## 5981                                                Guinea    GN   GIN 1988
## 5982                                                Guinea    GN   GIN 1989
## 5983                                                Guinea    GN   GIN 1990
## 5984                                                Guinea    GN   GIN 1991
## 5985                                                Guinea    GN   GIN 1992
## 5986                                                Guinea    GN   GIN 1993
## 5987                                                Guinea    GN   GIN 1994
## 5988                                                Guinea    GN   GIN 1995
## 5989                                                Guinea    GN   GIN 1996
## 5990                                                Guinea    GN   GIN 1997
## 5991                                                Guinea    GN   GIN 1998
## 5992                                                Guinea    GN   GIN 1999
## 5993                                                Guinea    GN   GIN 2000
## 5994                                                Guinea    GN   GIN 2001
## 5995                                                Guinea    GN   GIN 2002
## 5996                                                Guinea    GN   GIN 2003
## 5997                                                Guinea    GN   GIN 2004
## 5998                                                Guinea    GN   GIN 2005
## 5999                                                Guinea    GN   GIN 2006
## 6000                                                Guinea    GN   GIN 2007
## 6001                                                Guinea    GN   GIN 2008
## 6002                                                Guinea    GN   GIN 2009
## 6003                                                Guinea    GN   GIN 2010
## 6004                                                Guinea    GN   GIN 2011
## 6005                                                Guinea    GN   GIN 2012
## 6006                                                Guinea    GN   GIN 2013
## 6007                                                Guinea    GN   GIN 2014
## 6008                                                Guinea    GN   GIN 2015
## 6009                                                Guinea    GN   GIN 2016
## 6010                                                Guinea    GN   GIN 2017
## 6011                                                Guinea    GN   GIN 2018
## 6012                                                Guinea    GN   GIN 2019
## 6013                                                Guinea    GN   GIN 2020
## 6014                                                Guinea    GN   GIN 2021
## 6015                                         Guinea-Bissau    GW   GNB 1960
## 6016                                         Guinea-Bissau    GW   GNB 1961
## 6017                                         Guinea-Bissau    GW   GNB 1962
## 6018                                         Guinea-Bissau    GW   GNB 1963
## 6019                                         Guinea-Bissau    GW   GNB 1964
## 6020                                         Guinea-Bissau    GW   GNB 1965
## 6021                                         Guinea-Bissau    GW   GNB 1966
## 6022                                         Guinea-Bissau    GW   GNB 1967
## 6023                                         Guinea-Bissau    GW   GNB 1968
## 6024                                         Guinea-Bissau    GW   GNB 1969
## 6025                                         Guinea-Bissau    GW   GNB 1970
## 6026                                         Guinea-Bissau    GW   GNB 1971
## 6027                                         Guinea-Bissau    GW   GNB 1972
## 6028                                         Guinea-Bissau    GW   GNB 1973
## 6029                                         Guinea-Bissau    GW   GNB 1974
## 6030                                         Guinea-Bissau    GW   GNB 1975
## 6031                                         Guinea-Bissau    GW   GNB 1976
## 6032                                         Guinea-Bissau    GW   GNB 1977
## 6033                                         Guinea-Bissau    GW   GNB 1978
## 6034                                         Guinea-Bissau    GW   GNB 1979
## 6035                                         Guinea-Bissau    GW   GNB 1980
## 6036                                         Guinea-Bissau    GW   GNB 1981
## 6037                                         Guinea-Bissau    GW   GNB 1982
## 6038                                         Guinea-Bissau    GW   GNB 1983
## 6039                                         Guinea-Bissau    GW   GNB 1984
## 6040                                         Guinea-Bissau    GW   GNB 1985
## 6041                                         Guinea-Bissau    GW   GNB 1986
## 6042                                         Guinea-Bissau    GW   GNB 1987
## 6043                                         Guinea-Bissau    GW   GNB 1988
## 6044                                         Guinea-Bissau    GW   GNB 1989
## 6045                                         Guinea-Bissau    GW   GNB 1990
## 6046                                         Guinea-Bissau    GW   GNB 1991
## 6047                                         Guinea-Bissau    GW   GNB 1992
## 6048                                         Guinea-Bissau    GW   GNB 1993
## 6049                                         Guinea-Bissau    GW   GNB 1994
## 6050                                         Guinea-Bissau    GW   GNB 1995
## 6051                                         Guinea-Bissau    GW   GNB 1996
## 6052                                         Guinea-Bissau    GW   GNB 1997
## 6053                                         Guinea-Bissau    GW   GNB 1998
## 6054                                         Guinea-Bissau    GW   GNB 1999
## 6055                                         Guinea-Bissau    GW   GNB 2000
## 6056                                         Guinea-Bissau    GW   GNB 2001
## 6057                                         Guinea-Bissau    GW   GNB 2002
## 6058                                         Guinea-Bissau    GW   GNB 2003
## 6059                                         Guinea-Bissau    GW   GNB 2004
## 6060                                         Guinea-Bissau    GW   GNB 2005
## 6061                                         Guinea-Bissau    GW   GNB 2006
## 6062                                         Guinea-Bissau    GW   GNB 2007
## 6063                                         Guinea-Bissau    GW   GNB 2008
## 6064                                         Guinea-Bissau    GW   GNB 2009
## 6065                                         Guinea-Bissau    GW   GNB 2010
## 6066                                         Guinea-Bissau    GW   GNB 2011
## 6067                                         Guinea-Bissau    GW   GNB 2012
## 6068                                         Guinea-Bissau    GW   GNB 2013
## 6069                                         Guinea-Bissau    GW   GNB 2014
## 6070                                         Guinea-Bissau    GW   GNB 2015
## 6071                                         Guinea-Bissau    GW   GNB 2016
## 6072                                         Guinea-Bissau    GW   GNB 2017
## 6073                                         Guinea-Bissau    GW   GNB 2018
## 6074                                         Guinea-Bissau    GW   GNB 2019
## 6075                                         Guinea-Bissau    GW   GNB 2020
## 6076                                         Guinea-Bissau    GW   GNB 2021
## 6077                                                Guyana    GY   GUY 1960
## 6078                                                Guyana    GY   GUY 1961
## 6079                                                Guyana    GY   GUY 1962
## 6080                                                Guyana    GY   GUY 1963
## 6081                                                Guyana    GY   GUY 1964
## 6082                                                Guyana    GY   GUY 1965
## 6083                                                Guyana    GY   GUY 1966
## 6084                                                Guyana    GY   GUY 1967
## 6085                                                Guyana    GY   GUY 1968
## 6086                                                Guyana    GY   GUY 1969
## 6087                                                Guyana    GY   GUY 1970
## 6088                                                Guyana    GY   GUY 1971
## 6089                                                Guyana    GY   GUY 1972
## 6090                                                Guyana    GY   GUY 1973
## 6091                                                Guyana    GY   GUY 1974
## 6092                                                Guyana    GY   GUY 1975
## 6093                                                Guyana    GY   GUY 1976
## 6094                                                Guyana    GY   GUY 1977
## 6095                                                Guyana    GY   GUY 1978
## 6096                                                Guyana    GY   GUY 1979
## 6097                                                Guyana    GY   GUY 1980
## 6098                                                Guyana    GY   GUY 1981
## 6099                                                Guyana    GY   GUY 1982
## 6100                                                Guyana    GY   GUY 1983
## 6101                                                Guyana    GY   GUY 1984
## 6102                                                Guyana    GY   GUY 1985
## 6103                                                Guyana    GY   GUY 1986
## 6104                                                Guyana    GY   GUY 1987
## 6105                                                Guyana    GY   GUY 1988
## 6106                                                Guyana    GY   GUY 1989
## 6107                                                Guyana    GY   GUY 1990
## 6108                                                Guyana    GY   GUY 1991
## 6109                                                Guyana    GY   GUY 1992
## 6110                                                Guyana    GY   GUY 1993
## 6111                                                Guyana    GY   GUY 1994
## 6112                                                Guyana    GY   GUY 1995
## 6113                                                Guyana    GY   GUY 1996
## 6114                                                Guyana    GY   GUY 1997
## 6115                                                Guyana    GY   GUY 1998
## 6116                                                Guyana    GY   GUY 1999
## 6117                                                Guyana    GY   GUY 2000
## 6118                                                Guyana    GY   GUY 2001
## 6119                                                Guyana    GY   GUY 2002
## 6120                                                Guyana    GY   GUY 2003
## 6121                                                Guyana    GY   GUY 2004
## 6122                                                Guyana    GY   GUY 2005
## 6123                                                Guyana    GY   GUY 2006
## 6124                                                Guyana    GY   GUY 2007
## 6125                                                Guyana    GY   GUY 2008
## 6126                                                Guyana    GY   GUY 2009
## 6127                                                Guyana    GY   GUY 2010
## 6128                                                Guyana    GY   GUY 2011
## 6129                                                Guyana    GY   GUY 2012
## 6130                                                Guyana    GY   GUY 2013
## 6131                                                Guyana    GY   GUY 2014
## 6132                                                Guyana    GY   GUY 2015
## 6133                                                Guyana    GY   GUY 2016
## 6134                                                Guyana    GY   GUY 2017
## 6135                                                Guyana    GY   GUY 2018
## 6136                                                Guyana    GY   GUY 2019
## 6137                                                Guyana    GY   GUY 2020
## 6138                                                Guyana    GY   GUY 2021
## 6139                                                 Haiti    HT   HTI 1960
## 6140                                                 Haiti    HT   HTI 1961
## 6141                                                 Haiti    HT   HTI 1962
## 6142                                                 Haiti    HT   HTI 1963
## 6143                                                 Haiti    HT   HTI 1964
## 6144                                                 Haiti    HT   HTI 1965
## 6145                                                 Haiti    HT   HTI 1966
## 6146                                                 Haiti    HT   HTI 1967
## 6147                                                 Haiti    HT   HTI 1968
## 6148                                                 Haiti    HT   HTI 1969
## 6149                                                 Haiti    HT   HTI 1970
## 6150                                                 Haiti    HT   HTI 1971
## 6151                                                 Haiti    HT   HTI 1972
## 6152                                                 Haiti    HT   HTI 1973
## 6153                                                 Haiti    HT   HTI 1974
## 6154                                                 Haiti    HT   HTI 1975
## 6155                                                 Haiti    HT   HTI 1976
## 6156                                                 Haiti    HT   HTI 1977
## 6157                                                 Haiti    HT   HTI 1978
## 6158                                                 Haiti    HT   HTI 1979
## 6159                                                 Haiti    HT   HTI 1980
## 6160                                                 Haiti    HT   HTI 1981
## 6161                                                 Haiti    HT   HTI 1982
## 6162                                                 Haiti    HT   HTI 1983
## 6163                                                 Haiti    HT   HTI 1984
## 6164                                                 Haiti    HT   HTI 1985
## 6165                                                 Haiti    HT   HTI 1986
## 6166                                                 Haiti    HT   HTI 1987
## 6167                                                 Haiti    HT   HTI 1988
## 6168                                                 Haiti    HT   HTI 1989
## 6169                                                 Haiti    HT   HTI 1990
## 6170                                                 Haiti    HT   HTI 1991
## 6171                                                 Haiti    HT   HTI 1992
## 6172                                                 Haiti    HT   HTI 1993
## 6173                                                 Haiti    HT   HTI 1994
## 6174                                                 Haiti    HT   HTI 1995
## 6175                                                 Haiti    HT   HTI 1996
## 6176                                                 Haiti    HT   HTI 1997
## 6177                                                 Haiti    HT   HTI 1998
## 6178                                                 Haiti    HT   HTI 1999
## 6179                                                 Haiti    HT   HTI 2000
## 6180                                                 Haiti    HT   HTI 2001
## 6181                                                 Haiti    HT   HTI 2002
## 6182                                                 Haiti    HT   HTI 2003
## 6183                                                 Haiti    HT   HTI 2004
## 6184                                                 Haiti    HT   HTI 2005
## 6185                                                 Haiti    HT   HTI 2006
## 6186                                                 Haiti    HT   HTI 2007
## 6187                                                 Haiti    HT   HTI 2008
## 6188                                                 Haiti    HT   HTI 2009
## 6189                                                 Haiti    HT   HTI 2010
## 6190                                                 Haiti    HT   HTI 2011
## 6191                                                 Haiti    HT   HTI 2012
## 6192                                                 Haiti    HT   HTI 2013
## 6193                                                 Haiti    HT   HTI 2014
## 6194                                                 Haiti    HT   HTI 2015
## 6195                                                 Haiti    HT   HTI 2016
## 6196                                                 Haiti    HT   HTI 2017
## 6197                                                 Haiti    HT   HTI 2018
## 6198                                                 Haiti    HT   HTI 2019
## 6199                                                 Haiti    HT   HTI 2020
## 6200                                                 Haiti    HT   HTI 2021
## 6201                Heavily indebted poor countries (HIPC)    XE   HPC 1960
## 6202                Heavily indebted poor countries (HIPC)    XE   HPC 1961
## 6203                Heavily indebted poor countries (HIPC)    XE   HPC 1962
## 6204                Heavily indebted poor countries (HIPC)    XE   HPC 1963
## 6205                Heavily indebted poor countries (HIPC)    XE   HPC 1964
## 6206                Heavily indebted poor countries (HIPC)    XE   HPC 1965
## 6207                Heavily indebted poor countries (HIPC)    XE   HPC 1966
## 6208                Heavily indebted poor countries (HIPC)    XE   HPC 1967
## 6209                Heavily indebted poor countries (HIPC)    XE   HPC 1968
## 6210                Heavily indebted poor countries (HIPC)    XE   HPC 1969
## 6211                Heavily indebted poor countries (HIPC)    XE   HPC 1970
## 6212                Heavily indebted poor countries (HIPC)    XE   HPC 1971
## 6213                Heavily indebted poor countries (HIPC)    XE   HPC 1972
## 6214                Heavily indebted poor countries (HIPC)    XE   HPC 1973
## 6215                Heavily indebted poor countries (HIPC)    XE   HPC 1974
## 6216                Heavily indebted poor countries (HIPC)    XE   HPC 1975
## 6217                Heavily indebted poor countries (HIPC)    XE   HPC 1976
## 6218                Heavily indebted poor countries (HIPC)    XE   HPC 1977
## 6219                Heavily indebted poor countries (HIPC)    XE   HPC 1978
## 6220                Heavily indebted poor countries (HIPC)    XE   HPC 1979
## 6221                Heavily indebted poor countries (HIPC)    XE   HPC 1980
## 6222                Heavily indebted poor countries (HIPC)    XE   HPC 1981
## 6223                Heavily indebted poor countries (HIPC)    XE   HPC 1982
## 6224                Heavily indebted poor countries (HIPC)    XE   HPC 1983
## 6225                Heavily indebted poor countries (HIPC)    XE   HPC 1984
## 6226                Heavily indebted poor countries (HIPC)    XE   HPC 1985
## 6227                Heavily indebted poor countries (HIPC)    XE   HPC 1986
## 6228                Heavily indebted poor countries (HIPC)    XE   HPC 1987
## 6229                Heavily indebted poor countries (HIPC)    XE   HPC 1988
## 6230                Heavily indebted poor countries (HIPC)    XE   HPC 1989
## 6231                Heavily indebted poor countries (HIPC)    XE   HPC 1990
## 6232                Heavily indebted poor countries (HIPC)    XE   HPC 1991
## 6233                Heavily indebted poor countries (HIPC)    XE   HPC 1992
## 6234                Heavily indebted poor countries (HIPC)    XE   HPC 1993
## 6235                Heavily indebted poor countries (HIPC)    XE   HPC 1994
## 6236                Heavily indebted poor countries (HIPC)    XE   HPC 1995
## 6237                Heavily indebted poor countries (HIPC)    XE   HPC 1996
## 6238                Heavily indebted poor countries (HIPC)    XE   HPC 1997
## 6239                Heavily indebted poor countries (HIPC)    XE   HPC 1998
## 6240                Heavily indebted poor countries (HIPC)    XE   HPC 1999
## 6241                Heavily indebted poor countries (HIPC)    XE   HPC 2000
## 6242                Heavily indebted poor countries (HIPC)    XE   HPC 2001
## 6243                Heavily indebted poor countries (HIPC)    XE   HPC 2002
## 6244                Heavily indebted poor countries (HIPC)    XE   HPC 2003
## 6245                Heavily indebted poor countries (HIPC)    XE   HPC 2004
## 6246                Heavily indebted poor countries (HIPC)    XE   HPC 2005
## 6247                Heavily indebted poor countries (HIPC)    XE   HPC 2006
## 6248                Heavily indebted poor countries (HIPC)    XE   HPC 2007
## 6249                Heavily indebted poor countries (HIPC)    XE   HPC 2008
## 6250                Heavily indebted poor countries (HIPC)    XE   HPC 2009
## 6251                Heavily indebted poor countries (HIPC)    XE   HPC 2010
## 6252                Heavily indebted poor countries (HIPC)    XE   HPC 2011
## 6253                Heavily indebted poor countries (HIPC)    XE   HPC 2012
## 6254                Heavily indebted poor countries (HIPC)    XE   HPC 2013
## 6255                Heavily indebted poor countries (HIPC)    XE   HPC 2014
## 6256                Heavily indebted poor countries (HIPC)    XE   HPC 2015
## 6257                Heavily indebted poor countries (HIPC)    XE   HPC 2016
## 6258                Heavily indebted poor countries (HIPC)    XE   HPC 2017
## 6259                Heavily indebted poor countries (HIPC)    XE   HPC 2018
## 6260                Heavily indebted poor countries (HIPC)    XE   HPC 2019
## 6261                Heavily indebted poor countries (HIPC)    XE   HPC 2020
## 6262                Heavily indebted poor countries (HIPC)    XE   HPC 2021
## 6263                                           High income    XD       1960
## 6264                                           High income    XD       1961
## 6265                                           High income    XD       1962
## 6266                                           High income    XD       1963
## 6267                                           High income    XD       1964
## 6268                                           High income    XD       1965
## 6269                                           High income    XD       1966
## 6270                                           High income    XD       1967
## 6271                                           High income    XD       1968
## 6272                                           High income    XD       1969
## 6273                                           High income    XD       1970
## 6274                                           High income    XD       1971
## 6275                                           High income    XD       1972
## 6276                                           High income    XD       1973
## 6277                                           High income    XD       1974
## 6278                                           High income    XD       1975
## 6279                                           High income    XD       1976
## 6280                                           High income    XD       1977
## 6281                                           High income    XD       1978
## 6282                                           High income    XD       1979
## 6283                                           High income    XD       1980
## 6284                                           High income    XD       1981
## 6285                                           High income    XD       1982
## 6286                                           High income    XD       1983
## 6287                                           High income    XD       1984
## 6288                                           High income    XD       1985
## 6289                                           High income    XD       1986
## 6290                                           High income    XD       1987
## 6291                                           High income    XD       1988
## 6292                                           High income    XD       1989
## 6293                                           High income    XD       1990
## 6294                                           High income    XD       1991
## 6295                                           High income    XD       1992
## 6296                                           High income    XD       1993
## 6297                                           High income    XD       1994
## 6298                                           High income    XD       1995
## 6299                                           High income    XD       1996
## 6300                                           High income    XD       1997
## 6301                                           High income    XD       1998
## 6302                                           High income    XD       1999
## 6303                                           High income    XD       2000
## 6304                                           High income    XD       2001
## 6305                                           High income    XD       2002
## 6306                                           High income    XD       2003
## 6307                                           High income    XD       2004
## 6308                                           High income    XD       2005
## 6309                                           High income    XD       2006
## 6310                                           High income    XD       2007
## 6311                                           High income    XD       2008
## 6312                                           High income    XD       2009
## 6313                                           High income    XD       2010
## 6314                                           High income    XD       2011
## 6315                                           High income    XD       2012
## 6316                                           High income    XD       2013
## 6317                                           High income    XD       2014
## 6318                                           High income    XD       2015
## 6319                                           High income    XD       2016
## 6320                                           High income    XD       2017
## 6321                                           High income    XD       2018
## 6322                                           High income    XD       2019
## 6323                                           High income    XD       2020
## 6324                                           High income    XD       2021
## 6325                                              Honduras    HN   HND 1960
## 6326                                              Honduras    HN   HND 1961
## 6327                                              Honduras    HN   HND 1962
## 6328                                              Honduras    HN   HND 1963
## 6329                                              Honduras    HN   HND 1964
## 6330                                              Honduras    HN   HND 1965
## 6331                                              Honduras    HN   HND 1966
## 6332                                              Honduras    HN   HND 1967
## 6333                                              Honduras    HN   HND 1968
## 6334                                              Honduras    HN   HND 1969
## 6335                                              Honduras    HN   HND 1970
## 6336                                              Honduras    HN   HND 1971
## 6337                                              Honduras    HN   HND 1972
## 6338                                              Honduras    HN   HND 1973
## 6339                                              Honduras    HN   HND 1974
## 6340                                              Honduras    HN   HND 1975
## 6341                                              Honduras    HN   HND 1976
## 6342                                              Honduras    HN   HND 1977
## 6343                                              Honduras    HN   HND 1978
## 6344                                              Honduras    HN   HND 1979
## 6345                                              Honduras    HN   HND 1980
## 6346                                              Honduras    HN   HND 1981
## 6347                                              Honduras    HN   HND 1982
## 6348                                              Honduras    HN   HND 1983
## 6349                                              Honduras    HN   HND 1984
## 6350                                              Honduras    HN   HND 1985
## 6351                                              Honduras    HN   HND 1986
## 6352                                              Honduras    HN   HND 1987
## 6353                                              Honduras    HN   HND 1988
## 6354                                              Honduras    HN   HND 1989
## 6355                                              Honduras    HN   HND 1990
## 6356                                              Honduras    HN   HND 1991
## 6357                                              Honduras    HN   HND 1992
## 6358                                              Honduras    HN   HND 1993
## 6359                                              Honduras    HN   HND 1994
## 6360                                              Honduras    HN   HND 1995
## 6361                                              Honduras    HN   HND 1996
## 6362                                              Honduras    HN   HND 1997
## 6363                                              Honduras    HN   HND 1998
## 6364                                              Honduras    HN   HND 1999
## 6365                                              Honduras    HN   HND 2000
## 6366                                              Honduras    HN   HND 2001
## 6367                                              Honduras    HN   HND 2002
## 6368                                              Honduras    HN   HND 2003
## 6369                                              Honduras    HN   HND 2004
## 6370                                              Honduras    HN   HND 2005
## 6371                                              Honduras    HN   HND 2006
## 6372                                              Honduras    HN   HND 2007
## 6373                                              Honduras    HN   HND 2008
## 6374                                              Honduras    HN   HND 2009
## 6375                                              Honduras    HN   HND 2010
## 6376                                              Honduras    HN   HND 2011
## 6377                                              Honduras    HN   HND 2012
## 6378                                              Honduras    HN   HND 2013
## 6379                                              Honduras    HN   HND 2014
## 6380                                              Honduras    HN   HND 2015
## 6381                                              Honduras    HN   HND 2016
## 6382                                              Honduras    HN   HND 2017
## 6383                                              Honduras    HN   HND 2018
## 6384                                              Honduras    HN   HND 2019
## 6385                                              Honduras    HN   HND 2020
## 6386                                              Honduras    HN   HND 2021
## 6387                                  Hong Kong SAR, China    HK   HKG 1960
## 6388                                  Hong Kong SAR, China    HK   HKG 1961
## 6389                                  Hong Kong SAR, China    HK   HKG 1962
## 6390                                  Hong Kong SAR, China    HK   HKG 1963
## 6391                                  Hong Kong SAR, China    HK   HKG 1964
## 6392                                  Hong Kong SAR, China    HK   HKG 1965
## 6393                                  Hong Kong SAR, China    HK   HKG 1966
## 6394                                  Hong Kong SAR, China    HK   HKG 1967
## 6395                                  Hong Kong SAR, China    HK   HKG 1968
## 6396                                  Hong Kong SAR, China    HK   HKG 1969
## 6397                                  Hong Kong SAR, China    HK   HKG 1970
## 6398                                  Hong Kong SAR, China    HK   HKG 1971
## 6399                                  Hong Kong SAR, China    HK   HKG 1972
## 6400                                  Hong Kong SAR, China    HK   HKG 1973
## 6401                                  Hong Kong SAR, China    HK   HKG 1974
## 6402                                  Hong Kong SAR, China    HK   HKG 1975
## 6403                                  Hong Kong SAR, China    HK   HKG 1976
## 6404                                  Hong Kong SAR, China    HK   HKG 1977
## 6405                                  Hong Kong SAR, China    HK   HKG 1978
## 6406                                  Hong Kong SAR, China    HK   HKG 1979
## 6407                                  Hong Kong SAR, China    HK   HKG 1980
## 6408                                  Hong Kong SAR, China    HK   HKG 1981
## 6409                                  Hong Kong SAR, China    HK   HKG 1982
## 6410                                  Hong Kong SAR, China    HK   HKG 1983
## 6411                                  Hong Kong SAR, China    HK   HKG 1984
## 6412                                  Hong Kong SAR, China    HK   HKG 1985
## 6413                                  Hong Kong SAR, China    HK   HKG 1986
## 6414                                  Hong Kong SAR, China    HK   HKG 1987
## 6415                                  Hong Kong SAR, China    HK   HKG 1988
## 6416                                  Hong Kong SAR, China    HK   HKG 1989
## 6417                                  Hong Kong SAR, China    HK   HKG 1990
## 6418                                  Hong Kong SAR, China    HK   HKG 1991
## 6419                                  Hong Kong SAR, China    HK   HKG 1992
## 6420                                  Hong Kong SAR, China    HK   HKG 1993
## 6421                                  Hong Kong SAR, China    HK   HKG 1994
## 6422                                  Hong Kong SAR, China    HK   HKG 1995
## 6423                                  Hong Kong SAR, China    HK   HKG 1996
## 6424                                  Hong Kong SAR, China    HK   HKG 1997
## 6425                                  Hong Kong SAR, China    HK   HKG 1998
## 6426                                  Hong Kong SAR, China    HK   HKG 1999
## 6427                                  Hong Kong SAR, China    HK   HKG 2000
## 6428                                  Hong Kong SAR, China    HK   HKG 2001
## 6429                                  Hong Kong SAR, China    HK   HKG 2002
## 6430                                  Hong Kong SAR, China    HK   HKG 2003
## 6431                                  Hong Kong SAR, China    HK   HKG 2004
## 6432                                  Hong Kong SAR, China    HK   HKG 2005
## 6433                                  Hong Kong SAR, China    HK   HKG 2006
## 6434                                  Hong Kong SAR, China    HK   HKG 2007
## 6435                                  Hong Kong SAR, China    HK   HKG 2008
## 6436                                  Hong Kong SAR, China    HK   HKG 2009
## 6437                                  Hong Kong SAR, China    HK   HKG 2010
## 6438                                  Hong Kong SAR, China    HK   HKG 2011
## 6439                                  Hong Kong SAR, China    HK   HKG 2012
## 6440                                  Hong Kong SAR, China    HK   HKG 2013
## 6441                                  Hong Kong SAR, China    HK   HKG 2014
## 6442                                  Hong Kong SAR, China    HK   HKG 2015
## 6443                                  Hong Kong SAR, China    HK   HKG 2016
## 6444                                  Hong Kong SAR, China    HK   HKG 2017
## 6445                                  Hong Kong SAR, China    HK   HKG 2018
## 6446                                  Hong Kong SAR, China    HK   HKG 2019
## 6447                                  Hong Kong SAR, China    HK   HKG 2020
## 6448                                  Hong Kong SAR, China    HK   HKG 2021
## 6449                                               Hungary    HU   HUN 1960
## 6450                                               Hungary    HU   HUN 1961
## 6451                                               Hungary    HU   HUN 1962
## 6452                                               Hungary    HU   HUN 1963
## 6453                                               Hungary    HU   HUN 1964
## 6454                                               Hungary    HU   HUN 1965
## 6455                                               Hungary    HU   HUN 1966
## 6456                                               Hungary    HU   HUN 1967
## 6457                                               Hungary    HU   HUN 1968
## 6458                                               Hungary    HU   HUN 1969
## 6459                                               Hungary    HU   HUN 1970
## 6460                                               Hungary    HU   HUN 1971
## 6461                                               Hungary    HU   HUN 1972
## 6462                                               Hungary    HU   HUN 1973
## 6463                                               Hungary    HU   HUN 1974
## 6464                                               Hungary    HU   HUN 1975
## 6465                                               Hungary    HU   HUN 1976
## 6466                                               Hungary    HU   HUN 1977
## 6467                                               Hungary    HU   HUN 1978
## 6468                                               Hungary    HU   HUN 1979
## 6469                                               Hungary    HU   HUN 1980
## 6470                                               Hungary    HU   HUN 1981
## 6471                                               Hungary    HU   HUN 1982
## 6472                                               Hungary    HU   HUN 1983
## 6473                                               Hungary    HU   HUN 1984
## 6474                                               Hungary    HU   HUN 1985
## 6475                                               Hungary    HU   HUN 1986
## 6476                                               Hungary    HU   HUN 1987
## 6477                                               Hungary    HU   HUN 1988
## 6478                                               Hungary    HU   HUN 1989
## 6479                                               Hungary    HU   HUN 1990
## 6480                                               Hungary    HU   HUN 1991
## 6481                                               Hungary    HU   HUN 1992
## 6482                                               Hungary    HU   HUN 1993
## 6483                                               Hungary    HU   HUN 1994
## 6484                                               Hungary    HU   HUN 1995
## 6485                                               Hungary    HU   HUN 1996
## 6486                                               Hungary    HU   HUN 1997
## 6487                                               Hungary    HU   HUN 1998
## 6488                                               Hungary    HU   HUN 1999
## 6489                                               Hungary    HU   HUN 2000
## 6490                                               Hungary    HU   HUN 2001
## 6491                                               Hungary    HU   HUN 2002
## 6492                                               Hungary    HU   HUN 2003
## 6493                                               Hungary    HU   HUN 2004
## 6494                                               Hungary    HU   HUN 2005
## 6495                                               Hungary    HU   HUN 2006
## 6496                                               Hungary    HU   HUN 2007
## 6497                                               Hungary    HU   HUN 2008
## 6498                                               Hungary    HU   HUN 2009
## 6499                                               Hungary    HU   HUN 2010
## 6500                                               Hungary    HU   HUN 2011
## 6501                                               Hungary    HU   HUN 2012
## 6502                                               Hungary    HU   HUN 2013
## 6503                                               Hungary    HU   HUN 2014
## 6504                                               Hungary    HU   HUN 2015
## 6505                                               Hungary    HU   HUN 2016
## 6506                                               Hungary    HU   HUN 2017
## 6507                                               Hungary    HU   HUN 2018
## 6508                                               Hungary    HU   HUN 2019
## 6509                                               Hungary    HU   HUN 2020
## 6510                                               Hungary    HU   HUN 2021
## 6511                                             IBRD only    XF   IBD 1960
## 6512                                             IBRD only    XF   IBD 1961
## 6513                                             IBRD only    XF   IBD 1962
## 6514                                             IBRD only    XF   IBD 1963
## 6515                                             IBRD only    XF   IBD 1964
## 6516                                             IBRD only    XF   IBD 1965
## 6517                                             IBRD only    XF   IBD 1966
## 6518                                             IBRD only    XF   IBD 1967
## 6519                                             IBRD only    XF   IBD 1968
## 6520                                             IBRD only    XF   IBD 1969
## 6521                                             IBRD only    XF   IBD 1970
## 6522                                             IBRD only    XF   IBD 1971
## 6523                                             IBRD only    XF   IBD 1972
## 6524                                             IBRD only    XF   IBD 1973
## 6525                                             IBRD only    XF   IBD 1974
## 6526                                             IBRD only    XF   IBD 1975
## 6527                                             IBRD only    XF   IBD 1976
## 6528                                             IBRD only    XF   IBD 1977
## 6529                                             IBRD only    XF   IBD 1978
## 6530                                             IBRD only    XF   IBD 1979
## 6531                                             IBRD only    XF   IBD 1980
## 6532                                             IBRD only    XF   IBD 1981
## 6533                                             IBRD only    XF   IBD 1982
## 6534                                             IBRD only    XF   IBD 1983
## 6535                                             IBRD only    XF   IBD 1984
## 6536                                             IBRD only    XF   IBD 1985
## 6537                                             IBRD only    XF   IBD 1986
## 6538                                             IBRD only    XF   IBD 1987
## 6539                                             IBRD only    XF   IBD 1988
## 6540                                             IBRD only    XF   IBD 1989
## 6541                                             IBRD only    XF   IBD 1990
## 6542                                             IBRD only    XF   IBD 1991
## 6543                                             IBRD only    XF   IBD 1992
## 6544                                             IBRD only    XF   IBD 1993
## 6545                                             IBRD only    XF   IBD 1994
## 6546                                             IBRD only    XF   IBD 1995
## 6547                                             IBRD only    XF   IBD 1996
## 6548                                             IBRD only    XF   IBD 1997
## 6549                                             IBRD only    XF   IBD 1998
## 6550                                             IBRD only    XF   IBD 1999
## 6551                                             IBRD only    XF   IBD 2000
## 6552                                             IBRD only    XF   IBD 2001
## 6553                                             IBRD only    XF   IBD 2002
## 6554                                             IBRD only    XF   IBD 2003
## 6555                                             IBRD only    XF   IBD 2004
## 6556                                             IBRD only    XF   IBD 2005
## 6557                                             IBRD only    XF   IBD 2006
## 6558                                             IBRD only    XF   IBD 2007
## 6559                                             IBRD only    XF   IBD 2008
## 6560                                             IBRD only    XF   IBD 2009
## 6561                                             IBRD only    XF   IBD 2010
## 6562                                             IBRD only    XF   IBD 2011
## 6563                                             IBRD only    XF   IBD 2012
## 6564                                             IBRD only    XF   IBD 2013
## 6565                                             IBRD only    XF   IBD 2014
## 6566                                             IBRD only    XF   IBD 2015
## 6567                                             IBRD only    XF   IBD 2016
## 6568                                             IBRD only    XF   IBD 2017
## 6569                                             IBRD only    XF   IBD 2018
## 6570                                             IBRD only    XF   IBD 2019
## 6571                                             IBRD only    XF   IBD 2020
## 6572                                             IBRD only    XF   IBD 2021
## 6573                                               Iceland    IS   ISL 1960
## 6574                                               Iceland    IS   ISL 1961
## 6575                                               Iceland    IS   ISL 1962
## 6576                                               Iceland    IS   ISL 1963
## 6577                                               Iceland    IS   ISL 1964
## 6578                                               Iceland    IS   ISL 1965
## 6579                                               Iceland    IS   ISL 1966
## 6580                                               Iceland    IS   ISL 1967
## 6581                                               Iceland    IS   ISL 1968
## 6582                                               Iceland    IS   ISL 1969
## 6583                                               Iceland    IS   ISL 1970
## 6584                                               Iceland    IS   ISL 1971
## 6585                                               Iceland    IS   ISL 1972
## 6586                                               Iceland    IS   ISL 1973
## 6587                                               Iceland    IS   ISL 1974
## 6588                                               Iceland    IS   ISL 1975
## 6589                                               Iceland    IS   ISL 1976
## 6590                                               Iceland    IS   ISL 1977
## 6591                                               Iceland    IS   ISL 1978
## 6592                                               Iceland    IS   ISL 1979
## 6593                                               Iceland    IS   ISL 1980
## 6594                                               Iceland    IS   ISL 1981
## 6595                                               Iceland    IS   ISL 1982
## 6596                                               Iceland    IS   ISL 1983
## 6597                                               Iceland    IS   ISL 1984
## 6598                                               Iceland    IS   ISL 1985
## 6599                                               Iceland    IS   ISL 1986
## 6600                                               Iceland    IS   ISL 1987
## 6601                                               Iceland    IS   ISL 1988
## 6602                                               Iceland    IS   ISL 1989
## 6603                                               Iceland    IS   ISL 1990
## 6604                                               Iceland    IS   ISL 1991
## 6605                                               Iceland    IS   ISL 1992
## 6606                                               Iceland    IS   ISL 1993
## 6607                                               Iceland    IS   ISL 1994
## 6608                                               Iceland    IS   ISL 1995
## 6609                                               Iceland    IS   ISL 1996
## 6610                                               Iceland    IS   ISL 1997
## 6611                                               Iceland    IS   ISL 1998
## 6612                                               Iceland    IS   ISL 1999
## 6613                                               Iceland    IS   ISL 2000
## 6614                                               Iceland    IS   ISL 2001
## 6615                                               Iceland    IS   ISL 2002
## 6616                                               Iceland    IS   ISL 2003
## 6617                                               Iceland    IS   ISL 2004
## 6618                                               Iceland    IS   ISL 2005
## 6619                                               Iceland    IS   ISL 2006
## 6620                                               Iceland    IS   ISL 2007
## 6621                                               Iceland    IS   ISL 2008
## 6622                                               Iceland    IS   ISL 2009
## 6623                                               Iceland    IS   ISL 2010
## 6624                                               Iceland    IS   ISL 2011
## 6625                                               Iceland    IS   ISL 2012
## 6626                                               Iceland    IS   ISL 2013
## 6627                                               Iceland    IS   ISL 2014
## 6628                                               Iceland    IS   ISL 2015
## 6629                                               Iceland    IS   ISL 2016
## 6630                                               Iceland    IS   ISL 2017
## 6631                                               Iceland    IS   ISL 2018
## 6632                                               Iceland    IS   ISL 2019
## 6633                                               Iceland    IS   ISL 2020
## 6634                                               Iceland    IS   ISL 2021
## 6635                                      IDA & IBRD total    ZT   IBT 1960
## 6636                                      IDA & IBRD total    ZT   IBT 1961
## 6637                                      IDA & IBRD total    ZT   IBT 1962
## 6638                                      IDA & IBRD total    ZT   IBT 1963
## 6639                                      IDA & IBRD total    ZT   IBT 1964
## 6640                                      IDA & IBRD total    ZT   IBT 1965
## 6641                                      IDA & IBRD total    ZT   IBT 1966
## 6642                                      IDA & IBRD total    ZT   IBT 1967
## 6643                                      IDA & IBRD total    ZT   IBT 1968
## 6644                                      IDA & IBRD total    ZT   IBT 1969
## 6645                                      IDA & IBRD total    ZT   IBT 1970
## 6646                                      IDA & IBRD total    ZT   IBT 1971
## 6647                                      IDA & IBRD total    ZT   IBT 1972
## 6648                                      IDA & IBRD total    ZT   IBT 1973
## 6649                                      IDA & IBRD total    ZT   IBT 1974
## 6650                                      IDA & IBRD total    ZT   IBT 1975
## 6651                                      IDA & IBRD total    ZT   IBT 1976
## 6652                                      IDA & IBRD total    ZT   IBT 1977
## 6653                                      IDA & IBRD total    ZT   IBT 1978
## 6654                                      IDA & IBRD total    ZT   IBT 1979
## 6655                                      IDA & IBRD total    ZT   IBT 1980
## 6656                                      IDA & IBRD total    ZT   IBT 1981
## 6657                                      IDA & IBRD total    ZT   IBT 1982
## 6658                                      IDA & IBRD total    ZT   IBT 1983
## 6659                                      IDA & IBRD total    ZT   IBT 1984
## 6660                                      IDA & IBRD total    ZT   IBT 1985
## 6661                                      IDA & IBRD total    ZT   IBT 1986
## 6662                                      IDA & IBRD total    ZT   IBT 1987
## 6663                                      IDA & IBRD total    ZT   IBT 1988
## 6664                                      IDA & IBRD total    ZT   IBT 1989
## 6665                                      IDA & IBRD total    ZT   IBT 1990
## 6666                                      IDA & IBRD total    ZT   IBT 1991
## 6667                                      IDA & IBRD total    ZT   IBT 1992
## 6668                                      IDA & IBRD total    ZT   IBT 1993
## 6669                                      IDA & IBRD total    ZT   IBT 1994
## 6670                                      IDA & IBRD total    ZT   IBT 1995
## 6671                                      IDA & IBRD total    ZT   IBT 1996
## 6672                                      IDA & IBRD total    ZT   IBT 1997
## 6673                                      IDA & IBRD total    ZT   IBT 1998
## 6674                                      IDA & IBRD total    ZT   IBT 1999
## 6675                                      IDA & IBRD total    ZT   IBT 2000
## 6676                                      IDA & IBRD total    ZT   IBT 2001
## 6677                                      IDA & IBRD total    ZT   IBT 2002
## 6678                                      IDA & IBRD total    ZT   IBT 2003
## 6679                                      IDA & IBRD total    ZT   IBT 2004
## 6680                                      IDA & IBRD total    ZT   IBT 2005
## 6681                                      IDA & IBRD total    ZT   IBT 2006
## 6682                                      IDA & IBRD total    ZT   IBT 2007
## 6683                                      IDA & IBRD total    ZT   IBT 2008
## 6684                                      IDA & IBRD total    ZT   IBT 2009
## 6685                                      IDA & IBRD total    ZT   IBT 2010
## 6686                                      IDA & IBRD total    ZT   IBT 2011
## 6687                                      IDA & IBRD total    ZT   IBT 2012
## 6688                                      IDA & IBRD total    ZT   IBT 2013
## 6689                                      IDA & IBRD total    ZT   IBT 2014
## 6690                                      IDA & IBRD total    ZT   IBT 2015
## 6691                                      IDA & IBRD total    ZT   IBT 2016
## 6692                                      IDA & IBRD total    ZT   IBT 2017
## 6693                                      IDA & IBRD total    ZT   IBT 2018
## 6694                                      IDA & IBRD total    ZT   IBT 2019
## 6695                                      IDA & IBRD total    ZT   IBT 2020
## 6696                                      IDA & IBRD total    ZT   IBT 2021
## 6697                                             IDA blend    XH   IDB 1960
## 6698                                             IDA blend    XH   IDB 1961
## 6699                                             IDA blend    XH   IDB 1962
## 6700                                             IDA blend    XH   IDB 1963
## 6701                                             IDA blend    XH   IDB 1964
## 6702                                             IDA blend    XH   IDB 1965
## 6703                                             IDA blend    XH   IDB 1966
## 6704                                             IDA blend    XH   IDB 1967
## 6705                                             IDA blend    XH   IDB 1968
## 6706                                             IDA blend    XH   IDB 1969
## 6707                                             IDA blend    XH   IDB 1970
## 6708                                             IDA blend    XH   IDB 1971
## 6709                                             IDA blend    XH   IDB 1972
## 6710                                             IDA blend    XH   IDB 1973
## 6711                                             IDA blend    XH   IDB 1974
## 6712                                             IDA blend    XH   IDB 1975
## 6713                                             IDA blend    XH   IDB 1976
## 6714                                             IDA blend    XH   IDB 1977
## 6715                                             IDA blend    XH   IDB 1978
## 6716                                             IDA blend    XH   IDB 1979
## 6717                                             IDA blend    XH   IDB 1980
## 6718                                             IDA blend    XH   IDB 1981
## 6719                                             IDA blend    XH   IDB 1982
## 6720                                             IDA blend    XH   IDB 1983
## 6721                                             IDA blend    XH   IDB 1984
## 6722                                             IDA blend    XH   IDB 1985
## 6723                                             IDA blend    XH   IDB 1986
## 6724                                             IDA blend    XH   IDB 1987
## 6725                                             IDA blend    XH   IDB 1988
## 6726                                             IDA blend    XH   IDB 1989
## 6727                                             IDA blend    XH   IDB 1990
## 6728                                             IDA blend    XH   IDB 1991
## 6729                                             IDA blend    XH   IDB 1992
## 6730                                             IDA blend    XH   IDB 1993
## 6731                                             IDA blend    XH   IDB 1994
## 6732                                             IDA blend    XH   IDB 1995
## 6733                                             IDA blend    XH   IDB 1996
## 6734                                             IDA blend    XH   IDB 1997
## 6735                                             IDA blend    XH   IDB 1998
## 6736                                             IDA blend    XH   IDB 1999
## 6737                                             IDA blend    XH   IDB 2000
## 6738                                             IDA blend    XH   IDB 2001
## 6739                                             IDA blend    XH   IDB 2002
## 6740                                             IDA blend    XH   IDB 2003
## 6741                                             IDA blend    XH   IDB 2004
## 6742                                             IDA blend    XH   IDB 2005
## 6743                                             IDA blend    XH   IDB 2006
## 6744                                             IDA blend    XH   IDB 2007
## 6745                                             IDA blend    XH   IDB 2008
## 6746                                             IDA blend    XH   IDB 2009
## 6747                                             IDA blend    XH   IDB 2010
## 6748                                             IDA blend    XH   IDB 2011
## 6749                                             IDA blend    XH   IDB 2012
## 6750                                             IDA blend    XH   IDB 2013
## 6751                                             IDA blend    XH   IDB 2014
## 6752                                             IDA blend    XH   IDB 2015
## 6753                                             IDA blend    XH   IDB 2016
## 6754                                             IDA blend    XH   IDB 2017
## 6755                                             IDA blend    XH   IDB 2018
## 6756                                             IDA blend    XH   IDB 2019
## 6757                                             IDA blend    XH   IDB 2020
## 6758                                             IDA blend    XH   IDB 2021
## 6759                                              IDA only    XI   IDX 1960
## 6760                                              IDA only    XI   IDX 1961
## 6761                                              IDA only    XI   IDX 1962
## 6762                                              IDA only    XI   IDX 1963
## 6763                                              IDA only    XI   IDX 1964
## 6764                                              IDA only    XI   IDX 1965
## 6765                                              IDA only    XI   IDX 1966
## 6766                                              IDA only    XI   IDX 1967
## 6767                                              IDA only    XI   IDX 1968
## 6768                                              IDA only    XI   IDX 1969
## 6769                                              IDA only    XI   IDX 1970
## 6770                                              IDA only    XI   IDX 1971
## 6771                                              IDA only    XI   IDX 1972
## 6772                                              IDA only    XI   IDX 1973
## 6773                                              IDA only    XI   IDX 1974
## 6774                                              IDA only    XI   IDX 1975
## 6775                                              IDA only    XI   IDX 1976
## 6776                                              IDA only    XI   IDX 1977
## 6777                                              IDA only    XI   IDX 1978
## 6778                                              IDA only    XI   IDX 1979
## 6779                                              IDA only    XI   IDX 1980
## 6780                                              IDA only    XI   IDX 1981
## 6781                                              IDA only    XI   IDX 1982
## 6782                                              IDA only    XI   IDX 1983
## 6783                                              IDA only    XI   IDX 1984
## 6784                                              IDA only    XI   IDX 1985
## 6785                                              IDA only    XI   IDX 1986
## 6786                                              IDA only    XI   IDX 1987
## 6787                                              IDA only    XI   IDX 1988
## 6788                                              IDA only    XI   IDX 1989
## 6789                                              IDA only    XI   IDX 1990
## 6790                                              IDA only    XI   IDX 1991
## 6791                                              IDA only    XI   IDX 1992
## 6792                                              IDA only    XI   IDX 1993
## 6793                                              IDA only    XI   IDX 1994
## 6794                                              IDA only    XI   IDX 1995
## 6795                                              IDA only    XI   IDX 1996
## 6796                                              IDA only    XI   IDX 1997
## 6797                                              IDA only    XI   IDX 1998
## 6798                                              IDA only    XI   IDX 1999
## 6799                                              IDA only    XI   IDX 2000
## 6800                                              IDA only    XI   IDX 2001
## 6801                                              IDA only    XI   IDX 2002
## 6802                                              IDA only    XI   IDX 2003
## 6803                                              IDA only    XI   IDX 2004
## 6804                                              IDA only    XI   IDX 2005
## 6805                                              IDA only    XI   IDX 2006
## 6806                                              IDA only    XI   IDX 2007
## 6807                                              IDA only    XI   IDX 2008
## 6808                                              IDA only    XI   IDX 2009
## 6809                                              IDA only    XI   IDX 2010
## 6810                                              IDA only    XI   IDX 2011
## 6811                                              IDA only    XI   IDX 2012
## 6812                                              IDA only    XI   IDX 2013
## 6813                                              IDA only    XI   IDX 2014
## 6814                                              IDA only    XI   IDX 2015
## 6815                                              IDA only    XI   IDX 2016
## 6816                                              IDA only    XI   IDX 2017
## 6817                                              IDA only    XI   IDX 2018
## 6818                                              IDA only    XI   IDX 2019
## 6819                                              IDA only    XI   IDX 2020
## 6820                                              IDA only    XI   IDX 2021
## 6821                                             IDA total    XG   IDA 1960
## 6822                                             IDA total    XG   IDA 1961
## 6823                                             IDA total    XG   IDA 1962
## 6824                                             IDA total    XG   IDA 1963
## 6825                                             IDA total    XG   IDA 1964
## 6826                                             IDA total    XG   IDA 1965
## 6827                                             IDA total    XG   IDA 1966
## 6828                                             IDA total    XG   IDA 1967
## 6829                                             IDA total    XG   IDA 1968
## 6830                                             IDA total    XG   IDA 1969
## 6831                                             IDA total    XG   IDA 1970
## 6832                                             IDA total    XG   IDA 1971
## 6833                                             IDA total    XG   IDA 1972
## 6834                                             IDA total    XG   IDA 1973
## 6835                                             IDA total    XG   IDA 1974
## 6836                                             IDA total    XG   IDA 1975
## 6837                                             IDA total    XG   IDA 1976
## 6838                                             IDA total    XG   IDA 1977
## 6839                                             IDA total    XG   IDA 1978
## 6840                                             IDA total    XG   IDA 1979
## 6841                                             IDA total    XG   IDA 1980
## 6842                                             IDA total    XG   IDA 1981
## 6843                                             IDA total    XG   IDA 1982
## 6844                                             IDA total    XG   IDA 1983
## 6845                                             IDA total    XG   IDA 1984
## 6846                                             IDA total    XG   IDA 1985
## 6847                                             IDA total    XG   IDA 1986
## 6848                                             IDA total    XG   IDA 1987
## 6849                                             IDA total    XG   IDA 1988
## 6850                                             IDA total    XG   IDA 1989
## 6851                                             IDA total    XG   IDA 1990
## 6852                                             IDA total    XG   IDA 1991
## 6853                                             IDA total    XG   IDA 1992
## 6854                                             IDA total    XG   IDA 1993
## 6855                                             IDA total    XG   IDA 1994
## 6856                                             IDA total    XG   IDA 1995
## 6857                                             IDA total    XG   IDA 1996
## 6858                                             IDA total    XG   IDA 1997
## 6859                                             IDA total    XG   IDA 1998
## 6860                                             IDA total    XG   IDA 1999
## 6861                                             IDA total    XG   IDA 2000
## 6862                                             IDA total    XG   IDA 2001
## 6863                                             IDA total    XG   IDA 2002
## 6864                                             IDA total    XG   IDA 2003
## 6865                                             IDA total    XG   IDA 2004
## 6866                                             IDA total    XG   IDA 2005
## 6867                                             IDA total    XG   IDA 2006
## 6868                                             IDA total    XG   IDA 2007
## 6869                                             IDA total    XG   IDA 2008
## 6870                                             IDA total    XG   IDA 2009
## 6871                                             IDA total    XG   IDA 2010
## 6872                                             IDA total    XG   IDA 2011
## 6873                                             IDA total    XG   IDA 2012
## 6874                                             IDA total    XG   IDA 2013
## 6875                                             IDA total    XG   IDA 2014
## 6876                                             IDA total    XG   IDA 2015
## 6877                                             IDA total    XG   IDA 2016
## 6878                                             IDA total    XG   IDA 2017
## 6879                                             IDA total    XG   IDA 2018
## 6880                                             IDA total    XG   IDA 2019
## 6881                                             IDA total    XG   IDA 2020
## 6882                                             IDA total    XG   IDA 2021
## 6883                                                 India    IN   IND 1960
## 6884                                                 India    IN   IND 1961
## 6885                                                 India    IN   IND 1962
## 6886                                                 India    IN   IND 1963
## 6887                                                 India    IN   IND 1964
## 6888                                                 India    IN   IND 1965
## 6889                                                 India    IN   IND 1966
## 6890                                                 India    IN   IND 1967
## 6891                                                 India    IN   IND 1968
## 6892                                                 India    IN   IND 1969
## 6893                                                 India    IN   IND 1970
## 6894                                                 India    IN   IND 1971
## 6895                                                 India    IN   IND 1972
## 6896                                                 India    IN   IND 1973
## 6897                                                 India    IN   IND 1974
## 6898                                                 India    IN   IND 1975
## 6899                                                 India    IN   IND 1976
## 6900                                                 India    IN   IND 1977
## 6901                                                 India    IN   IND 1978
## 6902                                                 India    IN   IND 1979
## 6903                                                 India    IN   IND 1980
## 6904                                                 India    IN   IND 1981
## 6905                                                 India    IN   IND 1982
## 6906                                                 India    IN   IND 1983
## 6907                                                 India    IN   IND 1984
## 6908                                                 India    IN   IND 1985
## 6909                                                 India    IN   IND 1986
## 6910                                                 India    IN   IND 1987
## 6911                                                 India    IN   IND 1988
## 6912                                                 India    IN   IND 1989
## 6913                                                 India    IN   IND 1990
## 6914                                                 India    IN   IND 1991
## 6915                                                 India    IN   IND 1992
## 6916                                                 India    IN   IND 1993
## 6917                                                 India    IN   IND 1994
## 6918                                                 India    IN   IND 1995
## 6919                                                 India    IN   IND 1996
## 6920                                                 India    IN   IND 1997
## 6921                                                 India    IN   IND 1998
## 6922                                                 India    IN   IND 1999
## 6923                                                 India    IN   IND 2000
## 6924                                                 India    IN   IND 2001
## 6925                                                 India    IN   IND 2002
## 6926                                                 India    IN   IND 2003
## 6927                                                 India    IN   IND 2004
## 6928                                                 India    IN   IND 2005
## 6929                                                 India    IN   IND 2006
## 6930                                                 India    IN   IND 2007
## 6931                                                 India    IN   IND 2008
## 6932                                                 India    IN   IND 2009
## 6933                                                 India    IN   IND 2010
## 6934                                                 India    IN   IND 2011
## 6935                                                 India    IN   IND 2012
## 6936                                                 India    IN   IND 2013
## 6937                                                 India    IN   IND 2014
## 6938                                                 India    IN   IND 2015
## 6939                                                 India    IN   IND 2016
## 6940                                                 India    IN   IND 2017
## 6941                                                 India    IN   IND 2018
## 6942                                                 India    IN   IND 2019
## 6943                                                 India    IN   IND 2020
## 6944                                                 India    IN   IND 2021
## 6945                                             Indonesia    ID   IDN 1960
## 6946                                             Indonesia    ID   IDN 1961
## 6947                                             Indonesia    ID   IDN 1962
## 6948                                             Indonesia    ID   IDN 1963
## 6949                                             Indonesia    ID   IDN 1964
## 6950                                             Indonesia    ID   IDN 1965
## 6951                                             Indonesia    ID   IDN 1966
## 6952                                             Indonesia    ID   IDN 1967
## 6953                                             Indonesia    ID   IDN 1968
## 6954                                             Indonesia    ID   IDN 1969
## 6955                                             Indonesia    ID   IDN 1970
## 6956                                             Indonesia    ID   IDN 1971
## 6957                                             Indonesia    ID   IDN 1972
## 6958                                             Indonesia    ID   IDN 1973
## 6959                                             Indonesia    ID   IDN 1974
## 6960                                             Indonesia    ID   IDN 1975
## 6961                                             Indonesia    ID   IDN 1976
## 6962                                             Indonesia    ID   IDN 1977
## 6963                                             Indonesia    ID   IDN 1978
## 6964                                             Indonesia    ID   IDN 1979
## 6965                                             Indonesia    ID   IDN 1980
## 6966                                             Indonesia    ID   IDN 1981
## 6967                                             Indonesia    ID   IDN 1982
## 6968                                             Indonesia    ID   IDN 1983
## 6969                                             Indonesia    ID   IDN 1984
## 6970                                             Indonesia    ID   IDN 1985
## 6971                                             Indonesia    ID   IDN 1986
## 6972                                             Indonesia    ID   IDN 1987
## 6973                                             Indonesia    ID   IDN 1988
## 6974                                             Indonesia    ID   IDN 1989
## 6975                                             Indonesia    ID   IDN 1990
## 6976                                             Indonesia    ID   IDN 1991
## 6977                                             Indonesia    ID   IDN 1992
## 6978                                             Indonesia    ID   IDN 1993
## 6979                                             Indonesia    ID   IDN 1994
## 6980                                             Indonesia    ID   IDN 1995
## 6981                                             Indonesia    ID   IDN 1996
## 6982                                             Indonesia    ID   IDN 1997
## 6983                                             Indonesia    ID   IDN 1998
## 6984                                             Indonesia    ID   IDN 1999
## 6985                                             Indonesia    ID   IDN 2000
## 6986                                             Indonesia    ID   IDN 2001
## 6987                                             Indonesia    ID   IDN 2002
## 6988                                             Indonesia    ID   IDN 2003
## 6989                                             Indonesia    ID   IDN 2004
## 6990                                             Indonesia    ID   IDN 2005
## 6991                                             Indonesia    ID   IDN 2006
## 6992                                             Indonesia    ID   IDN 2007
## 6993                                             Indonesia    ID   IDN 2008
## 6994                                             Indonesia    ID   IDN 2009
## 6995                                             Indonesia    ID   IDN 2010
## 6996                                             Indonesia    ID   IDN 2011
## 6997                                             Indonesia    ID   IDN 2012
## 6998                                             Indonesia    ID   IDN 2013
## 6999                                             Indonesia    ID   IDN 2014
## 7000                                             Indonesia    ID   IDN 2015
## 7001                                             Indonesia    ID   IDN 2016
## 7002                                             Indonesia    ID   IDN 2017
## 7003                                             Indonesia    ID   IDN 2018
## 7004                                             Indonesia    ID   IDN 2019
## 7005                                             Indonesia    ID   IDN 2020
## 7006                                             Indonesia    ID   IDN 2021
## 7007                                    Iran, Islamic Rep.    IR   IRN 1960
## 7008                                    Iran, Islamic Rep.    IR   IRN 1961
## 7009                                    Iran, Islamic Rep.    IR   IRN 1962
## 7010                                    Iran, Islamic Rep.    IR   IRN 1963
## 7011                                    Iran, Islamic Rep.    IR   IRN 1964
## 7012                                    Iran, Islamic Rep.    IR   IRN 1965
## 7013                                    Iran, Islamic Rep.    IR   IRN 1966
## 7014                                    Iran, Islamic Rep.    IR   IRN 1967
## 7015                                    Iran, Islamic Rep.    IR   IRN 1968
## 7016                                    Iran, Islamic Rep.    IR   IRN 1969
## 7017                                    Iran, Islamic Rep.    IR   IRN 1970
## 7018                                    Iran, Islamic Rep.    IR   IRN 1971
## 7019                                    Iran, Islamic Rep.    IR   IRN 1972
## 7020                                    Iran, Islamic Rep.    IR   IRN 1973
## 7021                                    Iran, Islamic Rep.    IR   IRN 1974
## 7022                                    Iran, Islamic Rep.    IR   IRN 1975
## 7023                                    Iran, Islamic Rep.    IR   IRN 1976
## 7024                                    Iran, Islamic Rep.    IR   IRN 1977
## 7025                                    Iran, Islamic Rep.    IR   IRN 1978
## 7026                                    Iran, Islamic Rep.    IR   IRN 1979
## 7027                                    Iran, Islamic Rep.    IR   IRN 1980
## 7028                                    Iran, Islamic Rep.    IR   IRN 1981
## 7029                                    Iran, Islamic Rep.    IR   IRN 1982
## 7030                                    Iran, Islamic Rep.    IR   IRN 1983
## 7031                                    Iran, Islamic Rep.    IR   IRN 1984
## 7032                                    Iran, Islamic Rep.    IR   IRN 1985
## 7033                                    Iran, Islamic Rep.    IR   IRN 1986
## 7034                                    Iran, Islamic Rep.    IR   IRN 1987
## 7035                                    Iran, Islamic Rep.    IR   IRN 1988
## 7036                                    Iran, Islamic Rep.    IR   IRN 1989
## 7037                                    Iran, Islamic Rep.    IR   IRN 1990
## 7038                                    Iran, Islamic Rep.    IR   IRN 1991
## 7039                                    Iran, Islamic Rep.    IR   IRN 1992
## 7040                                    Iran, Islamic Rep.    IR   IRN 1993
## 7041                                    Iran, Islamic Rep.    IR   IRN 1994
## 7042                                    Iran, Islamic Rep.    IR   IRN 1995
## 7043                                    Iran, Islamic Rep.    IR   IRN 1996
## 7044                                    Iran, Islamic Rep.    IR   IRN 1997
## 7045                                    Iran, Islamic Rep.    IR   IRN 1998
## 7046                                    Iran, Islamic Rep.    IR   IRN 1999
## 7047                                    Iran, Islamic Rep.    IR   IRN 2000
## 7048                                    Iran, Islamic Rep.    IR   IRN 2001
## 7049                                    Iran, Islamic Rep.    IR   IRN 2002
## 7050                                    Iran, Islamic Rep.    IR   IRN 2003
## 7051                                    Iran, Islamic Rep.    IR   IRN 2004
## 7052                                    Iran, Islamic Rep.    IR   IRN 2005
## 7053                                    Iran, Islamic Rep.    IR   IRN 2006
## 7054                                    Iran, Islamic Rep.    IR   IRN 2007
## 7055                                    Iran, Islamic Rep.    IR   IRN 2008
## 7056                                    Iran, Islamic Rep.    IR   IRN 2009
## 7057                                    Iran, Islamic Rep.    IR   IRN 2010
## 7058                                    Iran, Islamic Rep.    IR   IRN 2011
## 7059                                    Iran, Islamic Rep.    IR   IRN 2012
## 7060                                    Iran, Islamic Rep.    IR   IRN 2013
## 7061                                    Iran, Islamic Rep.    IR   IRN 2014
## 7062                                    Iran, Islamic Rep.    IR   IRN 2015
## 7063                                    Iran, Islamic Rep.    IR   IRN 2016
## 7064                                    Iran, Islamic Rep.    IR   IRN 2017
## 7065                                    Iran, Islamic Rep.    IR   IRN 2018
## 7066                                    Iran, Islamic Rep.    IR   IRN 2019
## 7067                                    Iran, Islamic Rep.    IR   IRN 2020
## 7068                                    Iran, Islamic Rep.    IR   IRN 2021
## 7069                                                  Iraq    IQ   IRQ 1960
## 7070                                                  Iraq    IQ   IRQ 1961
## 7071                                                  Iraq    IQ   IRQ 1962
## 7072                                                  Iraq    IQ   IRQ 1963
## 7073                                                  Iraq    IQ   IRQ 1964
## 7074                                                  Iraq    IQ   IRQ 1965
## 7075                                                  Iraq    IQ   IRQ 1966
## 7076                                                  Iraq    IQ   IRQ 1967
## 7077                                                  Iraq    IQ   IRQ 1968
## 7078                                                  Iraq    IQ   IRQ 1969
## 7079                                                  Iraq    IQ   IRQ 1970
## 7080                                                  Iraq    IQ   IRQ 1971
## 7081                                                  Iraq    IQ   IRQ 1972
## 7082                                                  Iraq    IQ   IRQ 1973
## 7083                                                  Iraq    IQ   IRQ 1974
## 7084                                                  Iraq    IQ   IRQ 1975
## 7085                                                  Iraq    IQ   IRQ 1976
## 7086                                                  Iraq    IQ   IRQ 1977
## 7087                                                  Iraq    IQ   IRQ 1978
## 7088                                                  Iraq    IQ   IRQ 1979
## 7089                                                  Iraq    IQ   IRQ 1980
## 7090                                                  Iraq    IQ   IRQ 1981
## 7091                                                  Iraq    IQ   IRQ 1982
## 7092                                                  Iraq    IQ   IRQ 1983
## 7093                                                  Iraq    IQ   IRQ 1984
## 7094                                                  Iraq    IQ   IRQ 1985
## 7095                                                  Iraq    IQ   IRQ 1986
## 7096                                                  Iraq    IQ   IRQ 1987
## 7097                                                  Iraq    IQ   IRQ 1988
## 7098                                                  Iraq    IQ   IRQ 1989
## 7099                                                  Iraq    IQ   IRQ 1990
## 7100                                                  Iraq    IQ   IRQ 1991
## 7101                                                  Iraq    IQ   IRQ 1992
## 7102                                                  Iraq    IQ   IRQ 1993
## 7103                                                  Iraq    IQ   IRQ 1994
## 7104                                                  Iraq    IQ   IRQ 1995
## 7105                                                  Iraq    IQ   IRQ 1996
## 7106                                                  Iraq    IQ   IRQ 1997
## 7107                                                  Iraq    IQ   IRQ 1998
## 7108                                                  Iraq    IQ   IRQ 1999
## 7109                                                  Iraq    IQ   IRQ 2000
## 7110                                                  Iraq    IQ   IRQ 2001
## 7111                                                  Iraq    IQ   IRQ 2002
## 7112                                                  Iraq    IQ   IRQ 2003
## 7113                                                  Iraq    IQ   IRQ 2004
## 7114                                                  Iraq    IQ   IRQ 2005
## 7115                                                  Iraq    IQ   IRQ 2006
## 7116                                                  Iraq    IQ   IRQ 2007
## 7117                                                  Iraq    IQ   IRQ 2008
## 7118                                                  Iraq    IQ   IRQ 2009
## 7119                                                  Iraq    IQ   IRQ 2010
## 7120                                                  Iraq    IQ   IRQ 2011
## 7121                                                  Iraq    IQ   IRQ 2012
## 7122                                                  Iraq    IQ   IRQ 2013
## 7123                                                  Iraq    IQ   IRQ 2014
## 7124                                                  Iraq    IQ   IRQ 2015
## 7125                                                  Iraq    IQ   IRQ 2016
## 7126                                                  Iraq    IQ   IRQ 2017
## 7127                                                  Iraq    IQ   IRQ 2018
## 7128                                                  Iraq    IQ   IRQ 2019
## 7129                                                  Iraq    IQ   IRQ 2020
## 7130                                                  Iraq    IQ   IRQ 2021
## 7131                                               Ireland    IE   IRL 1960
## 7132                                               Ireland    IE   IRL 1961
## 7133                                               Ireland    IE   IRL 1962
## 7134                                               Ireland    IE   IRL 1963
## 7135                                               Ireland    IE   IRL 1964
## 7136                                               Ireland    IE   IRL 1965
## 7137                                               Ireland    IE   IRL 1966
## 7138                                               Ireland    IE   IRL 1967
## 7139                                               Ireland    IE   IRL 1968
## 7140                                               Ireland    IE   IRL 1969
## 7141                                               Ireland    IE   IRL 1970
## 7142                                               Ireland    IE   IRL 1971
## 7143                                               Ireland    IE   IRL 1972
## 7144                                               Ireland    IE   IRL 1973
## 7145                                               Ireland    IE   IRL 1974
## 7146                                               Ireland    IE   IRL 1975
## 7147                                               Ireland    IE   IRL 1976
## 7148                                               Ireland    IE   IRL 1977
## 7149                                               Ireland    IE   IRL 1978
## 7150                                               Ireland    IE   IRL 1979
## 7151                                               Ireland    IE   IRL 1980
## 7152                                               Ireland    IE   IRL 1981
## 7153                                               Ireland    IE   IRL 1982
## 7154                                               Ireland    IE   IRL 1983
## 7155                                               Ireland    IE   IRL 1984
## 7156                                               Ireland    IE   IRL 1985
## 7157                                               Ireland    IE   IRL 1986
## 7158                                               Ireland    IE   IRL 1987
## 7159                                               Ireland    IE   IRL 1988
## 7160                                               Ireland    IE   IRL 1989
## 7161                                               Ireland    IE   IRL 1990
## 7162                                               Ireland    IE   IRL 1991
## 7163                                               Ireland    IE   IRL 1992
## 7164                                               Ireland    IE   IRL 1993
## 7165                                               Ireland    IE   IRL 1994
## 7166                                               Ireland    IE   IRL 1995
## 7167                                               Ireland    IE   IRL 1996
## 7168                                               Ireland    IE   IRL 1997
## 7169                                               Ireland    IE   IRL 1998
## 7170                                               Ireland    IE   IRL 1999
## 7171                                               Ireland    IE   IRL 2000
## 7172                                               Ireland    IE   IRL 2001
## 7173                                               Ireland    IE   IRL 2002
## 7174                                               Ireland    IE   IRL 2003
## 7175                                               Ireland    IE   IRL 2004
## 7176                                               Ireland    IE   IRL 2005
## 7177                                               Ireland    IE   IRL 2006
## 7178                                               Ireland    IE   IRL 2007
## 7179                                               Ireland    IE   IRL 2008
## 7180                                               Ireland    IE   IRL 2009
## 7181                                               Ireland    IE   IRL 2010
## 7182                                               Ireland    IE   IRL 2011
## 7183                                               Ireland    IE   IRL 2012
## 7184                                               Ireland    IE   IRL 2013
## 7185                                               Ireland    IE   IRL 2014
## 7186                                               Ireland    IE   IRL 2015
## 7187                                               Ireland    IE   IRL 2016
## 7188                                               Ireland    IE   IRL 2017
## 7189                                               Ireland    IE   IRL 2018
## 7190                                               Ireland    IE   IRL 2019
## 7191                                               Ireland    IE   IRL 2020
## 7192                                               Ireland    IE   IRL 2021
## 7193                                           Isle of Man    IM   IMN 1960
## 7194                                           Isle of Man    IM   IMN 1961
## 7195                                           Isle of Man    IM   IMN 1962
## 7196                                           Isle of Man    IM   IMN 1963
## 7197                                           Isle of Man    IM   IMN 1964
## 7198                                           Isle of Man    IM   IMN 1965
## 7199                                           Isle of Man    IM   IMN 1966
## 7200                                           Isle of Man    IM   IMN 1967
## 7201                                           Isle of Man    IM   IMN 1968
## 7202                                           Isle of Man    IM   IMN 1969
## 7203                                           Isle of Man    IM   IMN 1970
## 7204                                           Isle of Man    IM   IMN 1971
## 7205                                           Isle of Man    IM   IMN 1972
## 7206                                           Isle of Man    IM   IMN 1973
## 7207                                           Isle of Man    IM   IMN 1974
## 7208                                           Isle of Man    IM   IMN 1975
## 7209                                           Isle of Man    IM   IMN 1976
## 7210                                           Isle of Man    IM   IMN 1977
## 7211                                           Isle of Man    IM   IMN 1978
## 7212                                           Isle of Man    IM   IMN 1979
## 7213                                           Isle of Man    IM   IMN 1980
## 7214                                           Isle of Man    IM   IMN 1981
## 7215                                           Isle of Man    IM   IMN 1982
## 7216                                           Isle of Man    IM   IMN 1983
## 7217                                           Isle of Man    IM   IMN 1984
## 7218                                           Isle of Man    IM   IMN 1985
## 7219                                           Isle of Man    IM   IMN 1986
## 7220                                           Isle of Man    IM   IMN 1987
## 7221                                           Isle of Man    IM   IMN 1988
## 7222                                           Isle of Man    IM   IMN 1989
## 7223                                           Isle of Man    IM   IMN 1990
## 7224                                           Isle of Man    IM   IMN 1991
## 7225                                           Isle of Man    IM   IMN 1992
## 7226                                           Isle of Man    IM   IMN 1993
## 7227                                           Isle of Man    IM   IMN 1994
## 7228                                           Isle of Man    IM   IMN 1995
## 7229                                           Isle of Man    IM   IMN 1996
## 7230                                           Isle of Man    IM   IMN 1997
## 7231                                           Isle of Man    IM   IMN 1998
## 7232                                           Isle of Man    IM   IMN 1999
## 7233                                           Isle of Man    IM   IMN 2000
## 7234                                           Isle of Man    IM   IMN 2001
## 7235                                           Isle of Man    IM   IMN 2002
## 7236                                           Isle of Man    IM   IMN 2003
## 7237                                           Isle of Man    IM   IMN 2004
## 7238                                           Isle of Man    IM   IMN 2005
## 7239                                           Isle of Man    IM   IMN 2006
## 7240                                           Isle of Man    IM   IMN 2007
## 7241                                           Isle of Man    IM   IMN 2008
## 7242                                           Isle of Man    IM   IMN 2009
## 7243                                           Isle of Man    IM   IMN 2010
## 7244                                           Isle of Man    IM   IMN 2011
## 7245                                           Isle of Man    IM   IMN 2012
## 7246                                           Isle of Man    IM   IMN 2013
## 7247                                           Isle of Man    IM   IMN 2014
## 7248                                           Isle of Man    IM   IMN 2015
## 7249                                           Isle of Man    IM   IMN 2016
## 7250                                           Isle of Man    IM   IMN 2017
## 7251                                           Isle of Man    IM   IMN 2018
## 7252                                           Isle of Man    IM   IMN 2019
## 7253                                           Isle of Man    IM   IMN 2020
## 7254                                           Isle of Man    IM   IMN 2021
## 7255                                                Israel    IL   ISR 1960
## 7256                                                Israel    IL   ISR 1961
## 7257                                                Israel    IL   ISR 1962
## 7258                                                Israel    IL   ISR 1963
## 7259                                                Israel    IL   ISR 1964
## 7260                                                Israel    IL   ISR 1965
## 7261                                                Israel    IL   ISR 1966
## 7262                                                Israel    IL   ISR 1967
## 7263                                                Israel    IL   ISR 1968
## 7264                                                Israel    IL   ISR 1969
## 7265                                                Israel    IL   ISR 1970
## 7266                                                Israel    IL   ISR 1971
## 7267                                                Israel    IL   ISR 1972
## 7268                                                Israel    IL   ISR 1973
## 7269                                                Israel    IL   ISR 1974
## 7270                                                Israel    IL   ISR 1975
## 7271                                                Israel    IL   ISR 1976
## 7272                                                Israel    IL   ISR 1977
## 7273                                                Israel    IL   ISR 1978
## 7274                                                Israel    IL   ISR 1979
## 7275                                                Israel    IL   ISR 1980
## 7276                                                Israel    IL   ISR 1981
## 7277                                                Israel    IL   ISR 1982
## 7278                                                Israel    IL   ISR 1983
## 7279                                                Israel    IL   ISR 1984
## 7280                                                Israel    IL   ISR 1985
## 7281                                                Israel    IL   ISR 1986
## 7282                                                Israel    IL   ISR 1987
## 7283                                                Israel    IL   ISR 1988
## 7284                                                Israel    IL   ISR 1989
## 7285                                                Israel    IL   ISR 1990
## 7286                                                Israel    IL   ISR 1991
## 7287                                                Israel    IL   ISR 1992
## 7288                                                Israel    IL   ISR 1993
## 7289                                                Israel    IL   ISR 1994
## 7290                                                Israel    IL   ISR 1995
## 7291                                                Israel    IL   ISR 1996
## 7292                                                Israel    IL   ISR 1997
## 7293                                                Israel    IL   ISR 1998
## 7294                                                Israel    IL   ISR 1999
## 7295                                                Israel    IL   ISR 2000
## 7296                                                Israel    IL   ISR 2001
## 7297                                                Israel    IL   ISR 2002
## 7298                                                Israel    IL   ISR 2003
## 7299                                                Israel    IL   ISR 2004
## 7300                                                Israel    IL   ISR 2005
## 7301                                                Israel    IL   ISR 2006
## 7302                                                Israel    IL   ISR 2007
## 7303                                                Israel    IL   ISR 2008
## 7304                                                Israel    IL   ISR 2009
## 7305                                                Israel    IL   ISR 2010
## 7306                                                Israel    IL   ISR 2011
## 7307                                                Israel    IL   ISR 2012
## 7308                                                Israel    IL   ISR 2013
## 7309                                                Israel    IL   ISR 2014
## 7310                                                Israel    IL   ISR 2015
## 7311                                                Israel    IL   ISR 2016
## 7312                                                Israel    IL   ISR 2017
## 7313                                                Israel    IL   ISR 2018
## 7314                                                Israel    IL   ISR 2019
## 7315                                                Israel    IL   ISR 2020
## 7316                                                Israel    IL   ISR 2021
## 7317                                                 Italy    IT   ITA 1960
## 7318                                                 Italy    IT   ITA 1961
## 7319                                                 Italy    IT   ITA 1962
## 7320                                                 Italy    IT   ITA 1963
## 7321                                                 Italy    IT   ITA 1964
## 7322                                                 Italy    IT   ITA 1965
## 7323                                                 Italy    IT   ITA 1966
## 7324                                                 Italy    IT   ITA 1967
## 7325                                                 Italy    IT   ITA 1968
## 7326                                                 Italy    IT   ITA 1969
## 7327                                                 Italy    IT   ITA 1970
## 7328                                                 Italy    IT   ITA 1971
## 7329                                                 Italy    IT   ITA 1972
## 7330                                                 Italy    IT   ITA 1973
## 7331                                                 Italy    IT   ITA 1974
## 7332                                                 Italy    IT   ITA 1975
## 7333                                                 Italy    IT   ITA 1976
## 7334                                                 Italy    IT   ITA 1977
## 7335                                                 Italy    IT   ITA 1978
## 7336                                                 Italy    IT   ITA 1979
## 7337                                                 Italy    IT   ITA 1980
## 7338                                                 Italy    IT   ITA 1981
## 7339                                                 Italy    IT   ITA 1982
## 7340                                                 Italy    IT   ITA 1983
## 7341                                                 Italy    IT   ITA 1984
## 7342                                                 Italy    IT   ITA 1985
## 7343                                                 Italy    IT   ITA 1986
## 7344                                                 Italy    IT   ITA 1987
## 7345                                                 Italy    IT   ITA 1988
## 7346                                                 Italy    IT   ITA 1989
## 7347                                                 Italy    IT   ITA 1990
## 7348                                                 Italy    IT   ITA 1991
## 7349                                                 Italy    IT   ITA 1992
## 7350                                                 Italy    IT   ITA 1993
## 7351                                                 Italy    IT   ITA 1994
## 7352                                                 Italy    IT   ITA 1995
## 7353                                                 Italy    IT   ITA 1996
## 7354                                                 Italy    IT   ITA 1997
## 7355                                                 Italy    IT   ITA 1998
## 7356                                                 Italy    IT   ITA 1999
## 7357                                                 Italy    IT   ITA 2000
## 7358                                                 Italy    IT   ITA 2001
## 7359                                                 Italy    IT   ITA 2002
## 7360                                                 Italy    IT   ITA 2003
## 7361                                                 Italy    IT   ITA 2004
## 7362                                                 Italy    IT   ITA 2005
## 7363                                                 Italy    IT   ITA 2006
## 7364                                                 Italy    IT   ITA 2007
## 7365                                                 Italy    IT   ITA 2008
## 7366                                                 Italy    IT   ITA 2009
## 7367                                                 Italy    IT   ITA 2010
## 7368                                                 Italy    IT   ITA 2011
## 7369                                                 Italy    IT   ITA 2012
## 7370                                                 Italy    IT   ITA 2013
## 7371                                                 Italy    IT   ITA 2014
## 7372                                                 Italy    IT   ITA 2015
## 7373                                                 Italy    IT   ITA 2016
## 7374                                                 Italy    IT   ITA 2017
## 7375                                                 Italy    IT   ITA 2018
## 7376                                                 Italy    IT   ITA 2019
## 7377                                                 Italy    IT   ITA 2020
## 7378                                                 Italy    IT   ITA 2021
## 7379                                               Jamaica    JM   JAM 1960
## 7380                                               Jamaica    JM   JAM 1961
## 7381                                               Jamaica    JM   JAM 1962
## 7382                                               Jamaica    JM   JAM 1963
## 7383                                               Jamaica    JM   JAM 1964
## 7384                                               Jamaica    JM   JAM 1965
## 7385                                               Jamaica    JM   JAM 1966
## 7386                                               Jamaica    JM   JAM 1967
## 7387                                               Jamaica    JM   JAM 1968
## 7388                                               Jamaica    JM   JAM 1969
## 7389                                               Jamaica    JM   JAM 1970
## 7390                                               Jamaica    JM   JAM 1971
## 7391                                               Jamaica    JM   JAM 1972
## 7392                                               Jamaica    JM   JAM 1973
## 7393                                               Jamaica    JM   JAM 1974
## 7394                                               Jamaica    JM   JAM 1975
## 7395                                               Jamaica    JM   JAM 1976
## 7396                                               Jamaica    JM   JAM 1977
## 7397                                               Jamaica    JM   JAM 1978
## 7398                                               Jamaica    JM   JAM 1979
## 7399                                               Jamaica    JM   JAM 1980
## 7400                                               Jamaica    JM   JAM 1981
## 7401                                               Jamaica    JM   JAM 1982
## 7402                                               Jamaica    JM   JAM 1983
## 7403                                               Jamaica    JM   JAM 1984
## 7404                                               Jamaica    JM   JAM 1985
## 7405                                               Jamaica    JM   JAM 1986
## 7406                                               Jamaica    JM   JAM 1987
## 7407                                               Jamaica    JM   JAM 1988
## 7408                                               Jamaica    JM   JAM 1989
## 7409                                               Jamaica    JM   JAM 1990
## 7410                                               Jamaica    JM   JAM 1991
## 7411                                               Jamaica    JM   JAM 1992
## 7412                                               Jamaica    JM   JAM 1993
## 7413                                               Jamaica    JM   JAM 1994
## 7414                                               Jamaica    JM   JAM 1995
## 7415                                               Jamaica    JM   JAM 1996
## 7416                                               Jamaica    JM   JAM 1997
## 7417                                               Jamaica    JM   JAM 1998
## 7418                                               Jamaica    JM   JAM 1999
## 7419                                               Jamaica    JM   JAM 2000
## 7420                                               Jamaica    JM   JAM 2001
## 7421                                               Jamaica    JM   JAM 2002
## 7422                                               Jamaica    JM   JAM 2003
## 7423                                               Jamaica    JM   JAM 2004
## 7424                                               Jamaica    JM   JAM 2005
## 7425                                               Jamaica    JM   JAM 2006
## 7426                                               Jamaica    JM   JAM 2007
## 7427                                               Jamaica    JM   JAM 2008
## 7428                                               Jamaica    JM   JAM 2009
## 7429                                               Jamaica    JM   JAM 2010
## 7430                                               Jamaica    JM   JAM 2011
## 7431                                               Jamaica    JM   JAM 2012
## 7432                                               Jamaica    JM   JAM 2013
## 7433                                               Jamaica    JM   JAM 2014
## 7434                                               Jamaica    JM   JAM 2015
## 7435                                               Jamaica    JM   JAM 2016
## 7436                                               Jamaica    JM   JAM 2017
## 7437                                               Jamaica    JM   JAM 2018
## 7438                                               Jamaica    JM   JAM 2019
## 7439                                               Jamaica    JM   JAM 2020
## 7440                                               Jamaica    JM   JAM 2021
## 7441                                                 Japan    JP   JPN 1960
## 7442                                                 Japan    JP   JPN 1961
## 7443                                                 Japan    JP   JPN 1962
## 7444                                                 Japan    JP   JPN 1963
## 7445                                                 Japan    JP   JPN 1964
## 7446                                                 Japan    JP   JPN 1965
## 7447                                                 Japan    JP   JPN 1966
## 7448                                                 Japan    JP   JPN 1967
## 7449                                                 Japan    JP   JPN 1968
## 7450                                                 Japan    JP   JPN 1969
## 7451                                                 Japan    JP   JPN 1970
## 7452                                                 Japan    JP   JPN 1971
## 7453                                                 Japan    JP   JPN 1972
## 7454                                                 Japan    JP   JPN 1973
## 7455                                                 Japan    JP   JPN 1974
## 7456                                                 Japan    JP   JPN 1975
## 7457                                                 Japan    JP   JPN 1976
## 7458                                                 Japan    JP   JPN 1977
## 7459                                                 Japan    JP   JPN 1978
## 7460                                                 Japan    JP   JPN 1979
## 7461                                                 Japan    JP   JPN 1980
## 7462                                                 Japan    JP   JPN 1981
## 7463                                                 Japan    JP   JPN 1982
## 7464                                                 Japan    JP   JPN 1983
## 7465                                                 Japan    JP   JPN 1984
## 7466                                                 Japan    JP   JPN 1985
## 7467                                                 Japan    JP   JPN 1986
## 7468                                                 Japan    JP   JPN 1987
## 7469                                                 Japan    JP   JPN 1988
## 7470                                                 Japan    JP   JPN 1989
## 7471                                                 Japan    JP   JPN 1990
## 7472                                                 Japan    JP   JPN 1991
## 7473                                                 Japan    JP   JPN 1992
## 7474                                                 Japan    JP   JPN 1993
## 7475                                                 Japan    JP   JPN 1994
## 7476                                                 Japan    JP   JPN 1995
## 7477                                                 Japan    JP   JPN 1996
## 7478                                                 Japan    JP   JPN 1997
## 7479                                                 Japan    JP   JPN 1998
## 7480                                                 Japan    JP   JPN 1999
## 7481                                                 Japan    JP   JPN 2000
## 7482                                                 Japan    JP   JPN 2001
## 7483                                                 Japan    JP   JPN 2002
## 7484                                                 Japan    JP   JPN 2003
## 7485                                                 Japan    JP   JPN 2004
## 7486                                                 Japan    JP   JPN 2005
## 7487                                                 Japan    JP   JPN 2006
## 7488                                                 Japan    JP   JPN 2007
## 7489                                                 Japan    JP   JPN 2008
## 7490                                                 Japan    JP   JPN 2009
## 7491                                                 Japan    JP   JPN 2010
## 7492                                                 Japan    JP   JPN 2011
## 7493                                                 Japan    JP   JPN 2012
## 7494                                                 Japan    JP   JPN 2013
## 7495                                                 Japan    JP   JPN 2014
## 7496                                                 Japan    JP   JPN 2015
## 7497                                                 Japan    JP   JPN 2016
## 7498                                                 Japan    JP   JPN 2017
## 7499                                                 Japan    JP   JPN 2018
## 7500                                                 Japan    JP   JPN 2019
## 7501                                                 Japan    JP   JPN 2020
## 7502                                                 Japan    JP   JPN 2021
## 7503                                                Jordan    JO   JOR 1960
## 7504                                                Jordan    JO   JOR 1961
## 7505                                                Jordan    JO   JOR 1962
## 7506                                                Jordan    JO   JOR 1963
## 7507                                                Jordan    JO   JOR 1964
## 7508                                                Jordan    JO   JOR 1965
## 7509                                                Jordan    JO   JOR 1966
## 7510                                                Jordan    JO   JOR 1967
## 7511                                                Jordan    JO   JOR 1968
## 7512                                                Jordan    JO   JOR 1969
## 7513                                                Jordan    JO   JOR 1970
## 7514                                                Jordan    JO   JOR 1971
## 7515                                                Jordan    JO   JOR 1972
## 7516                                                Jordan    JO   JOR 1973
## 7517                                                Jordan    JO   JOR 1974
## 7518                                                Jordan    JO   JOR 1975
## 7519                                                Jordan    JO   JOR 1976
## 7520                                                Jordan    JO   JOR 1977
## 7521                                                Jordan    JO   JOR 1978
## 7522                                                Jordan    JO   JOR 1979
## 7523                                                Jordan    JO   JOR 1980
## 7524                                                Jordan    JO   JOR 1981
## 7525                                                Jordan    JO   JOR 1982
## 7526                                                Jordan    JO   JOR 1983
## 7527                                                Jordan    JO   JOR 1984
## 7528                                                Jordan    JO   JOR 1985
## 7529                                                Jordan    JO   JOR 1986
## 7530                                                Jordan    JO   JOR 1987
## 7531                                                Jordan    JO   JOR 1988
## 7532                                                Jordan    JO   JOR 1989
## 7533                                                Jordan    JO   JOR 1990
## 7534                                                Jordan    JO   JOR 1991
## 7535                                                Jordan    JO   JOR 1992
## 7536                                                Jordan    JO   JOR 1993
## 7537                                                Jordan    JO   JOR 1994
## 7538                                                Jordan    JO   JOR 1995
## 7539                                                Jordan    JO   JOR 1996
## 7540                                                Jordan    JO   JOR 1997
## 7541                                                Jordan    JO   JOR 1998
## 7542                                                Jordan    JO   JOR 1999
## 7543                                                Jordan    JO   JOR 2000
## 7544                                                Jordan    JO   JOR 2001
## 7545                                                Jordan    JO   JOR 2002
## 7546                                                Jordan    JO   JOR 2003
## 7547                                                Jordan    JO   JOR 2004
## 7548                                                Jordan    JO   JOR 2005
## 7549                                                Jordan    JO   JOR 2006
## 7550                                                Jordan    JO   JOR 2007
## 7551                                                Jordan    JO   JOR 2008
## 7552                                                Jordan    JO   JOR 2009
## 7553                                                Jordan    JO   JOR 2010
## 7554                                                Jordan    JO   JOR 2011
## 7555                                                Jordan    JO   JOR 2012
## 7556                                                Jordan    JO   JOR 2013
## 7557                                                Jordan    JO   JOR 2014
## 7558                                                Jordan    JO   JOR 2015
## 7559                                                Jordan    JO   JOR 2016
## 7560                                                Jordan    JO   JOR 2017
## 7561                                                Jordan    JO   JOR 2018
## 7562                                                Jordan    JO   JOR 2019
## 7563                                                Jordan    JO   JOR 2020
## 7564                                                Jordan    JO   JOR 2021
## 7565                                            Kazakhstan    KZ   KAZ 1960
## 7566                                            Kazakhstan    KZ   KAZ 1961
## 7567                                            Kazakhstan    KZ   KAZ 1962
## 7568                                            Kazakhstan    KZ   KAZ 1963
## 7569                                            Kazakhstan    KZ   KAZ 1964
## 7570                                            Kazakhstan    KZ   KAZ 1965
## 7571                                            Kazakhstan    KZ   KAZ 1966
## 7572                                            Kazakhstan    KZ   KAZ 1967
## 7573                                            Kazakhstan    KZ   KAZ 1968
## 7574                                            Kazakhstan    KZ   KAZ 1969
## 7575                                            Kazakhstan    KZ   KAZ 1970
## 7576                                            Kazakhstan    KZ   KAZ 1971
## 7577                                            Kazakhstan    KZ   KAZ 1972
## 7578                                            Kazakhstan    KZ   KAZ 1973
## 7579                                            Kazakhstan    KZ   KAZ 1974
## 7580                                            Kazakhstan    KZ   KAZ 1975
## 7581                                            Kazakhstan    KZ   KAZ 1976
## 7582                                            Kazakhstan    KZ   KAZ 1977
## 7583                                            Kazakhstan    KZ   KAZ 1978
## 7584                                            Kazakhstan    KZ   KAZ 1979
## 7585                                            Kazakhstan    KZ   KAZ 1980
## 7586                                            Kazakhstan    KZ   KAZ 1981
## 7587                                            Kazakhstan    KZ   KAZ 1982
## 7588                                            Kazakhstan    KZ   KAZ 1983
## 7589                                            Kazakhstan    KZ   KAZ 1984
## 7590                                            Kazakhstan    KZ   KAZ 1985
## 7591                                            Kazakhstan    KZ   KAZ 1986
## 7592                                            Kazakhstan    KZ   KAZ 1987
## 7593                                            Kazakhstan    KZ   KAZ 1988
## 7594                                            Kazakhstan    KZ   KAZ 1989
## 7595                                            Kazakhstan    KZ   KAZ 1990
## 7596                                            Kazakhstan    KZ   KAZ 1991
## 7597                                            Kazakhstan    KZ   KAZ 1992
## 7598                                            Kazakhstan    KZ   KAZ 1993
## 7599                                            Kazakhstan    KZ   KAZ 1994
## 7600                                            Kazakhstan    KZ   KAZ 1995
## 7601                                            Kazakhstan    KZ   KAZ 1996
## 7602                                            Kazakhstan    KZ   KAZ 1997
## 7603                                            Kazakhstan    KZ   KAZ 1998
## 7604                                            Kazakhstan    KZ   KAZ 1999
## 7605                                            Kazakhstan    KZ   KAZ 2000
## 7606                                            Kazakhstan    KZ   KAZ 2001
## 7607                                            Kazakhstan    KZ   KAZ 2002
## 7608                                            Kazakhstan    KZ   KAZ 2003
## 7609                                            Kazakhstan    KZ   KAZ 2004
## 7610                                            Kazakhstan    KZ   KAZ 2005
## 7611                                            Kazakhstan    KZ   KAZ 2006
## 7612                                            Kazakhstan    KZ   KAZ 2007
## 7613                                            Kazakhstan    KZ   KAZ 2008
## 7614                                            Kazakhstan    KZ   KAZ 2009
## 7615                                            Kazakhstan    KZ   KAZ 2010
## 7616                                            Kazakhstan    KZ   KAZ 2011
## 7617                                            Kazakhstan    KZ   KAZ 2012
## 7618                                            Kazakhstan    KZ   KAZ 2013
## 7619                                            Kazakhstan    KZ   KAZ 2014
## 7620                                            Kazakhstan    KZ   KAZ 2015
## 7621                                            Kazakhstan    KZ   KAZ 2016
## 7622                                            Kazakhstan    KZ   KAZ 2017
## 7623                                            Kazakhstan    KZ   KAZ 2018
## 7624                                            Kazakhstan    KZ   KAZ 2019
## 7625                                            Kazakhstan    KZ   KAZ 2020
## 7626                                            Kazakhstan    KZ   KAZ 2021
## 7627                                                 Kenya    KE   KEN 1960
## 7628                                                 Kenya    KE   KEN 1961
## 7629                                                 Kenya    KE   KEN 1962
## 7630                                                 Kenya    KE   KEN 1963
## 7631                                                 Kenya    KE   KEN 1964
## 7632                                                 Kenya    KE   KEN 1965
## 7633                                                 Kenya    KE   KEN 1966
## 7634                                                 Kenya    KE   KEN 1967
## 7635                                                 Kenya    KE   KEN 1968
## 7636                                                 Kenya    KE   KEN 1969
## 7637                                                 Kenya    KE   KEN 1970
## 7638                                                 Kenya    KE   KEN 1971
## 7639                                                 Kenya    KE   KEN 1972
## 7640                                                 Kenya    KE   KEN 1973
## 7641                                                 Kenya    KE   KEN 1974
## 7642                                                 Kenya    KE   KEN 1975
## 7643                                                 Kenya    KE   KEN 1976
## 7644                                                 Kenya    KE   KEN 1977
## 7645                                                 Kenya    KE   KEN 1978
## 7646                                                 Kenya    KE   KEN 1979
## 7647                                                 Kenya    KE   KEN 1980
## 7648                                                 Kenya    KE   KEN 1981
## 7649                                                 Kenya    KE   KEN 1982
## 7650                                                 Kenya    KE   KEN 1983
## 7651                                                 Kenya    KE   KEN 1984
## 7652                                                 Kenya    KE   KEN 1985
## 7653                                                 Kenya    KE   KEN 1986
## 7654                                                 Kenya    KE   KEN 1987
## 7655                                                 Kenya    KE   KEN 1988
## 7656                                                 Kenya    KE   KEN 1989
## 7657                                                 Kenya    KE   KEN 1990
## 7658                                                 Kenya    KE   KEN 1991
## 7659                                                 Kenya    KE   KEN 1992
## 7660                                                 Kenya    KE   KEN 1993
## 7661                                                 Kenya    KE   KEN 1994
## 7662                                                 Kenya    KE   KEN 1995
## 7663                                                 Kenya    KE   KEN 1996
## 7664                                                 Kenya    KE   KEN 1997
## 7665                                                 Kenya    KE   KEN 1998
## 7666                                                 Kenya    KE   KEN 1999
## 7667                                                 Kenya    KE   KEN 2000
## 7668                                                 Kenya    KE   KEN 2001
## 7669                                                 Kenya    KE   KEN 2002
## 7670                                                 Kenya    KE   KEN 2003
## 7671                                                 Kenya    KE   KEN 2004
## 7672                                                 Kenya    KE   KEN 2005
## 7673                                                 Kenya    KE   KEN 2006
## 7674                                                 Kenya    KE   KEN 2007
## 7675                                                 Kenya    KE   KEN 2008
## 7676                                                 Kenya    KE   KEN 2009
## 7677                                                 Kenya    KE   KEN 2010
## 7678                                                 Kenya    KE   KEN 2011
## 7679                                                 Kenya    KE   KEN 2012
## 7680                                                 Kenya    KE   KEN 2013
## 7681                                                 Kenya    KE   KEN 2014
## 7682                                                 Kenya    KE   KEN 2015
## 7683                                                 Kenya    KE   KEN 2016
## 7684                                                 Kenya    KE   KEN 2017
## 7685                                                 Kenya    KE   KEN 2018
## 7686                                                 Kenya    KE   KEN 2019
## 7687                                                 Kenya    KE   KEN 2020
## 7688                                                 Kenya    KE   KEN 2021
## 7689                                              Kiribati    KI   KIR 1960
## 7690                                              Kiribati    KI   KIR 1961
## 7691                                              Kiribati    KI   KIR 1962
## 7692                                              Kiribati    KI   KIR 1963
## 7693                                              Kiribati    KI   KIR 1964
## 7694                                              Kiribati    KI   KIR 1965
## 7695                                              Kiribati    KI   KIR 1966
## 7696                                              Kiribati    KI   KIR 1967
## 7697                                              Kiribati    KI   KIR 1968
## 7698                                              Kiribati    KI   KIR 1969
## 7699                                              Kiribati    KI   KIR 1970
## 7700                                              Kiribati    KI   KIR 1971
## 7701                                              Kiribati    KI   KIR 1972
## 7702                                              Kiribati    KI   KIR 1973
## 7703                                              Kiribati    KI   KIR 1974
## 7704                                              Kiribati    KI   KIR 1975
## 7705                                              Kiribati    KI   KIR 1976
## 7706                                              Kiribati    KI   KIR 1977
## 7707                                              Kiribati    KI   KIR 1978
## 7708                                              Kiribati    KI   KIR 1979
## 7709                                              Kiribati    KI   KIR 1980
## 7710                                              Kiribati    KI   KIR 1981
## 7711                                              Kiribati    KI   KIR 1982
## 7712                                              Kiribati    KI   KIR 1983
## 7713                                              Kiribati    KI   KIR 1984
## 7714                                              Kiribati    KI   KIR 1985
## 7715                                              Kiribati    KI   KIR 1986
## 7716                                              Kiribati    KI   KIR 1987
## 7717                                              Kiribati    KI   KIR 1988
## 7718                                              Kiribati    KI   KIR 1989
## 7719                                              Kiribati    KI   KIR 1990
## 7720                                              Kiribati    KI   KIR 1991
## 7721                                              Kiribati    KI   KIR 1992
## 7722                                              Kiribati    KI   KIR 1993
## 7723                                              Kiribati    KI   KIR 1994
## 7724                                              Kiribati    KI   KIR 1995
## 7725                                              Kiribati    KI   KIR 1996
## 7726                                              Kiribati    KI   KIR 1997
## 7727                                              Kiribati    KI   KIR 1998
## 7728                                              Kiribati    KI   KIR 1999
## 7729                                              Kiribati    KI   KIR 2000
## 7730                                              Kiribati    KI   KIR 2001
## 7731                                              Kiribati    KI   KIR 2002
## 7732                                              Kiribati    KI   KIR 2003
## 7733                                              Kiribati    KI   KIR 2004
## 7734                                              Kiribati    KI   KIR 2005
## 7735                                              Kiribati    KI   KIR 2006
## 7736                                              Kiribati    KI   KIR 2007
## 7737                                              Kiribati    KI   KIR 2008
## 7738                                              Kiribati    KI   KIR 2009
## 7739                                              Kiribati    KI   KIR 2010
## 7740                                              Kiribati    KI   KIR 2011
## 7741                                              Kiribati    KI   KIR 2012
## 7742                                              Kiribati    KI   KIR 2013
## 7743                                              Kiribati    KI   KIR 2014
## 7744                                              Kiribati    KI   KIR 2015
## 7745                                              Kiribati    KI   KIR 2016
## 7746                                              Kiribati    KI   KIR 2017
## 7747                                              Kiribati    KI   KIR 2018
## 7748                                              Kiribati    KI   KIR 2019
## 7749                                              Kiribati    KI   KIR 2020
## 7750                                              Kiribati    KI   KIR 2021
## 7751                             Korea, Dem. People's Rep.    KP   PRK 1960
## 7752                             Korea, Dem. People's Rep.    KP   PRK 1961
## 7753                             Korea, Dem. People's Rep.    KP   PRK 1962
## 7754                             Korea, Dem. People's Rep.    KP   PRK 1963
## 7755                             Korea, Dem. People's Rep.    KP   PRK 1964
## 7756                             Korea, Dem. People's Rep.    KP   PRK 1965
## 7757                             Korea, Dem. People's Rep.    KP   PRK 1966
## 7758                             Korea, Dem. People's Rep.    KP   PRK 1967
## 7759                             Korea, Dem. People's Rep.    KP   PRK 1968
## 7760                             Korea, Dem. People's Rep.    KP   PRK 1969
## 7761                             Korea, Dem. People's Rep.    KP   PRK 1970
## 7762                             Korea, Dem. People's Rep.    KP   PRK 1971
## 7763                             Korea, Dem. People's Rep.    KP   PRK 1972
## 7764                             Korea, Dem. People's Rep.    KP   PRK 1973
## 7765                             Korea, Dem. People's Rep.    KP   PRK 1974
## 7766                             Korea, Dem. People's Rep.    KP   PRK 1975
## 7767                             Korea, Dem. People's Rep.    KP   PRK 1976
## 7768                             Korea, Dem. People's Rep.    KP   PRK 1977
## 7769                             Korea, Dem. People's Rep.    KP   PRK 1978
## 7770                             Korea, Dem. People's Rep.    KP   PRK 1979
## 7771                             Korea, Dem. People's Rep.    KP   PRK 1980
## 7772                             Korea, Dem. People's Rep.    KP   PRK 1981
## 7773                             Korea, Dem. People's Rep.    KP   PRK 1982
## 7774                             Korea, Dem. People's Rep.    KP   PRK 1983
## 7775                             Korea, Dem. People's Rep.    KP   PRK 1984
## 7776                             Korea, Dem. People's Rep.    KP   PRK 1985
## 7777                             Korea, Dem. People's Rep.    KP   PRK 1986
## 7778                             Korea, Dem. People's Rep.    KP   PRK 1987
## 7779                             Korea, Dem. People's Rep.    KP   PRK 1988
## 7780                             Korea, Dem. People's Rep.    KP   PRK 1989
## 7781                             Korea, Dem. People's Rep.    KP   PRK 1990
## 7782                             Korea, Dem. People's Rep.    KP   PRK 1991
## 7783                             Korea, Dem. People's Rep.    KP   PRK 1992
## 7784                             Korea, Dem. People's Rep.    KP   PRK 1993
## 7785                             Korea, Dem. People's Rep.    KP   PRK 1994
## 7786                             Korea, Dem. People's Rep.    KP   PRK 1995
## 7787                             Korea, Dem. People's Rep.    KP   PRK 1996
## 7788                             Korea, Dem. People's Rep.    KP   PRK 1997
## 7789                             Korea, Dem. People's Rep.    KP   PRK 1998
## 7790                             Korea, Dem. People's Rep.    KP   PRK 1999
## 7791                             Korea, Dem. People's Rep.    KP   PRK 2000
## 7792                             Korea, Dem. People's Rep.    KP   PRK 2001
## 7793                             Korea, Dem. People's Rep.    KP   PRK 2002
## 7794                             Korea, Dem. People's Rep.    KP   PRK 2003
## 7795                             Korea, Dem. People's Rep.    KP   PRK 2004
## 7796                             Korea, Dem. People's Rep.    KP   PRK 2005
## 7797                             Korea, Dem. People's Rep.    KP   PRK 2006
## 7798                             Korea, Dem. People's Rep.    KP   PRK 2007
## 7799                             Korea, Dem. People's Rep.    KP   PRK 2008
## 7800                             Korea, Dem. People's Rep.    KP   PRK 2009
## 7801                             Korea, Dem. People's Rep.    KP   PRK 2010
## 7802                             Korea, Dem. People's Rep.    KP   PRK 2011
## 7803                             Korea, Dem. People's Rep.    KP   PRK 2012
## 7804                             Korea, Dem. People's Rep.    KP   PRK 2013
## 7805                             Korea, Dem. People's Rep.    KP   PRK 2014
## 7806                             Korea, Dem. People's Rep.    KP   PRK 2015
## 7807                             Korea, Dem. People's Rep.    KP   PRK 2016
## 7808                             Korea, Dem. People's Rep.    KP   PRK 2017
## 7809                             Korea, Dem. People's Rep.    KP   PRK 2018
## 7810                             Korea, Dem. People's Rep.    KP   PRK 2019
## 7811                             Korea, Dem. People's Rep.    KP   PRK 2020
## 7812                             Korea, Dem. People's Rep.    KP   PRK 2021
## 7813                                           Korea, Rep.    KR   KOR 1960
## 7814                                           Korea, Rep.    KR   KOR 1961
## 7815                                           Korea, Rep.    KR   KOR 1962
## 7816                                           Korea, Rep.    KR   KOR 1963
## 7817                                           Korea, Rep.    KR   KOR 1964
## 7818                                           Korea, Rep.    KR   KOR 1965
## 7819                                           Korea, Rep.    KR   KOR 1966
## 7820                                           Korea, Rep.    KR   KOR 1967
## 7821                                           Korea, Rep.    KR   KOR 1968
## 7822                                           Korea, Rep.    KR   KOR 1969
## 7823                                           Korea, Rep.    KR   KOR 1970
## 7824                                           Korea, Rep.    KR   KOR 1971
## 7825                                           Korea, Rep.    KR   KOR 1972
## 7826                                           Korea, Rep.    KR   KOR 1973
## 7827                                           Korea, Rep.    KR   KOR 1974
## 7828                                           Korea, Rep.    KR   KOR 1975
## 7829                                           Korea, Rep.    KR   KOR 1976
## 7830                                           Korea, Rep.    KR   KOR 1977
## 7831                                           Korea, Rep.    KR   KOR 1978
## 7832                                           Korea, Rep.    KR   KOR 1979
## 7833                                           Korea, Rep.    KR   KOR 1980
## 7834                                           Korea, Rep.    KR   KOR 1981
## 7835                                           Korea, Rep.    KR   KOR 1982
## 7836                                           Korea, Rep.    KR   KOR 1983
## 7837                                           Korea, Rep.    KR   KOR 1984
## 7838                                           Korea, Rep.    KR   KOR 1985
## 7839                                           Korea, Rep.    KR   KOR 1986
## 7840                                           Korea, Rep.    KR   KOR 1987
## 7841                                           Korea, Rep.    KR   KOR 1988
## 7842                                           Korea, Rep.    KR   KOR 1989
## 7843                                           Korea, Rep.    KR   KOR 1990
## 7844                                           Korea, Rep.    KR   KOR 1991
## 7845                                           Korea, Rep.    KR   KOR 1992
## 7846                                           Korea, Rep.    KR   KOR 1993
## 7847                                           Korea, Rep.    KR   KOR 1994
## 7848                                           Korea, Rep.    KR   KOR 1995
## 7849                                           Korea, Rep.    KR   KOR 1996
## 7850                                           Korea, Rep.    KR   KOR 1997
## 7851                                           Korea, Rep.    KR   KOR 1998
## 7852                                           Korea, Rep.    KR   KOR 1999
## 7853                                           Korea, Rep.    KR   KOR 2000
## 7854                                           Korea, Rep.    KR   KOR 2001
## 7855                                           Korea, Rep.    KR   KOR 2002
## 7856                                           Korea, Rep.    KR   KOR 2003
## 7857                                           Korea, Rep.    KR   KOR 2004
## 7858                                           Korea, Rep.    KR   KOR 2005
## 7859                                           Korea, Rep.    KR   KOR 2006
## 7860                                           Korea, Rep.    KR   KOR 2007
## 7861                                           Korea, Rep.    KR   KOR 2008
## 7862                                           Korea, Rep.    KR   KOR 2009
## 7863                                           Korea, Rep.    KR   KOR 2010
## 7864                                           Korea, Rep.    KR   KOR 2011
## 7865                                           Korea, Rep.    KR   KOR 2012
## 7866                                           Korea, Rep.    KR   KOR 2013
## 7867                                           Korea, Rep.    KR   KOR 2014
## 7868                                           Korea, Rep.    KR   KOR 2015
## 7869                                           Korea, Rep.    KR   KOR 2016
## 7870                                           Korea, Rep.    KR   KOR 2017
## 7871                                           Korea, Rep.    KR   KOR 2018
## 7872                                           Korea, Rep.    KR   KOR 2019
## 7873                                           Korea, Rep.    KR   KOR 2020
## 7874                                           Korea, Rep.    KR   KOR 2021
## 7875                                                Kosovo    XK   XKX 1960
## 7876                                                Kosovo    XK   XKX 1961
## 7877                                                Kosovo    XK   XKX 1962
## 7878                                                Kosovo    XK   XKX 1963
## 7879                                                Kosovo    XK   XKX 1964
## 7880                                                Kosovo    XK   XKX 1965
## 7881                                                Kosovo    XK   XKX 1966
## 7882                                                Kosovo    XK   XKX 1967
## 7883                                                Kosovo    XK   XKX 1968
## 7884                                                Kosovo    XK   XKX 1969
## 7885                                                Kosovo    XK   XKX 1970
## 7886                                                Kosovo    XK   XKX 1971
## 7887                                                Kosovo    XK   XKX 1972
## 7888                                                Kosovo    XK   XKX 1973
## 7889                                                Kosovo    XK   XKX 1974
## 7890                                                Kosovo    XK   XKX 1975
## 7891                                                Kosovo    XK   XKX 1976
## 7892                                                Kosovo    XK   XKX 1977
## 7893                                                Kosovo    XK   XKX 1978
## 7894                                                Kosovo    XK   XKX 1979
## 7895                                                Kosovo    XK   XKX 1980
## 7896                                                Kosovo    XK   XKX 1981
## 7897                                                Kosovo    XK   XKX 1982
## 7898                                                Kosovo    XK   XKX 1983
## 7899                                                Kosovo    XK   XKX 1984
## 7900                                                Kosovo    XK   XKX 1985
## 7901                                                Kosovo    XK   XKX 1986
## 7902                                                Kosovo    XK   XKX 1987
## 7903                                                Kosovo    XK   XKX 1988
## 7904                                                Kosovo    XK   XKX 1989
## 7905                                                Kosovo    XK   XKX 1990
## 7906                                                Kosovo    XK   XKX 1991
## 7907                                                Kosovo    XK   XKX 1992
## 7908                                                Kosovo    XK   XKX 1993
## 7909                                                Kosovo    XK   XKX 1994
## 7910                                                Kosovo    XK   XKX 1995
## 7911                                                Kosovo    XK   XKX 1996
## 7912                                                Kosovo    XK   XKX 1997
## 7913                                                Kosovo    XK   XKX 1998
## 7914                                                Kosovo    XK   XKX 1999
## 7915                                                Kosovo    XK   XKX 2000
## 7916                                                Kosovo    XK   XKX 2001
## 7917                                                Kosovo    XK   XKX 2002
## 7918                                                Kosovo    XK   XKX 2003
## 7919                                                Kosovo    XK   XKX 2004
## 7920                                                Kosovo    XK   XKX 2005
## 7921                                                Kosovo    XK   XKX 2006
## 7922                                                Kosovo    XK   XKX 2007
## 7923                                                Kosovo    XK   XKX 2008
## 7924                                                Kosovo    XK   XKX 2009
## 7925                                                Kosovo    XK   XKX 2010
## 7926                                                Kosovo    XK   XKX 2011
## 7927                                                Kosovo    XK   XKX 2012
## 7928                                                Kosovo    XK   XKX 2013
## 7929                                                Kosovo    XK   XKX 2014
## 7930                                                Kosovo    XK   XKX 2015
## 7931                                                Kosovo    XK   XKX 2016
## 7932                                                Kosovo    XK   XKX 2017
## 7933                                                Kosovo    XK   XKX 2018
## 7934                                                Kosovo    XK   XKX 2019
## 7935                                                Kosovo    XK   XKX 2020
## 7936                                                Kosovo    XK   XKX 2021
## 7937                                                Kuwait    KW   KWT 1960
## 7938                                                Kuwait    KW   KWT 1961
## 7939                                                Kuwait    KW   KWT 1962
## 7940                                                Kuwait    KW   KWT 1963
## 7941                                                Kuwait    KW   KWT 1964
## 7942                                                Kuwait    KW   KWT 1965
## 7943                                                Kuwait    KW   KWT 1966
## 7944                                                Kuwait    KW   KWT 1967
## 7945                                                Kuwait    KW   KWT 1968
## 7946                                                Kuwait    KW   KWT 1969
## 7947                                                Kuwait    KW   KWT 1970
## 7948                                                Kuwait    KW   KWT 1971
## 7949                                                Kuwait    KW   KWT 1972
## 7950                                                Kuwait    KW   KWT 1973
## 7951                                                Kuwait    KW   KWT 1974
## 7952                                                Kuwait    KW   KWT 1975
## 7953                                                Kuwait    KW   KWT 1976
## 7954                                                Kuwait    KW   KWT 1977
## 7955                                                Kuwait    KW   KWT 1978
## 7956                                                Kuwait    KW   KWT 1979
## 7957                                                Kuwait    KW   KWT 1980
## 7958                                                Kuwait    KW   KWT 1981
## 7959                                                Kuwait    KW   KWT 1982
## 7960                                                Kuwait    KW   KWT 1983
## 7961                                                Kuwait    KW   KWT 1984
## 7962                                                Kuwait    KW   KWT 1985
## 7963                                                Kuwait    KW   KWT 1986
## 7964                                                Kuwait    KW   KWT 1987
## 7965                                                Kuwait    KW   KWT 1988
## 7966                                                Kuwait    KW   KWT 1989
## 7967                                                Kuwait    KW   KWT 1990
## 7968                                                Kuwait    KW   KWT 1991
## 7969                                                Kuwait    KW   KWT 1992
## 7970                                                Kuwait    KW   KWT 1993
## 7971                                                Kuwait    KW   KWT 1994
## 7972                                                Kuwait    KW   KWT 1995
## 7973                                                Kuwait    KW   KWT 1996
## 7974                                                Kuwait    KW   KWT 1997
## 7975                                                Kuwait    KW   KWT 1998
## 7976                                                Kuwait    KW   KWT 1999
## 7977                                                Kuwait    KW   KWT 2000
## 7978                                                Kuwait    KW   KWT 2001
## 7979                                                Kuwait    KW   KWT 2002
## 7980                                                Kuwait    KW   KWT 2003
## 7981                                                Kuwait    KW   KWT 2004
## 7982                                                Kuwait    KW   KWT 2005
## 7983                                                Kuwait    KW   KWT 2006
## 7984                                                Kuwait    KW   KWT 2007
## 7985                                                Kuwait    KW   KWT 2008
## 7986                                                Kuwait    KW   KWT 2009
## 7987                                                Kuwait    KW   KWT 2010
## 7988                                                Kuwait    KW   KWT 2011
## 7989                                                Kuwait    KW   KWT 2012
## 7990                                                Kuwait    KW   KWT 2013
## 7991                                                Kuwait    KW   KWT 2014
## 7992                                                Kuwait    KW   KWT 2015
## 7993                                                Kuwait    KW   KWT 2016
## 7994                                                Kuwait    KW   KWT 2017
## 7995                                                Kuwait    KW   KWT 2018
## 7996                                                Kuwait    KW   KWT 2019
## 7997                                                Kuwait    KW   KWT 2020
## 7998                                                Kuwait    KW   KWT 2021
## 7999                                       Kyrgyz Republic    KG   KGZ 1960
## 8000                                       Kyrgyz Republic    KG   KGZ 1961
## 8001                                       Kyrgyz Republic    KG   KGZ 1962
## 8002                                       Kyrgyz Republic    KG   KGZ 1963
## 8003                                       Kyrgyz Republic    KG   KGZ 1964
## 8004                                       Kyrgyz Republic    KG   KGZ 1965
## 8005                                       Kyrgyz Republic    KG   KGZ 1966
## 8006                                       Kyrgyz Republic    KG   KGZ 1967
## 8007                                       Kyrgyz Republic    KG   KGZ 1968
## 8008                                       Kyrgyz Republic    KG   KGZ 1969
## 8009                                       Kyrgyz Republic    KG   KGZ 1970
## 8010                                       Kyrgyz Republic    KG   KGZ 1971
## 8011                                       Kyrgyz Republic    KG   KGZ 1972
## 8012                                       Kyrgyz Republic    KG   KGZ 1973
## 8013                                       Kyrgyz Republic    KG   KGZ 1974
## 8014                                       Kyrgyz Republic    KG   KGZ 1975
## 8015                                       Kyrgyz Republic    KG   KGZ 1976
## 8016                                       Kyrgyz Republic    KG   KGZ 1977
## 8017                                       Kyrgyz Republic    KG   KGZ 1978
## 8018                                       Kyrgyz Republic    KG   KGZ 1979
## 8019                                       Kyrgyz Republic    KG   KGZ 1980
## 8020                                       Kyrgyz Republic    KG   KGZ 1981
## 8021                                       Kyrgyz Republic    KG   KGZ 1982
## 8022                                       Kyrgyz Republic    KG   KGZ 1983
## 8023                                       Kyrgyz Republic    KG   KGZ 1984
## 8024                                       Kyrgyz Republic    KG   KGZ 1985
## 8025                                       Kyrgyz Republic    KG   KGZ 1986
## 8026                                       Kyrgyz Republic    KG   KGZ 1987
## 8027                                       Kyrgyz Republic    KG   KGZ 1988
## 8028                                       Kyrgyz Republic    KG   KGZ 1989
## 8029                                       Kyrgyz Republic    KG   KGZ 1990
## 8030                                       Kyrgyz Republic    KG   KGZ 1991
## 8031                                       Kyrgyz Republic    KG   KGZ 1992
## 8032                                       Kyrgyz Republic    KG   KGZ 1993
## 8033                                       Kyrgyz Republic    KG   KGZ 1994
## 8034                                       Kyrgyz Republic    KG   KGZ 1995
## 8035                                       Kyrgyz Republic    KG   KGZ 1996
## 8036                                       Kyrgyz Republic    KG   KGZ 1997
## 8037                                       Kyrgyz Republic    KG   KGZ 1998
## 8038                                       Kyrgyz Republic    KG   KGZ 1999
## 8039                                       Kyrgyz Republic    KG   KGZ 2000
## 8040                                       Kyrgyz Republic    KG   KGZ 2001
## 8041                                       Kyrgyz Republic    KG   KGZ 2002
## 8042                                       Kyrgyz Republic    KG   KGZ 2003
## 8043                                       Kyrgyz Republic    KG   KGZ 2004
## 8044                                       Kyrgyz Republic    KG   KGZ 2005
## 8045                                       Kyrgyz Republic    KG   KGZ 2006
## 8046                                       Kyrgyz Republic    KG   KGZ 2007
## 8047                                       Kyrgyz Republic    KG   KGZ 2008
## 8048                                       Kyrgyz Republic    KG   KGZ 2009
## 8049                                       Kyrgyz Republic    KG   KGZ 2010
## 8050                                       Kyrgyz Republic    KG   KGZ 2011
## 8051                                       Kyrgyz Republic    KG   KGZ 2012
## 8052                                       Kyrgyz Republic    KG   KGZ 2013
## 8053                                       Kyrgyz Republic    KG   KGZ 2014
## 8054                                       Kyrgyz Republic    KG   KGZ 2015
## 8055                                       Kyrgyz Republic    KG   KGZ 2016
## 8056                                       Kyrgyz Republic    KG   KGZ 2017
## 8057                                       Kyrgyz Republic    KG   KGZ 2018
## 8058                                       Kyrgyz Republic    KG   KGZ 2019
## 8059                                       Kyrgyz Republic    KG   KGZ 2020
## 8060                                       Kyrgyz Republic    KG   KGZ 2021
## 8061                                               Lao PDR    LA   LAO 1960
## 8062                                               Lao PDR    LA   LAO 1961
## 8063                                               Lao PDR    LA   LAO 1962
## 8064                                               Lao PDR    LA   LAO 1963
## 8065                                               Lao PDR    LA   LAO 1964
## 8066                                               Lao PDR    LA   LAO 1965
## 8067                                               Lao PDR    LA   LAO 1966
## 8068                                               Lao PDR    LA   LAO 1967
## 8069                                               Lao PDR    LA   LAO 1968
## 8070                                               Lao PDR    LA   LAO 1969
## 8071                                               Lao PDR    LA   LAO 1970
## 8072                                               Lao PDR    LA   LAO 1971
## 8073                                               Lao PDR    LA   LAO 1972
## 8074                                               Lao PDR    LA   LAO 1973
## 8075                                               Lao PDR    LA   LAO 1974
## 8076                                               Lao PDR    LA   LAO 1975
## 8077                                               Lao PDR    LA   LAO 1976
## 8078                                               Lao PDR    LA   LAO 1977
## 8079                                               Lao PDR    LA   LAO 1978
## 8080                                               Lao PDR    LA   LAO 1979
## 8081                                               Lao PDR    LA   LAO 1980
## 8082                                               Lao PDR    LA   LAO 1981
## 8083                                               Lao PDR    LA   LAO 1982
## 8084                                               Lao PDR    LA   LAO 1983
## 8085                                               Lao PDR    LA   LAO 1984
## 8086                                               Lao PDR    LA   LAO 1985
## 8087                                               Lao PDR    LA   LAO 1986
## 8088                                               Lao PDR    LA   LAO 1987
## 8089                                               Lao PDR    LA   LAO 1988
## 8090                                               Lao PDR    LA   LAO 1989
## 8091                                               Lao PDR    LA   LAO 1990
## 8092                                               Lao PDR    LA   LAO 1991
## 8093                                               Lao PDR    LA   LAO 1992
## 8094                                               Lao PDR    LA   LAO 1993
## 8095                                               Lao PDR    LA   LAO 1994
## 8096                                               Lao PDR    LA   LAO 1995
## 8097                                               Lao PDR    LA   LAO 1996
## 8098                                               Lao PDR    LA   LAO 1997
## 8099                                               Lao PDR    LA   LAO 1998
## 8100                                               Lao PDR    LA   LAO 1999
## 8101                                               Lao PDR    LA   LAO 2000
## 8102                                               Lao PDR    LA   LAO 2001
## 8103                                               Lao PDR    LA   LAO 2002
## 8104                                               Lao PDR    LA   LAO 2003
## 8105                                               Lao PDR    LA   LAO 2004
## 8106                                               Lao PDR    LA   LAO 2005
## 8107                                               Lao PDR    LA   LAO 2006
## 8108                                               Lao PDR    LA   LAO 2007
## 8109                                               Lao PDR    LA   LAO 2008
## 8110                                               Lao PDR    LA   LAO 2009
## 8111                                               Lao PDR    LA   LAO 2010
## 8112                                               Lao PDR    LA   LAO 2011
## 8113                                               Lao PDR    LA   LAO 2012
## 8114                                               Lao PDR    LA   LAO 2013
## 8115                                               Lao PDR    LA   LAO 2014
## 8116                                               Lao PDR    LA   LAO 2015
## 8117                                               Lao PDR    LA   LAO 2016
## 8118                                               Lao PDR    LA   LAO 2017
## 8119                                               Lao PDR    LA   LAO 2018
## 8120                                               Lao PDR    LA   LAO 2019
## 8121                                               Lao PDR    LA   LAO 2020
## 8122                                               Lao PDR    LA   LAO 2021
## 8123                             Late-demographic dividend    V3   LTE 1960
## 8124                             Late-demographic dividend    V3   LTE 1961
## 8125                             Late-demographic dividend    V3   LTE 1962
## 8126                             Late-demographic dividend    V3   LTE 1963
## 8127                             Late-demographic dividend    V3   LTE 1964
## 8128                             Late-demographic dividend    V3   LTE 1965
## 8129                             Late-demographic dividend    V3   LTE 1966
## 8130                             Late-demographic dividend    V3   LTE 1967
## 8131                             Late-demographic dividend    V3   LTE 1968
## 8132                             Late-demographic dividend    V3   LTE 1969
## 8133                             Late-demographic dividend    V3   LTE 1970
## 8134                             Late-demographic dividend    V3   LTE 1971
## 8135                             Late-demographic dividend    V3   LTE 1972
## 8136                             Late-demographic dividend    V3   LTE 1973
## 8137                             Late-demographic dividend    V3   LTE 1974
## 8138                             Late-demographic dividend    V3   LTE 1975
## 8139                             Late-demographic dividend    V3   LTE 1976
## 8140                             Late-demographic dividend    V3   LTE 1977
## 8141                             Late-demographic dividend    V3   LTE 1978
## 8142                             Late-demographic dividend    V3   LTE 1979
## 8143                             Late-demographic dividend    V3   LTE 1980
## 8144                             Late-demographic dividend    V3   LTE 1981
## 8145                             Late-demographic dividend    V3   LTE 1982
## 8146                             Late-demographic dividend    V3   LTE 1983
## 8147                             Late-demographic dividend    V3   LTE 1984
## 8148                             Late-demographic dividend    V3   LTE 1985
## 8149                             Late-demographic dividend    V3   LTE 1986
## 8150                             Late-demographic dividend    V3   LTE 1987
## 8151                             Late-demographic dividend    V3   LTE 1988
## 8152                             Late-demographic dividend    V3   LTE 1989
## 8153                             Late-demographic dividend    V3   LTE 1990
## 8154                             Late-demographic dividend    V3   LTE 1991
## 8155                             Late-demographic dividend    V3   LTE 1992
## 8156                             Late-demographic dividend    V3   LTE 1993
## 8157                             Late-demographic dividend    V3   LTE 1994
## 8158                             Late-demographic dividend    V3   LTE 1995
## 8159                             Late-demographic dividend    V3   LTE 1996
## 8160                             Late-demographic dividend    V3   LTE 1997
## 8161                             Late-demographic dividend    V3   LTE 1998
## 8162                             Late-demographic dividend    V3   LTE 1999
## 8163                             Late-demographic dividend    V3   LTE 2000
## 8164                             Late-demographic dividend    V3   LTE 2001
## 8165                             Late-demographic dividend    V3   LTE 2002
## 8166                             Late-demographic dividend    V3   LTE 2003
## 8167                             Late-demographic dividend    V3   LTE 2004
## 8168                             Late-demographic dividend    V3   LTE 2005
## 8169                             Late-demographic dividend    V3   LTE 2006
## 8170                             Late-demographic dividend    V3   LTE 2007
## 8171                             Late-demographic dividend    V3   LTE 2008
## 8172                             Late-demographic dividend    V3   LTE 2009
## 8173                             Late-demographic dividend    V3   LTE 2010
## 8174                             Late-demographic dividend    V3   LTE 2011
## 8175                             Late-demographic dividend    V3   LTE 2012
## 8176                             Late-demographic dividend    V3   LTE 2013
## 8177                             Late-demographic dividend    V3   LTE 2014
## 8178                             Late-demographic dividend    V3   LTE 2015
## 8179                             Late-demographic dividend    V3   LTE 2016
## 8180                             Late-demographic dividend    V3   LTE 2017
## 8181                             Late-demographic dividend    V3   LTE 2018
## 8182                             Late-demographic dividend    V3   LTE 2019
## 8183                             Late-demographic dividend    V3   LTE 2020
## 8184                             Late-demographic dividend    V3   LTE 2021
## 8185                             Latin America & Caribbean    ZJ   LCN 1960
## 8186                             Latin America & Caribbean    ZJ   LCN 1961
## 8187                             Latin America & Caribbean    ZJ   LCN 1962
## 8188                             Latin America & Caribbean    ZJ   LCN 1963
## 8189                             Latin America & Caribbean    ZJ   LCN 1964
## 8190                             Latin America & Caribbean    ZJ   LCN 1965
## 8191                             Latin America & Caribbean    ZJ   LCN 1966
## 8192                             Latin America & Caribbean    ZJ   LCN 1967
## 8193                             Latin America & Caribbean    ZJ   LCN 1968
## 8194                             Latin America & Caribbean    ZJ   LCN 1969
## 8195                             Latin America & Caribbean    ZJ   LCN 1970
## 8196                             Latin America & Caribbean    ZJ   LCN 1971
## 8197                             Latin America & Caribbean    ZJ   LCN 1972
## 8198                             Latin America & Caribbean    ZJ   LCN 1973
## 8199                             Latin America & Caribbean    ZJ   LCN 1974
## 8200                             Latin America & Caribbean    ZJ   LCN 1975
## 8201                             Latin America & Caribbean    ZJ   LCN 1976
## 8202                             Latin America & Caribbean    ZJ   LCN 1977
## 8203                             Latin America & Caribbean    ZJ   LCN 1978
## 8204                             Latin America & Caribbean    ZJ   LCN 1979
## 8205                             Latin America & Caribbean    ZJ   LCN 1980
## 8206                             Latin America & Caribbean    ZJ   LCN 1981
## 8207                             Latin America & Caribbean    ZJ   LCN 1982
## 8208                             Latin America & Caribbean    ZJ   LCN 1983
## 8209                             Latin America & Caribbean    ZJ   LCN 1984
## 8210                             Latin America & Caribbean    ZJ   LCN 1985
## 8211                             Latin America & Caribbean    ZJ   LCN 1986
## 8212                             Latin America & Caribbean    ZJ   LCN 1987
## 8213                             Latin America & Caribbean    ZJ   LCN 1988
## 8214                             Latin America & Caribbean    ZJ   LCN 1989
## 8215                             Latin America & Caribbean    ZJ   LCN 1990
## 8216                             Latin America & Caribbean    ZJ   LCN 1991
## 8217                             Latin America & Caribbean    ZJ   LCN 1992
## 8218                             Latin America & Caribbean    ZJ   LCN 1993
## 8219                             Latin America & Caribbean    ZJ   LCN 1994
## 8220                             Latin America & Caribbean    ZJ   LCN 1995
## 8221                             Latin America & Caribbean    ZJ   LCN 1996
## 8222                             Latin America & Caribbean    ZJ   LCN 1997
## 8223                             Latin America & Caribbean    ZJ   LCN 1998
## 8224                             Latin America & Caribbean    ZJ   LCN 1999
## 8225                             Latin America & Caribbean    ZJ   LCN 2000
## 8226                             Latin America & Caribbean    ZJ   LCN 2001
## 8227                             Latin America & Caribbean    ZJ   LCN 2002
## 8228                             Latin America & Caribbean    ZJ   LCN 2003
## 8229                             Latin America & Caribbean    ZJ   LCN 2004
## 8230                             Latin America & Caribbean    ZJ   LCN 2005
## 8231                             Latin America & Caribbean    ZJ   LCN 2006
## 8232                             Latin America & Caribbean    ZJ   LCN 2007
## 8233                             Latin America & Caribbean    ZJ   LCN 2008
## 8234                             Latin America & Caribbean    ZJ   LCN 2009
## 8235                             Latin America & Caribbean    ZJ   LCN 2010
## 8236                             Latin America & Caribbean    ZJ   LCN 2011
## 8237                             Latin America & Caribbean    ZJ   LCN 2012
## 8238                             Latin America & Caribbean    ZJ   LCN 2013
## 8239                             Latin America & Caribbean    ZJ   LCN 2014
## 8240                             Latin America & Caribbean    ZJ   LCN 2015
## 8241                             Latin America & Caribbean    ZJ   LCN 2016
## 8242                             Latin America & Caribbean    ZJ   LCN 2017
## 8243                             Latin America & Caribbean    ZJ   LCN 2018
## 8244                             Latin America & Caribbean    ZJ   LCN 2019
## 8245                             Latin America & Caribbean    ZJ   LCN 2020
## 8246                             Latin America & Caribbean    ZJ   LCN 2021
## 8247     Latin America & Caribbean (excluding high income)    XJ   LAC 1960
## 8248     Latin America & Caribbean (excluding high income)    XJ   LAC 1961
## 8249     Latin America & Caribbean (excluding high income)    XJ   LAC 1962
## 8250     Latin America & Caribbean (excluding high income)    XJ   LAC 1963
## 8251     Latin America & Caribbean (excluding high income)    XJ   LAC 1964
## 8252     Latin America & Caribbean (excluding high income)    XJ   LAC 1965
## 8253     Latin America & Caribbean (excluding high income)    XJ   LAC 1966
## 8254     Latin America & Caribbean (excluding high income)    XJ   LAC 1967
## 8255     Latin America & Caribbean (excluding high income)    XJ   LAC 1968
## 8256     Latin America & Caribbean (excluding high income)    XJ   LAC 1969
## 8257     Latin America & Caribbean (excluding high income)    XJ   LAC 1970
## 8258     Latin America & Caribbean (excluding high income)    XJ   LAC 1971
## 8259     Latin America & Caribbean (excluding high income)    XJ   LAC 1972
## 8260     Latin America & Caribbean (excluding high income)    XJ   LAC 1973
## 8261     Latin America & Caribbean (excluding high income)    XJ   LAC 1974
## 8262     Latin America & Caribbean (excluding high income)    XJ   LAC 1975
## 8263     Latin America & Caribbean (excluding high income)    XJ   LAC 1976
## 8264     Latin America & Caribbean (excluding high income)    XJ   LAC 1977
## 8265     Latin America & Caribbean (excluding high income)    XJ   LAC 1978
## 8266     Latin America & Caribbean (excluding high income)    XJ   LAC 1979
## 8267     Latin America & Caribbean (excluding high income)    XJ   LAC 1980
## 8268     Latin America & Caribbean (excluding high income)    XJ   LAC 1981
## 8269     Latin America & Caribbean (excluding high income)    XJ   LAC 1982
## 8270     Latin America & Caribbean (excluding high income)    XJ   LAC 1983
## 8271     Latin America & Caribbean (excluding high income)    XJ   LAC 1984
## 8272     Latin America & Caribbean (excluding high income)    XJ   LAC 1985
## 8273     Latin America & Caribbean (excluding high income)    XJ   LAC 1986
## 8274     Latin America & Caribbean (excluding high income)    XJ   LAC 1987
## 8275     Latin America & Caribbean (excluding high income)    XJ   LAC 1988
## 8276     Latin America & Caribbean (excluding high income)    XJ   LAC 1989
## 8277     Latin America & Caribbean (excluding high income)    XJ   LAC 1990
## 8278     Latin America & Caribbean (excluding high income)    XJ   LAC 1991
## 8279     Latin America & Caribbean (excluding high income)    XJ   LAC 1992
## 8280     Latin America & Caribbean (excluding high income)    XJ   LAC 1993
## 8281     Latin America & Caribbean (excluding high income)    XJ   LAC 1994
## 8282     Latin America & Caribbean (excluding high income)    XJ   LAC 1995
## 8283     Latin America & Caribbean (excluding high income)    XJ   LAC 1996
## 8284     Latin America & Caribbean (excluding high income)    XJ   LAC 1997
## 8285     Latin America & Caribbean (excluding high income)    XJ   LAC 1998
## 8286     Latin America & Caribbean (excluding high income)    XJ   LAC 1999
## 8287     Latin America & Caribbean (excluding high income)    XJ   LAC 2000
## 8288     Latin America & Caribbean (excluding high income)    XJ   LAC 2001
## 8289     Latin America & Caribbean (excluding high income)    XJ   LAC 2002
## 8290     Latin America & Caribbean (excluding high income)    XJ   LAC 2003
## 8291     Latin America & Caribbean (excluding high income)    XJ   LAC 2004
## 8292     Latin America & Caribbean (excluding high income)    XJ   LAC 2005
## 8293     Latin America & Caribbean (excluding high income)    XJ   LAC 2006
## 8294     Latin America & Caribbean (excluding high income)    XJ   LAC 2007
## 8295     Latin America & Caribbean (excluding high income)    XJ   LAC 2008
## 8296     Latin America & Caribbean (excluding high income)    XJ   LAC 2009
## 8297     Latin America & Caribbean (excluding high income)    XJ   LAC 2010
## 8298     Latin America & Caribbean (excluding high income)    XJ   LAC 2011
## 8299     Latin America & Caribbean (excluding high income)    XJ   LAC 2012
## 8300     Latin America & Caribbean (excluding high income)    XJ   LAC 2013
## 8301     Latin America & Caribbean (excluding high income)    XJ   LAC 2014
## 8302     Latin America & Caribbean (excluding high income)    XJ   LAC 2015
## 8303     Latin America & Caribbean (excluding high income)    XJ   LAC 2016
## 8304     Latin America & Caribbean (excluding high income)    XJ   LAC 2017
## 8305     Latin America & Caribbean (excluding high income)    XJ   LAC 2018
## 8306     Latin America & Caribbean (excluding high income)    XJ   LAC 2019
## 8307     Latin America & Caribbean (excluding high income)    XJ   LAC 2020
## 8308     Latin America & Caribbean (excluding high income)    XJ   LAC 2021
## 8309  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1960
## 8310  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1961
## 8311  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1962
## 8312  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1963
## 8313  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1964
## 8314  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1965
## 8315  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1966
## 8316  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1967
## 8317  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1968
## 8318  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1969
## 8319  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1970
## 8320  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1971
## 8321  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1972
## 8322  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1973
## 8323  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1974
## 8324  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1975
## 8325  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1976
## 8326  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1977
## 8327  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1978
## 8328  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1979
## 8329  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1980
## 8330  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1981
## 8331  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1982
## 8332  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1983
## 8333  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1984
## 8334  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1985
## 8335  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1986
## 8336  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1987
## 8337  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1988
## 8338  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1989
## 8339  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1990
## 8340  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1991
## 8341  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1992
## 8342  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1993
## 8343  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1994
## 8344  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1995
## 8345  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1996
## 8346  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1997
## 8347  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1998
## 8348  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 1999
## 8349  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2000
## 8350  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2001
## 8351  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2002
## 8352  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2003
## 8353  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2004
## 8354  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2005
## 8355  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2006
## 8356  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2007
## 8357  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2008
## 8358  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2009
## 8359  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2010
## 8360  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2011
## 8361  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2012
## 8362  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2013
## 8363  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2014
## 8364  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2015
## 8365  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2016
## 8366  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2017
## 8367  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2018
## 8368  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2019
## 8369  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2020
## 8370  Latin America & the Caribbean (IDA & IBRD countries)    T2   TLA 2021
## 8371                                                Latvia    LV   LVA 1960
## 8372                                                Latvia    LV   LVA 1961
## 8373                                                Latvia    LV   LVA 1962
## 8374                                                Latvia    LV   LVA 1963
## 8375                                                Latvia    LV   LVA 1964
## 8376                                                Latvia    LV   LVA 1965
## 8377                                                Latvia    LV   LVA 1966
## 8378                                                Latvia    LV   LVA 1967
## 8379                                                Latvia    LV   LVA 1968
## 8380                                                Latvia    LV   LVA 1969
## 8381                                                Latvia    LV   LVA 1970
## 8382                                                Latvia    LV   LVA 1971
## 8383                                                Latvia    LV   LVA 1972
## 8384                                                Latvia    LV   LVA 1973
## 8385                                                Latvia    LV   LVA 1974
## 8386                                                Latvia    LV   LVA 1975
## 8387                                                Latvia    LV   LVA 1976
## 8388                                                Latvia    LV   LVA 1977
## 8389                                                Latvia    LV   LVA 1978
## 8390                                                Latvia    LV   LVA 1979
## 8391                                                Latvia    LV   LVA 1980
## 8392                                                Latvia    LV   LVA 1981
## 8393                                                Latvia    LV   LVA 1982
## 8394                                                Latvia    LV   LVA 1983
## 8395                                                Latvia    LV   LVA 1984
## 8396                                                Latvia    LV   LVA 1985
## 8397                                                Latvia    LV   LVA 1986
## 8398                                                Latvia    LV   LVA 1987
## 8399                                                Latvia    LV   LVA 1988
## 8400                                                Latvia    LV   LVA 1989
## 8401                                                Latvia    LV   LVA 1990
## 8402                                                Latvia    LV   LVA 1991
## 8403                                                Latvia    LV   LVA 1992
## 8404                                                Latvia    LV   LVA 1993
## 8405                                                Latvia    LV   LVA 1994
## 8406                                                Latvia    LV   LVA 1995
## 8407                                                Latvia    LV   LVA 1996
## 8408                                                Latvia    LV   LVA 1997
## 8409                                                Latvia    LV   LVA 1998
## 8410                                                Latvia    LV   LVA 1999
## 8411                                                Latvia    LV   LVA 2000
## 8412                                                Latvia    LV   LVA 2001
## 8413                                                Latvia    LV   LVA 2002
## 8414                                                Latvia    LV   LVA 2003
## 8415                                                Latvia    LV   LVA 2004
## 8416                                                Latvia    LV   LVA 2005
## 8417                                                Latvia    LV   LVA 2006
## 8418                                                Latvia    LV   LVA 2007
## 8419                                                Latvia    LV   LVA 2008
## 8420                                                Latvia    LV   LVA 2009
## 8421                                                Latvia    LV   LVA 2010
## 8422                                                Latvia    LV   LVA 2011
## 8423                                                Latvia    LV   LVA 2012
## 8424                                                Latvia    LV   LVA 2013
## 8425                                                Latvia    LV   LVA 2014
## 8426                                                Latvia    LV   LVA 2015
## 8427                                                Latvia    LV   LVA 2016
## 8428                                                Latvia    LV   LVA 2017
## 8429                                                Latvia    LV   LVA 2018
## 8430                                                Latvia    LV   LVA 2019
## 8431                                                Latvia    LV   LVA 2020
## 8432                                                Latvia    LV   LVA 2021
## 8433          Least developed countries: UN classification    XL   LDC 1960
## 8434          Least developed countries: UN classification    XL   LDC 1961
## 8435          Least developed countries: UN classification    XL   LDC 1962
## 8436          Least developed countries: UN classification    XL   LDC 1963
## 8437          Least developed countries: UN classification    XL   LDC 1964
## 8438          Least developed countries: UN classification    XL   LDC 1965
## 8439          Least developed countries: UN classification    XL   LDC 1966
## 8440          Least developed countries: UN classification    XL   LDC 1967
## 8441          Least developed countries: UN classification    XL   LDC 1968
## 8442          Least developed countries: UN classification    XL   LDC 1969
## 8443          Least developed countries: UN classification    XL   LDC 1970
## 8444          Least developed countries: UN classification    XL   LDC 1971
## 8445          Least developed countries: UN classification    XL   LDC 1972
## 8446          Least developed countries: UN classification    XL   LDC 1973
## 8447          Least developed countries: UN classification    XL   LDC 1974
## 8448          Least developed countries: UN classification    XL   LDC 1975
## 8449          Least developed countries: UN classification    XL   LDC 1976
## 8450          Least developed countries: UN classification    XL   LDC 1977
## 8451          Least developed countries: UN classification    XL   LDC 1978
## 8452          Least developed countries: UN classification    XL   LDC 1979
## 8453          Least developed countries: UN classification    XL   LDC 1980
## 8454          Least developed countries: UN classification    XL   LDC 1981
## 8455          Least developed countries: UN classification    XL   LDC 1982
## 8456          Least developed countries: UN classification    XL   LDC 1983
## 8457          Least developed countries: UN classification    XL   LDC 1984
## 8458          Least developed countries: UN classification    XL   LDC 1985
## 8459          Least developed countries: UN classification    XL   LDC 1986
## 8460          Least developed countries: UN classification    XL   LDC 1987
## 8461          Least developed countries: UN classification    XL   LDC 1988
## 8462          Least developed countries: UN classification    XL   LDC 1989
## 8463          Least developed countries: UN classification    XL   LDC 1990
## 8464          Least developed countries: UN classification    XL   LDC 1991
## 8465          Least developed countries: UN classification    XL   LDC 1992
## 8466          Least developed countries: UN classification    XL   LDC 1993
## 8467          Least developed countries: UN classification    XL   LDC 1994
## 8468          Least developed countries: UN classification    XL   LDC 1995
## 8469          Least developed countries: UN classification    XL   LDC 1996
## 8470          Least developed countries: UN classification    XL   LDC 1997
## 8471          Least developed countries: UN classification    XL   LDC 1998
## 8472          Least developed countries: UN classification    XL   LDC 1999
## 8473          Least developed countries: UN classification    XL   LDC 2000
## 8474          Least developed countries: UN classification    XL   LDC 2001
## 8475          Least developed countries: UN classification    XL   LDC 2002
## 8476          Least developed countries: UN classification    XL   LDC 2003
## 8477          Least developed countries: UN classification    XL   LDC 2004
## 8478          Least developed countries: UN classification    XL   LDC 2005
## 8479          Least developed countries: UN classification    XL   LDC 2006
## 8480          Least developed countries: UN classification    XL   LDC 2007
## 8481          Least developed countries: UN classification    XL   LDC 2008
## 8482          Least developed countries: UN classification    XL   LDC 2009
## 8483          Least developed countries: UN classification    XL   LDC 2010
## 8484          Least developed countries: UN classification    XL   LDC 2011
## 8485          Least developed countries: UN classification    XL   LDC 2012
## 8486          Least developed countries: UN classification    XL   LDC 2013
## 8487          Least developed countries: UN classification    XL   LDC 2014
## 8488          Least developed countries: UN classification    XL   LDC 2015
## 8489          Least developed countries: UN classification    XL   LDC 2016
## 8490          Least developed countries: UN classification    XL   LDC 2017
## 8491          Least developed countries: UN classification    XL   LDC 2018
## 8492          Least developed countries: UN classification    XL   LDC 2019
## 8493          Least developed countries: UN classification    XL   LDC 2020
## 8494          Least developed countries: UN classification    XL   LDC 2021
## 8495                                               Lebanon    LB   LBN 1960
## 8496                                               Lebanon    LB   LBN 1961
## 8497                                               Lebanon    LB   LBN 1962
## 8498                                               Lebanon    LB   LBN 1963
## 8499                                               Lebanon    LB   LBN 1964
## 8500                                               Lebanon    LB   LBN 1965
## 8501                                               Lebanon    LB   LBN 1966
## 8502                                               Lebanon    LB   LBN 1967
## 8503                                               Lebanon    LB   LBN 1968
## 8504                                               Lebanon    LB   LBN 1969
## 8505                                               Lebanon    LB   LBN 1970
## 8506                                               Lebanon    LB   LBN 1971
## 8507                                               Lebanon    LB   LBN 1972
## 8508                                               Lebanon    LB   LBN 1973
## 8509                                               Lebanon    LB   LBN 1974
## 8510                                               Lebanon    LB   LBN 1975
## 8511                                               Lebanon    LB   LBN 1976
## 8512                                               Lebanon    LB   LBN 1977
## 8513                                               Lebanon    LB   LBN 1978
## 8514                                               Lebanon    LB   LBN 1979
## 8515                                               Lebanon    LB   LBN 1980
## 8516                                               Lebanon    LB   LBN 1981
## 8517                                               Lebanon    LB   LBN 1982
## 8518                                               Lebanon    LB   LBN 1983
## 8519                                               Lebanon    LB   LBN 1984
## 8520                                               Lebanon    LB   LBN 1985
## 8521                                               Lebanon    LB   LBN 1986
## 8522                                               Lebanon    LB   LBN 1987
## 8523                                               Lebanon    LB   LBN 1988
## 8524                                               Lebanon    LB   LBN 1989
## 8525                                               Lebanon    LB   LBN 1990
## 8526                                               Lebanon    LB   LBN 1991
## 8527                                               Lebanon    LB   LBN 1992
## 8528                                               Lebanon    LB   LBN 1993
## 8529                                               Lebanon    LB   LBN 1994
## 8530                                               Lebanon    LB   LBN 1995
## 8531                                               Lebanon    LB   LBN 1996
## 8532                                               Lebanon    LB   LBN 1997
## 8533                                               Lebanon    LB   LBN 1998
## 8534                                               Lebanon    LB   LBN 1999
## 8535                                               Lebanon    LB   LBN 2000
## 8536                                               Lebanon    LB   LBN 2001
## 8537                                               Lebanon    LB   LBN 2002
## 8538                                               Lebanon    LB   LBN 2003
## 8539                                               Lebanon    LB   LBN 2004
## 8540                                               Lebanon    LB   LBN 2005
## 8541                                               Lebanon    LB   LBN 2006
## 8542                                               Lebanon    LB   LBN 2007
## 8543                                               Lebanon    LB   LBN 2008
## 8544                                               Lebanon    LB   LBN 2009
## 8545                                               Lebanon    LB   LBN 2010
## 8546                                               Lebanon    LB   LBN 2011
## 8547                                               Lebanon    LB   LBN 2012
## 8548                                               Lebanon    LB   LBN 2013
## 8549                                               Lebanon    LB   LBN 2014
## 8550                                               Lebanon    LB   LBN 2015
## 8551                                               Lebanon    LB   LBN 2016
## 8552                                               Lebanon    LB   LBN 2017
## 8553                                               Lebanon    LB   LBN 2018
## 8554                                               Lebanon    LB   LBN 2019
## 8555                                               Lebanon    LB   LBN 2020
## 8556                                               Lebanon    LB   LBN 2021
## 8557                                               Lesotho    LS   LSO 1960
## 8558                                               Lesotho    LS   LSO 1961
## 8559                                               Lesotho    LS   LSO 1962
## 8560                                               Lesotho    LS   LSO 1963
## 8561                                               Lesotho    LS   LSO 1964
## 8562                                               Lesotho    LS   LSO 1965
## 8563                                               Lesotho    LS   LSO 1966
## 8564                                               Lesotho    LS   LSO 1967
## 8565                                               Lesotho    LS   LSO 1968
## 8566                                               Lesotho    LS   LSO 1969
## 8567                                               Lesotho    LS   LSO 1970
## 8568                                               Lesotho    LS   LSO 1971
## 8569                                               Lesotho    LS   LSO 1972
## 8570                                               Lesotho    LS   LSO 1973
## 8571                                               Lesotho    LS   LSO 1974
## 8572                                               Lesotho    LS   LSO 1975
## 8573                                               Lesotho    LS   LSO 1976
## 8574                                               Lesotho    LS   LSO 1977
## 8575                                               Lesotho    LS   LSO 1978
## 8576                                               Lesotho    LS   LSO 1979
## 8577                                               Lesotho    LS   LSO 1980
## 8578                                               Lesotho    LS   LSO 1981
## 8579                                               Lesotho    LS   LSO 1982
## 8580                                               Lesotho    LS   LSO 1983
## 8581                                               Lesotho    LS   LSO 1984
## 8582                                               Lesotho    LS   LSO 1985
## 8583                                               Lesotho    LS   LSO 1986
## 8584                                               Lesotho    LS   LSO 1987
## 8585                                               Lesotho    LS   LSO 1988
## 8586                                               Lesotho    LS   LSO 1989
## 8587                                               Lesotho    LS   LSO 1990
## 8588                                               Lesotho    LS   LSO 1991
## 8589                                               Lesotho    LS   LSO 1992
## 8590                                               Lesotho    LS   LSO 1993
## 8591                                               Lesotho    LS   LSO 1994
## 8592                                               Lesotho    LS   LSO 1995
## 8593                                               Lesotho    LS   LSO 1996
## 8594                                               Lesotho    LS   LSO 1997
## 8595                                               Lesotho    LS   LSO 1998
## 8596                                               Lesotho    LS   LSO 1999
## 8597                                               Lesotho    LS   LSO 2000
## 8598                                               Lesotho    LS   LSO 2001
## 8599                                               Lesotho    LS   LSO 2002
## 8600                                               Lesotho    LS   LSO 2003
## 8601                                               Lesotho    LS   LSO 2004
## 8602                                               Lesotho    LS   LSO 2005
## 8603                                               Lesotho    LS   LSO 2006
## 8604                                               Lesotho    LS   LSO 2007
## 8605                                               Lesotho    LS   LSO 2008
## 8606                                               Lesotho    LS   LSO 2009
## 8607                                               Lesotho    LS   LSO 2010
## 8608                                               Lesotho    LS   LSO 2011
## 8609                                               Lesotho    LS   LSO 2012
## 8610                                               Lesotho    LS   LSO 2013
## 8611                                               Lesotho    LS   LSO 2014
## 8612                                               Lesotho    LS   LSO 2015
## 8613                                               Lesotho    LS   LSO 2016
## 8614                                               Lesotho    LS   LSO 2017
## 8615                                               Lesotho    LS   LSO 2018
## 8616                                               Lesotho    LS   LSO 2019
## 8617                                               Lesotho    LS   LSO 2020
## 8618                                               Lesotho    LS   LSO 2021
## 8619                                               Liberia    LR   LBR 1960
## 8620                                               Liberia    LR   LBR 1961
## 8621                                               Liberia    LR   LBR 1962
## 8622                                               Liberia    LR   LBR 1963
## 8623                                               Liberia    LR   LBR 1964
## 8624                                               Liberia    LR   LBR 1965
## 8625                                               Liberia    LR   LBR 1966
## 8626                                               Liberia    LR   LBR 1967
## 8627                                               Liberia    LR   LBR 1968
## 8628                                               Liberia    LR   LBR 1969
## 8629                                               Liberia    LR   LBR 1970
## 8630                                               Liberia    LR   LBR 1971
## 8631                                               Liberia    LR   LBR 1972
## 8632                                               Liberia    LR   LBR 1973
## 8633                                               Liberia    LR   LBR 1974
## 8634                                               Liberia    LR   LBR 1975
## 8635                                               Liberia    LR   LBR 1976
## 8636                                               Liberia    LR   LBR 1977
## 8637                                               Liberia    LR   LBR 1978
## 8638                                               Liberia    LR   LBR 1979
## 8639                                               Liberia    LR   LBR 1980
## 8640                                               Liberia    LR   LBR 1981
## 8641                                               Liberia    LR   LBR 1982
## 8642                                               Liberia    LR   LBR 1983
## 8643                                               Liberia    LR   LBR 1984
## 8644                                               Liberia    LR   LBR 1985
## 8645                                               Liberia    LR   LBR 1986
## 8646                                               Liberia    LR   LBR 1987
## 8647                                               Liberia    LR   LBR 1988
## 8648                                               Liberia    LR   LBR 1989
## 8649                                               Liberia    LR   LBR 1990
## 8650                                               Liberia    LR   LBR 1991
## 8651                                               Liberia    LR   LBR 1992
## 8652                                               Liberia    LR   LBR 1993
## 8653                                               Liberia    LR   LBR 1994
## 8654                                               Liberia    LR   LBR 1995
## 8655                                               Liberia    LR   LBR 1996
## 8656                                               Liberia    LR   LBR 1997
## 8657                                               Liberia    LR   LBR 1998
## 8658                                               Liberia    LR   LBR 1999
## 8659                                               Liberia    LR   LBR 2000
## 8660                                               Liberia    LR   LBR 2001
## 8661                                               Liberia    LR   LBR 2002
## 8662                                               Liberia    LR   LBR 2003
## 8663                                               Liberia    LR   LBR 2004
## 8664                                               Liberia    LR   LBR 2005
## 8665                                               Liberia    LR   LBR 2006
## 8666                                               Liberia    LR   LBR 2007
## 8667                                               Liberia    LR   LBR 2008
## 8668                                               Liberia    LR   LBR 2009
## 8669                                               Liberia    LR   LBR 2010
## 8670                                               Liberia    LR   LBR 2011
## 8671                                               Liberia    LR   LBR 2012
## 8672                                               Liberia    LR   LBR 2013
## 8673                                               Liberia    LR   LBR 2014
## 8674                                               Liberia    LR   LBR 2015
## 8675                                               Liberia    LR   LBR 2016
## 8676                                               Liberia    LR   LBR 2017
## 8677                                               Liberia    LR   LBR 2018
## 8678                                               Liberia    LR   LBR 2019
## 8679                                               Liberia    LR   LBR 2020
## 8680                                               Liberia    LR   LBR 2021
## 8681                                                 Libya    LY   LBY 1960
## 8682                                                 Libya    LY   LBY 1961
## 8683                                                 Libya    LY   LBY 1962
## 8684                                                 Libya    LY   LBY 1963
## 8685                                                 Libya    LY   LBY 1964
## 8686                                                 Libya    LY   LBY 1965
## 8687                                                 Libya    LY   LBY 1966
## 8688                                                 Libya    LY   LBY 1967
## 8689                                                 Libya    LY   LBY 1968
## 8690                                                 Libya    LY   LBY 1969
## 8691                                                 Libya    LY   LBY 1970
## 8692                                                 Libya    LY   LBY 1971
## 8693                                                 Libya    LY   LBY 1972
## 8694                                                 Libya    LY   LBY 1973
## 8695                                                 Libya    LY   LBY 1974
## 8696                                                 Libya    LY   LBY 1975
## 8697                                                 Libya    LY   LBY 1976
## 8698                                                 Libya    LY   LBY 1977
## 8699                                                 Libya    LY   LBY 1978
## 8700                                                 Libya    LY   LBY 1979
## 8701                                                 Libya    LY   LBY 1980
## 8702                                                 Libya    LY   LBY 1981
## 8703                                                 Libya    LY   LBY 1982
## 8704                                                 Libya    LY   LBY 1983
## 8705                                                 Libya    LY   LBY 1984
## 8706                                                 Libya    LY   LBY 1985
## 8707                                                 Libya    LY   LBY 1986
## 8708                                                 Libya    LY   LBY 1987
## 8709                                                 Libya    LY   LBY 1988
## 8710                                                 Libya    LY   LBY 1989
## 8711                                                 Libya    LY   LBY 1990
## 8712                                                 Libya    LY   LBY 1991
## 8713                                                 Libya    LY   LBY 1992
## 8714                                                 Libya    LY   LBY 1993
## 8715                                                 Libya    LY   LBY 1994
## 8716                                                 Libya    LY   LBY 1995
## 8717                                                 Libya    LY   LBY 1996
## 8718                                                 Libya    LY   LBY 1997
## 8719                                                 Libya    LY   LBY 1998
## 8720                                                 Libya    LY   LBY 1999
## 8721                                                 Libya    LY   LBY 2000
## 8722                                                 Libya    LY   LBY 2001
## 8723                                                 Libya    LY   LBY 2002
## 8724                                                 Libya    LY   LBY 2003
## 8725                                                 Libya    LY   LBY 2004
## 8726                                                 Libya    LY   LBY 2005
## 8727                                                 Libya    LY   LBY 2006
## 8728                                                 Libya    LY   LBY 2007
## 8729                                                 Libya    LY   LBY 2008
## 8730                                                 Libya    LY   LBY 2009
## 8731                                                 Libya    LY   LBY 2010
## 8732                                                 Libya    LY   LBY 2011
## 8733                                                 Libya    LY   LBY 2012
## 8734                                                 Libya    LY   LBY 2013
## 8735                                                 Libya    LY   LBY 2014
## 8736                                                 Libya    LY   LBY 2015
## 8737                                                 Libya    LY   LBY 2016
## 8738                                                 Libya    LY   LBY 2017
## 8739                                                 Libya    LY   LBY 2018
## 8740                                                 Libya    LY   LBY 2019
## 8741                                                 Libya    LY   LBY 2020
## 8742                                                 Libya    LY   LBY 2021
## 8743                                         Liechtenstein    LI   LIE 1960
## 8744                                         Liechtenstein    LI   LIE 1961
## 8745                                         Liechtenstein    LI   LIE 1962
## 8746                                         Liechtenstein    LI   LIE 1963
## 8747                                         Liechtenstein    LI   LIE 1964
## 8748                                         Liechtenstein    LI   LIE 1965
## 8749                                         Liechtenstein    LI   LIE 1966
## 8750                                         Liechtenstein    LI   LIE 1967
## 8751                                         Liechtenstein    LI   LIE 1968
## 8752                                         Liechtenstein    LI   LIE 1969
## 8753                                         Liechtenstein    LI   LIE 1970
## 8754                                         Liechtenstein    LI   LIE 1971
## 8755                                         Liechtenstein    LI   LIE 1972
## 8756                                         Liechtenstein    LI   LIE 1973
## 8757                                         Liechtenstein    LI   LIE 1974
## 8758                                         Liechtenstein    LI   LIE 1975
## 8759                                         Liechtenstein    LI   LIE 1976
## 8760                                         Liechtenstein    LI   LIE 1977
## 8761                                         Liechtenstein    LI   LIE 1978
## 8762                                         Liechtenstein    LI   LIE 1979
## 8763                                         Liechtenstein    LI   LIE 1980
## 8764                                         Liechtenstein    LI   LIE 1981
## 8765                                         Liechtenstein    LI   LIE 1982
## 8766                                         Liechtenstein    LI   LIE 1983
## 8767                                         Liechtenstein    LI   LIE 1984
## 8768                                         Liechtenstein    LI   LIE 1985
## 8769                                         Liechtenstein    LI   LIE 1986
## 8770                                         Liechtenstein    LI   LIE 1987
## 8771                                         Liechtenstein    LI   LIE 1988
## 8772                                         Liechtenstein    LI   LIE 1989
## 8773                                         Liechtenstein    LI   LIE 1990
## 8774                                         Liechtenstein    LI   LIE 1991
## 8775                                         Liechtenstein    LI   LIE 1992
## 8776                                         Liechtenstein    LI   LIE 1993
## 8777                                         Liechtenstein    LI   LIE 1994
## 8778                                         Liechtenstein    LI   LIE 1995
## 8779                                         Liechtenstein    LI   LIE 1996
## 8780                                         Liechtenstein    LI   LIE 1997
## 8781                                         Liechtenstein    LI   LIE 1998
## 8782                                         Liechtenstein    LI   LIE 1999
## 8783                                         Liechtenstein    LI   LIE 2000
## 8784                                         Liechtenstein    LI   LIE 2001
## 8785                                         Liechtenstein    LI   LIE 2002
## 8786                                         Liechtenstein    LI   LIE 2003
## 8787                                         Liechtenstein    LI   LIE 2004
## 8788                                         Liechtenstein    LI   LIE 2005
## 8789                                         Liechtenstein    LI   LIE 2006
## 8790                                         Liechtenstein    LI   LIE 2007
## 8791                                         Liechtenstein    LI   LIE 2008
## 8792                                         Liechtenstein    LI   LIE 2009
## 8793                                         Liechtenstein    LI   LIE 2010
## 8794                                         Liechtenstein    LI   LIE 2011
## 8795                                         Liechtenstein    LI   LIE 2012
## 8796                                         Liechtenstein    LI   LIE 2013
## 8797                                         Liechtenstein    LI   LIE 2014
## 8798                                         Liechtenstein    LI   LIE 2015
## 8799                                         Liechtenstein    LI   LIE 2016
## 8800                                         Liechtenstein    LI   LIE 2017
## 8801                                         Liechtenstein    LI   LIE 2018
## 8802                                         Liechtenstein    LI   LIE 2019
## 8803                                         Liechtenstein    LI   LIE 2020
## 8804                                         Liechtenstein    LI   LIE 2021
## 8805                                             Lithuania    LT   LTU 1960
## 8806                                             Lithuania    LT   LTU 1961
## 8807                                             Lithuania    LT   LTU 1962
## 8808                                             Lithuania    LT   LTU 1963
## 8809                                             Lithuania    LT   LTU 1964
## 8810                                             Lithuania    LT   LTU 1965
## 8811                                             Lithuania    LT   LTU 1966
## 8812                                             Lithuania    LT   LTU 1967
## 8813                                             Lithuania    LT   LTU 1968
## 8814                                             Lithuania    LT   LTU 1969
## 8815                                             Lithuania    LT   LTU 1970
## 8816                                             Lithuania    LT   LTU 1971
## 8817                                             Lithuania    LT   LTU 1972
## 8818                                             Lithuania    LT   LTU 1973
## 8819                                             Lithuania    LT   LTU 1974
## 8820                                             Lithuania    LT   LTU 1975
## 8821                                             Lithuania    LT   LTU 1976
## 8822                                             Lithuania    LT   LTU 1977
## 8823                                             Lithuania    LT   LTU 1978
## 8824                                             Lithuania    LT   LTU 1979
## 8825                                             Lithuania    LT   LTU 1980
## 8826                                             Lithuania    LT   LTU 1981
## 8827                                             Lithuania    LT   LTU 1982
## 8828                                             Lithuania    LT   LTU 1983
## 8829                                             Lithuania    LT   LTU 1984
## 8830                                             Lithuania    LT   LTU 1985
## 8831                                             Lithuania    LT   LTU 1986
## 8832                                             Lithuania    LT   LTU 1987
## 8833                                             Lithuania    LT   LTU 1988
## 8834                                             Lithuania    LT   LTU 1989
## 8835                                             Lithuania    LT   LTU 1990
## 8836                                             Lithuania    LT   LTU 1991
## 8837                                             Lithuania    LT   LTU 1992
## 8838                                             Lithuania    LT   LTU 1993
## 8839                                             Lithuania    LT   LTU 1994
## 8840                                             Lithuania    LT   LTU 1995
## 8841                                             Lithuania    LT   LTU 1996
## 8842                                             Lithuania    LT   LTU 1997
## 8843                                             Lithuania    LT   LTU 1998
## 8844                                             Lithuania    LT   LTU 1999
## 8845                                             Lithuania    LT   LTU 2000
## 8846                                             Lithuania    LT   LTU 2001
## 8847                                             Lithuania    LT   LTU 2002
## 8848                                             Lithuania    LT   LTU 2003
## 8849                                             Lithuania    LT   LTU 2004
## 8850                                             Lithuania    LT   LTU 2005
## 8851                                             Lithuania    LT   LTU 2006
## 8852                                             Lithuania    LT   LTU 2007
## 8853                                             Lithuania    LT   LTU 2008
## 8854                                             Lithuania    LT   LTU 2009
## 8855                                             Lithuania    LT   LTU 2010
## 8856                                             Lithuania    LT   LTU 2011
## 8857                                             Lithuania    LT   LTU 2012
## 8858                                             Lithuania    LT   LTU 2013
## 8859                                             Lithuania    LT   LTU 2014
## 8860                                             Lithuania    LT   LTU 2015
## 8861                                             Lithuania    LT   LTU 2016
## 8862                                             Lithuania    LT   LTU 2017
## 8863                                             Lithuania    LT   LTU 2018
## 8864                                             Lithuania    LT   LTU 2019
## 8865                                             Lithuania    LT   LTU 2020
## 8866                                             Lithuania    LT   LTU 2021
## 8867                                   Low & middle income    XO   LMY 1960
## 8868                                   Low & middle income    XO   LMY 1961
## 8869                                   Low & middle income    XO   LMY 1962
## 8870                                   Low & middle income    XO   LMY 1963
## 8871                                   Low & middle income    XO   LMY 1964
## 8872                                   Low & middle income    XO   LMY 1965
## 8873                                   Low & middle income    XO   LMY 1966
## 8874                                   Low & middle income    XO   LMY 1967
## 8875                                   Low & middle income    XO   LMY 1968
## 8876                                   Low & middle income    XO   LMY 1969
## 8877                                   Low & middle income    XO   LMY 1970
## 8878                                   Low & middle income    XO   LMY 1971
## 8879                                   Low & middle income    XO   LMY 1972
## 8880                                   Low & middle income    XO   LMY 1973
## 8881                                   Low & middle income    XO   LMY 1974
## 8882                                   Low & middle income    XO   LMY 1975
## 8883                                   Low & middle income    XO   LMY 1976
## 8884                                   Low & middle income    XO   LMY 1977
## 8885                                   Low & middle income    XO   LMY 1978
## 8886                                   Low & middle income    XO   LMY 1979
## 8887                                   Low & middle income    XO   LMY 1980
## 8888                                   Low & middle income    XO   LMY 1981
## 8889                                   Low & middle income    XO   LMY 1982
## 8890                                   Low & middle income    XO   LMY 1983
## 8891                                   Low & middle income    XO   LMY 1984
## 8892                                   Low & middle income    XO   LMY 1985
## 8893                                   Low & middle income    XO   LMY 1986
## 8894                                   Low & middle income    XO   LMY 1987
## 8895                                   Low & middle income    XO   LMY 1988
## 8896                                   Low & middle income    XO   LMY 1989
## 8897                                   Low & middle income    XO   LMY 1990
## 8898                                   Low & middle income    XO   LMY 1991
## 8899                                   Low & middle income    XO   LMY 1992
## 8900                                   Low & middle income    XO   LMY 1993
## 8901                                   Low & middle income    XO   LMY 1994
## 8902                                   Low & middle income    XO   LMY 1995
## 8903                                   Low & middle income    XO   LMY 1996
## 8904                                   Low & middle income    XO   LMY 1997
## 8905                                   Low & middle income    XO   LMY 1998
## 8906                                   Low & middle income    XO   LMY 1999
## 8907                                   Low & middle income    XO   LMY 2000
## 8908                                   Low & middle income    XO   LMY 2001
## 8909                                   Low & middle income    XO   LMY 2002
## 8910                                   Low & middle income    XO   LMY 2003
## 8911                                   Low & middle income    XO   LMY 2004
## 8912                                   Low & middle income    XO   LMY 2005
## 8913                                   Low & middle income    XO   LMY 2006
## 8914                                   Low & middle income    XO   LMY 2007
## 8915                                   Low & middle income    XO   LMY 2008
## 8916                                   Low & middle income    XO   LMY 2009
## 8917                                   Low & middle income    XO   LMY 2010
## 8918                                   Low & middle income    XO   LMY 2011
## 8919                                   Low & middle income    XO   LMY 2012
## 8920                                   Low & middle income    XO   LMY 2013
## 8921                                   Low & middle income    XO   LMY 2014
## 8922                                   Low & middle income    XO   LMY 2015
## 8923                                   Low & middle income    XO   LMY 2016
## 8924                                   Low & middle income    XO   LMY 2017
## 8925                                   Low & middle income    XO   LMY 2018
## 8926                                   Low & middle income    XO   LMY 2019
## 8927                                   Low & middle income    XO   LMY 2020
## 8928                                   Low & middle income    XO   LMY 2021
## 8929                                            Low income    XM       1960
## 8930                                            Low income    XM       1961
## 8931                                            Low income    XM       1962
## 8932                                            Low income    XM       1963
## 8933                                            Low income    XM       1964
## 8934                                            Low income    XM       1965
## 8935                                            Low income    XM       1966
## 8936                                            Low income    XM       1967
## 8937                                            Low income    XM       1968
## 8938                                            Low income    XM       1969
## 8939                                            Low income    XM       1970
## 8940                                            Low income    XM       1971
## 8941                                            Low income    XM       1972
## 8942                                            Low income    XM       1973
## 8943                                            Low income    XM       1974
## 8944                                            Low income    XM       1975
## 8945                                            Low income    XM       1976
## 8946                                            Low income    XM       1977
## 8947                                            Low income    XM       1978
## 8948                                            Low income    XM       1979
## 8949                                            Low income    XM       1980
## 8950                                            Low income    XM       1981
## 8951                                            Low income    XM       1982
## 8952                                            Low income    XM       1983
## 8953                                            Low income    XM       1984
## 8954                                            Low income    XM       1985
## 8955                                            Low income    XM       1986
## 8956                                            Low income    XM       1987
## 8957                                            Low income    XM       1988
## 8958                                            Low income    XM       1989
## 8959                                            Low income    XM       1990
## 8960                                            Low income    XM       1991
## 8961                                            Low income    XM       1992
## 8962                                            Low income    XM       1993
## 8963                                            Low income    XM       1994
## 8964                                            Low income    XM       1995
## 8965                                            Low income    XM       1996
## 8966                                            Low income    XM       1997
## 8967                                            Low income    XM       1998
## 8968                                            Low income    XM       1999
## 8969                                            Low income    XM       2000
## 8970                                            Low income    XM       2001
## 8971                                            Low income    XM       2002
## 8972                                            Low income    XM       2003
## 8973                                            Low income    XM       2004
## 8974                                            Low income    XM       2005
## 8975                                            Low income    XM       2006
## 8976                                            Low income    XM       2007
## 8977                                            Low income    XM       2008
## 8978                                            Low income    XM       2009
## 8979                                            Low income    XM       2010
## 8980                                            Low income    XM       2011
## 8981                                            Low income    XM       2012
## 8982                                            Low income    XM       2013
## 8983                                            Low income    XM       2014
## 8984                                            Low income    XM       2015
## 8985                                            Low income    XM       2016
## 8986                                            Low income    XM       2017
## 8987                                            Low income    XM       2018
## 8988                                            Low income    XM       2019
## 8989                                            Low income    XM       2020
## 8990                                            Low income    XM       2021
## 8991                                   Lower middle income    XN       1960
## 8992                                   Lower middle income    XN       1961
## 8993                                   Lower middle income    XN       1962
## 8994                                   Lower middle income    XN       1963
## 8995                                   Lower middle income    XN       1964
## 8996                                   Lower middle income    XN       1965
## 8997                                   Lower middle income    XN       1966
## 8998                                   Lower middle income    XN       1967
## 8999                                   Lower middle income    XN       1968
## 9000                                   Lower middle income    XN       1969
## 9001                                   Lower middle income    XN       1970
## 9002                                   Lower middle income    XN       1971
## 9003                                   Lower middle income    XN       1972
## 9004                                   Lower middle income    XN       1973
## 9005                                   Lower middle income    XN       1974
## 9006                                   Lower middle income    XN       1975
## 9007                                   Lower middle income    XN       1976
## 9008                                   Lower middle income    XN       1977
## 9009                                   Lower middle income    XN       1978
## 9010                                   Lower middle income    XN       1979
## 9011                                   Lower middle income    XN       1980
## 9012                                   Lower middle income    XN       1981
## 9013                                   Lower middle income    XN       1982
## 9014                                   Lower middle income    XN       1983
## 9015                                   Lower middle income    XN       1984
## 9016                                   Lower middle income    XN       1985
## 9017                                   Lower middle income    XN       1986
## 9018                                   Lower middle income    XN       1987
## 9019                                   Lower middle income    XN       1988
## 9020                                   Lower middle income    XN       1989
## 9021                                   Lower middle income    XN       1990
## 9022                                   Lower middle income    XN       1991
## 9023                                   Lower middle income    XN       1992
## 9024                                   Lower middle income    XN       1993
## 9025                                   Lower middle income    XN       1994
## 9026                                   Lower middle income    XN       1995
## 9027                                   Lower middle income    XN       1996
## 9028                                   Lower middle income    XN       1997
## 9029                                   Lower middle income    XN       1998
## 9030                                   Lower middle income    XN       1999
## 9031                                   Lower middle income    XN       2000
## 9032                                   Lower middle income    XN       2001
## 9033                                   Lower middle income    XN       2002
## 9034                                   Lower middle income    XN       2003
## 9035                                   Lower middle income    XN       2004
## 9036                                   Lower middle income    XN       2005
## 9037                                   Lower middle income    XN       2006
## 9038                                   Lower middle income    XN       2007
## 9039                                   Lower middle income    XN       2008
## 9040                                   Lower middle income    XN       2009
## 9041                                   Lower middle income    XN       2010
## 9042                                   Lower middle income    XN       2011
## 9043                                   Lower middle income    XN       2012
## 9044                                   Lower middle income    XN       2013
## 9045                                   Lower middle income    XN       2014
## 9046                                   Lower middle income    XN       2015
## 9047                                   Lower middle income    XN       2016
## 9048                                   Lower middle income    XN       2017
## 9049                                   Lower middle income    XN       2018
## 9050                                   Lower middle income    XN       2019
## 9051                                   Lower middle income    XN       2020
## 9052                                   Lower middle income    XN       2021
## 9053                                            Luxembourg    LU   LUX 1960
## 9054                                            Luxembourg    LU   LUX 1961
## 9055                                            Luxembourg    LU   LUX 1962
## 9056                                            Luxembourg    LU   LUX 1963
## 9057                                            Luxembourg    LU   LUX 1964
## 9058                                            Luxembourg    LU   LUX 1965
## 9059                                            Luxembourg    LU   LUX 1966
## 9060                                            Luxembourg    LU   LUX 1967
## 9061                                            Luxembourg    LU   LUX 1968
## 9062                                            Luxembourg    LU   LUX 1969
## 9063                                            Luxembourg    LU   LUX 1970
## 9064                                            Luxembourg    LU   LUX 1971
## 9065                                            Luxembourg    LU   LUX 1972
## 9066                                            Luxembourg    LU   LUX 1973
## 9067                                            Luxembourg    LU   LUX 1974
## 9068                                            Luxembourg    LU   LUX 1975
## 9069                                            Luxembourg    LU   LUX 1976
## 9070                                            Luxembourg    LU   LUX 1977
## 9071                                            Luxembourg    LU   LUX 1978
## 9072                                            Luxembourg    LU   LUX 1979
## 9073                                            Luxembourg    LU   LUX 1980
## 9074                                            Luxembourg    LU   LUX 1981
## 9075                                            Luxembourg    LU   LUX 1982
## 9076                                            Luxembourg    LU   LUX 1983
## 9077                                            Luxembourg    LU   LUX 1984
## 9078                                            Luxembourg    LU   LUX 1985
## 9079                                            Luxembourg    LU   LUX 1986
## 9080                                            Luxembourg    LU   LUX 1987
## 9081                                            Luxembourg    LU   LUX 1988
## 9082                                            Luxembourg    LU   LUX 1989
## 9083                                            Luxembourg    LU   LUX 1990
## 9084                                            Luxembourg    LU   LUX 1991
## 9085                                            Luxembourg    LU   LUX 1992
## 9086                                            Luxembourg    LU   LUX 1993
## 9087                                            Luxembourg    LU   LUX 1994
## 9088                                            Luxembourg    LU   LUX 1995
## 9089                                            Luxembourg    LU   LUX 1996
## 9090                                            Luxembourg    LU   LUX 1997
## 9091                                            Luxembourg    LU   LUX 1998
## 9092                                            Luxembourg    LU   LUX 1999
## 9093                                            Luxembourg    LU   LUX 2000
## 9094                                            Luxembourg    LU   LUX 2001
## 9095                                            Luxembourg    LU   LUX 2002
## 9096                                            Luxembourg    LU   LUX 2003
## 9097                                            Luxembourg    LU   LUX 2004
## 9098                                            Luxembourg    LU   LUX 2005
## 9099                                            Luxembourg    LU   LUX 2006
## 9100                                            Luxembourg    LU   LUX 2007
## 9101                                            Luxembourg    LU   LUX 2008
## 9102                                            Luxembourg    LU   LUX 2009
## 9103                                            Luxembourg    LU   LUX 2010
## 9104                                            Luxembourg    LU   LUX 2011
## 9105                                            Luxembourg    LU   LUX 2012
## 9106                                            Luxembourg    LU   LUX 2013
## 9107                                            Luxembourg    LU   LUX 2014
## 9108                                            Luxembourg    LU   LUX 2015
## 9109                                            Luxembourg    LU   LUX 2016
## 9110                                            Luxembourg    LU   LUX 2017
## 9111                                            Luxembourg    LU   LUX 2018
## 9112                                            Luxembourg    LU   LUX 2019
## 9113                                            Luxembourg    LU   LUX 2020
## 9114                                            Luxembourg    LU   LUX 2021
## 9115                                      Macao SAR, China    MO   MAC 1960
## 9116                                      Macao SAR, China    MO   MAC 1961
## 9117                                      Macao SAR, China    MO   MAC 1962
## 9118                                      Macao SAR, China    MO   MAC 1963
## 9119                                      Macao SAR, China    MO   MAC 1964
## 9120                                      Macao SAR, China    MO   MAC 1965
## 9121                                      Macao SAR, China    MO   MAC 1966
## 9122                                      Macao SAR, China    MO   MAC 1967
## 9123                                      Macao SAR, China    MO   MAC 1968
## 9124                                      Macao SAR, China    MO   MAC 1969
## 9125                                      Macao SAR, China    MO   MAC 1970
## 9126                                      Macao SAR, China    MO   MAC 1971
## 9127                                      Macao SAR, China    MO   MAC 1972
## 9128                                      Macao SAR, China    MO   MAC 1973
## 9129                                      Macao SAR, China    MO   MAC 1974
## 9130                                      Macao SAR, China    MO   MAC 1975
## 9131                                      Macao SAR, China    MO   MAC 1976
## 9132                                      Macao SAR, China    MO   MAC 1977
## 9133                                      Macao SAR, China    MO   MAC 1978
## 9134                                      Macao SAR, China    MO   MAC 1979
## 9135                                      Macao SAR, China    MO   MAC 1980
## 9136                                      Macao SAR, China    MO   MAC 1981
## 9137                                      Macao SAR, China    MO   MAC 1982
## 9138                                      Macao SAR, China    MO   MAC 1983
## 9139                                      Macao SAR, China    MO   MAC 1984
## 9140                                      Macao SAR, China    MO   MAC 1985
## 9141                                      Macao SAR, China    MO   MAC 1986
## 9142                                      Macao SAR, China    MO   MAC 1987
## 9143                                      Macao SAR, China    MO   MAC 1988
## 9144                                      Macao SAR, China    MO   MAC 1989
## 9145                                      Macao SAR, China    MO   MAC 1990
## 9146                                      Macao SAR, China    MO   MAC 1991
## 9147                                      Macao SAR, China    MO   MAC 1992
## 9148                                      Macao SAR, China    MO   MAC 1993
## 9149                                      Macao SAR, China    MO   MAC 1994
## 9150                                      Macao SAR, China    MO   MAC 1995
## 9151                                      Macao SAR, China    MO   MAC 1996
## 9152                                      Macao SAR, China    MO   MAC 1997
## 9153                                      Macao SAR, China    MO   MAC 1998
## 9154                                      Macao SAR, China    MO   MAC 1999
## 9155                                      Macao SAR, China    MO   MAC 2000
## 9156                                      Macao SAR, China    MO   MAC 2001
## 9157                                      Macao SAR, China    MO   MAC 2002
## 9158                                      Macao SAR, China    MO   MAC 2003
## 9159                                      Macao SAR, China    MO   MAC 2004
## 9160                                      Macao SAR, China    MO   MAC 2005
## 9161                                      Macao SAR, China    MO   MAC 2006
## 9162                                      Macao SAR, China    MO   MAC 2007
## 9163                                      Macao SAR, China    MO   MAC 2008
## 9164                                      Macao SAR, China    MO   MAC 2009
## 9165                                      Macao SAR, China    MO   MAC 2010
## 9166                                      Macao SAR, China    MO   MAC 2011
## 9167                                      Macao SAR, China    MO   MAC 2012
## 9168                                      Macao SAR, China    MO   MAC 2013
## 9169                                      Macao SAR, China    MO   MAC 2014
## 9170                                      Macao SAR, China    MO   MAC 2015
## 9171                                      Macao SAR, China    MO   MAC 2016
## 9172                                      Macao SAR, China    MO   MAC 2017
## 9173                                      Macao SAR, China    MO   MAC 2018
## 9174                                      Macao SAR, China    MO   MAC 2019
## 9175                                      Macao SAR, China    MO   MAC 2020
## 9176                                      Macao SAR, China    MO   MAC 2021
## 9177                                            Madagascar    MG   MDG 1960
## 9178                                            Madagascar    MG   MDG 1961
## 9179                                            Madagascar    MG   MDG 1962
## 9180                                            Madagascar    MG   MDG 1963
## 9181                                            Madagascar    MG   MDG 1964
## 9182                                            Madagascar    MG   MDG 1965
## 9183                                            Madagascar    MG   MDG 1966
## 9184                                            Madagascar    MG   MDG 1967
## 9185                                            Madagascar    MG   MDG 1968
## 9186                                            Madagascar    MG   MDG 1969
## 9187                                            Madagascar    MG   MDG 1970
## 9188                                            Madagascar    MG   MDG 1971
## 9189                                            Madagascar    MG   MDG 1972
## 9190                                            Madagascar    MG   MDG 1973
## 9191                                            Madagascar    MG   MDG 1974
## 9192                                            Madagascar    MG   MDG 1975
## 9193                                            Madagascar    MG   MDG 1976
## 9194                                            Madagascar    MG   MDG 1977
## 9195                                            Madagascar    MG   MDG 1978
## 9196                                            Madagascar    MG   MDG 1979
## 9197                                            Madagascar    MG   MDG 1980
## 9198                                            Madagascar    MG   MDG 1981
## 9199                                            Madagascar    MG   MDG 1982
## 9200                                            Madagascar    MG   MDG 1983
## 9201                                            Madagascar    MG   MDG 1984
## 9202                                            Madagascar    MG   MDG 1985
## 9203                                            Madagascar    MG   MDG 1986
## 9204                                            Madagascar    MG   MDG 1987
## 9205                                            Madagascar    MG   MDG 1988
## 9206                                            Madagascar    MG   MDG 1989
## 9207                                            Madagascar    MG   MDG 1990
## 9208                                            Madagascar    MG   MDG 1991
## 9209                                            Madagascar    MG   MDG 1992
## 9210                                            Madagascar    MG   MDG 1993
## 9211                                            Madagascar    MG   MDG 1994
## 9212                                            Madagascar    MG   MDG 1995
## 9213                                            Madagascar    MG   MDG 1996
## 9214                                            Madagascar    MG   MDG 1997
## 9215                                            Madagascar    MG   MDG 1998
## 9216                                            Madagascar    MG   MDG 1999
## 9217                                            Madagascar    MG   MDG 2000
## 9218                                            Madagascar    MG   MDG 2001
## 9219                                            Madagascar    MG   MDG 2002
## 9220                                            Madagascar    MG   MDG 2003
## 9221                                            Madagascar    MG   MDG 2004
## 9222                                            Madagascar    MG   MDG 2005
## 9223                                            Madagascar    MG   MDG 2006
## 9224                                            Madagascar    MG   MDG 2007
## 9225                                            Madagascar    MG   MDG 2008
## 9226                                            Madagascar    MG   MDG 2009
## 9227                                            Madagascar    MG   MDG 2010
## 9228                                            Madagascar    MG   MDG 2011
## 9229                                            Madagascar    MG   MDG 2012
## 9230                                            Madagascar    MG   MDG 2013
## 9231                                            Madagascar    MG   MDG 2014
## 9232                                            Madagascar    MG   MDG 2015
## 9233                                            Madagascar    MG   MDG 2016
## 9234                                            Madagascar    MG   MDG 2017
## 9235                                            Madagascar    MG   MDG 2018
## 9236                                            Madagascar    MG   MDG 2019
## 9237                                            Madagascar    MG   MDG 2020
## 9238                                            Madagascar    MG   MDG 2021
## 9239                                                Malawi    MW   MWI 1960
## 9240                                                Malawi    MW   MWI 1961
## 9241                                                Malawi    MW   MWI 1962
## 9242                                                Malawi    MW   MWI 1963
## 9243                                                Malawi    MW   MWI 1964
## 9244                                                Malawi    MW   MWI 1965
## 9245                                                Malawi    MW   MWI 1966
## 9246                                                Malawi    MW   MWI 1967
## 9247                                                Malawi    MW   MWI 1968
## 9248                                                Malawi    MW   MWI 1969
## 9249                                                Malawi    MW   MWI 1970
## 9250                                                Malawi    MW   MWI 1971
## 9251                                                Malawi    MW   MWI 1972
## 9252                                                Malawi    MW   MWI 1973
## 9253                                                Malawi    MW   MWI 1974
## 9254                                                Malawi    MW   MWI 1975
## 9255                                                Malawi    MW   MWI 1976
## 9256                                                Malawi    MW   MWI 1977
## 9257                                                Malawi    MW   MWI 1978
## 9258                                                Malawi    MW   MWI 1979
## 9259                                                Malawi    MW   MWI 1980
## 9260                                                Malawi    MW   MWI 1981
## 9261                                                Malawi    MW   MWI 1982
## 9262                                                Malawi    MW   MWI 1983
## 9263                                                Malawi    MW   MWI 1984
## 9264                                                Malawi    MW   MWI 1985
## 9265                                                Malawi    MW   MWI 1986
## 9266                                                Malawi    MW   MWI 1987
## 9267                                                Malawi    MW   MWI 1988
## 9268                                                Malawi    MW   MWI 1989
## 9269                                                Malawi    MW   MWI 1990
## 9270                                                Malawi    MW   MWI 1991
## 9271                                                Malawi    MW   MWI 1992
## 9272                                                Malawi    MW   MWI 1993
## 9273                                                Malawi    MW   MWI 1994
## 9274                                                Malawi    MW   MWI 1995
## 9275                                                Malawi    MW   MWI 1996
## 9276                                                Malawi    MW   MWI 1997
## 9277                                                Malawi    MW   MWI 1998
## 9278                                                Malawi    MW   MWI 1999
## 9279                                                Malawi    MW   MWI 2000
## 9280                                                Malawi    MW   MWI 2001
## 9281                                                Malawi    MW   MWI 2002
## 9282                                                Malawi    MW   MWI 2003
## 9283                                                Malawi    MW   MWI 2004
## 9284                                                Malawi    MW   MWI 2005
## 9285                                                Malawi    MW   MWI 2006
## 9286                                                Malawi    MW   MWI 2007
## 9287                                                Malawi    MW   MWI 2008
## 9288                                                Malawi    MW   MWI 2009
## 9289                                                Malawi    MW   MWI 2010
## 9290                                                Malawi    MW   MWI 2011
## 9291                                                Malawi    MW   MWI 2012
## 9292                                                Malawi    MW   MWI 2013
## 9293                                                Malawi    MW   MWI 2014
## 9294                                                Malawi    MW   MWI 2015
## 9295                                                Malawi    MW   MWI 2016
## 9296                                                Malawi    MW   MWI 2017
## 9297                                                Malawi    MW   MWI 2018
## 9298                                                Malawi    MW   MWI 2019
## 9299                                                Malawi    MW   MWI 2020
## 9300                                                Malawi    MW   MWI 2021
## 9301                                              Malaysia    MY   MYS 1960
## 9302                                              Malaysia    MY   MYS 1961
## 9303                                              Malaysia    MY   MYS 1962
## 9304                                              Malaysia    MY   MYS 1963
## 9305                                              Malaysia    MY   MYS 1964
## 9306                                              Malaysia    MY   MYS 1965
## 9307                                              Malaysia    MY   MYS 1966
## 9308                                              Malaysia    MY   MYS 1967
## 9309                                              Malaysia    MY   MYS 1968
## 9310                                              Malaysia    MY   MYS 1969
## 9311                                              Malaysia    MY   MYS 1970
## 9312                                              Malaysia    MY   MYS 1971
## 9313                                              Malaysia    MY   MYS 1972
## 9314                                              Malaysia    MY   MYS 1973
## 9315                                              Malaysia    MY   MYS 1974
## 9316                                              Malaysia    MY   MYS 1975
## 9317                                              Malaysia    MY   MYS 1976
## 9318                                              Malaysia    MY   MYS 1977
## 9319                                              Malaysia    MY   MYS 1978
## 9320                                              Malaysia    MY   MYS 1979
## 9321                                              Malaysia    MY   MYS 1980
## 9322                                              Malaysia    MY   MYS 1981
## 9323                                              Malaysia    MY   MYS 1982
## 9324                                              Malaysia    MY   MYS 1983
## 9325                                              Malaysia    MY   MYS 1984
## 9326                                              Malaysia    MY   MYS 1985
## 9327                                              Malaysia    MY   MYS 1986
## 9328                                              Malaysia    MY   MYS 1987
## 9329                                              Malaysia    MY   MYS 1988
## 9330                                              Malaysia    MY   MYS 1989
## 9331                                              Malaysia    MY   MYS 1990
## 9332                                              Malaysia    MY   MYS 1991
## 9333                                              Malaysia    MY   MYS 1992
## 9334                                              Malaysia    MY   MYS 1993
## 9335                                              Malaysia    MY   MYS 1994
## 9336                                              Malaysia    MY   MYS 1995
## 9337                                              Malaysia    MY   MYS 1996
## 9338                                              Malaysia    MY   MYS 1997
## 9339                                              Malaysia    MY   MYS 1998
## 9340                                              Malaysia    MY   MYS 1999
## 9341                                              Malaysia    MY   MYS 2000
## 9342                                              Malaysia    MY   MYS 2001
## 9343                                              Malaysia    MY   MYS 2002
## 9344                                              Malaysia    MY   MYS 2003
## 9345                                              Malaysia    MY   MYS 2004
## 9346                                              Malaysia    MY   MYS 2005
## 9347                                              Malaysia    MY   MYS 2006
## 9348                                              Malaysia    MY   MYS 2007
## 9349                                              Malaysia    MY   MYS 2008
## 9350                                              Malaysia    MY   MYS 2009
## 9351                                              Malaysia    MY   MYS 2010
## 9352                                              Malaysia    MY   MYS 2011
## 9353                                              Malaysia    MY   MYS 2012
## 9354                                              Malaysia    MY   MYS 2013
## 9355                                              Malaysia    MY   MYS 2014
## 9356                                              Malaysia    MY   MYS 2015
## 9357                                              Malaysia    MY   MYS 2016
## 9358                                              Malaysia    MY   MYS 2017
## 9359                                              Malaysia    MY   MYS 2018
## 9360                                              Malaysia    MY   MYS 2019
## 9361                                              Malaysia    MY   MYS 2020
## 9362                                              Malaysia    MY   MYS 2021
## 9363                                              Maldives    MV   MDV 1960
## 9364                                              Maldives    MV   MDV 1961
## 9365                                              Maldives    MV   MDV 1962
## 9366                                              Maldives    MV   MDV 1963
## 9367                                              Maldives    MV   MDV 1964
## 9368                                              Maldives    MV   MDV 1965
## 9369                                              Maldives    MV   MDV 1966
## 9370                                              Maldives    MV   MDV 1967
## 9371                                              Maldives    MV   MDV 1968
## 9372                                              Maldives    MV   MDV 1969
## 9373                                              Maldives    MV   MDV 1970
## 9374                                              Maldives    MV   MDV 1971
## 9375                                              Maldives    MV   MDV 1972
## 9376                                              Maldives    MV   MDV 1973
## 9377                                              Maldives    MV   MDV 1974
## 9378                                              Maldives    MV   MDV 1975
## 9379                                              Maldives    MV   MDV 1976
## 9380                                              Maldives    MV   MDV 1977
## 9381                                              Maldives    MV   MDV 1978
## 9382                                              Maldives    MV   MDV 1979
## 9383                                              Maldives    MV   MDV 1980
## 9384                                              Maldives    MV   MDV 1981
## 9385                                              Maldives    MV   MDV 1982
## 9386                                              Maldives    MV   MDV 1983
## 9387                                              Maldives    MV   MDV 1984
## 9388                                              Maldives    MV   MDV 1985
## 9389                                              Maldives    MV   MDV 1986
## 9390                                              Maldives    MV   MDV 1987
## 9391                                              Maldives    MV   MDV 1988
## 9392                                              Maldives    MV   MDV 1989
## 9393                                              Maldives    MV   MDV 1990
## 9394                                              Maldives    MV   MDV 1991
## 9395                                              Maldives    MV   MDV 1992
## 9396                                              Maldives    MV   MDV 1993
## 9397                                              Maldives    MV   MDV 1994
## 9398                                              Maldives    MV   MDV 1995
## 9399                                              Maldives    MV   MDV 1996
## 9400                                              Maldives    MV   MDV 1997
## 9401                                              Maldives    MV   MDV 1998
## 9402                                              Maldives    MV   MDV 1999
## 9403                                              Maldives    MV   MDV 2000
## 9404                                              Maldives    MV   MDV 2001
## 9405                                              Maldives    MV   MDV 2002
## 9406                                              Maldives    MV   MDV 2003
## 9407                                              Maldives    MV   MDV 2004
## 9408                                              Maldives    MV   MDV 2005
## 9409                                              Maldives    MV   MDV 2006
## 9410                                              Maldives    MV   MDV 2007
## 9411                                              Maldives    MV   MDV 2008
## 9412                                              Maldives    MV   MDV 2009
## 9413                                              Maldives    MV   MDV 2010
## 9414                                              Maldives    MV   MDV 2011
## 9415                                              Maldives    MV   MDV 2012
## 9416                                              Maldives    MV   MDV 2013
## 9417                                              Maldives    MV   MDV 2014
## 9418                                              Maldives    MV   MDV 2015
## 9419                                              Maldives    MV   MDV 2016
## 9420                                              Maldives    MV   MDV 2017
## 9421                                              Maldives    MV   MDV 2018
## 9422                                              Maldives    MV   MDV 2019
## 9423                                              Maldives    MV   MDV 2020
## 9424                                              Maldives    MV   MDV 2021
## 9425                                                  Mali    ML   MLI 1960
## 9426                                                  Mali    ML   MLI 1961
## 9427                                                  Mali    ML   MLI 1962
## 9428                                                  Mali    ML   MLI 1963
## 9429                                                  Mali    ML   MLI 1964
## 9430                                                  Mali    ML   MLI 1965
## 9431                                                  Mali    ML   MLI 1966
## 9432                                                  Mali    ML   MLI 1967
## 9433                                                  Mali    ML   MLI 1968
## 9434                                                  Mali    ML   MLI 1969
## 9435                                                  Mali    ML   MLI 1970
## 9436                                                  Mali    ML   MLI 1971
## 9437                                                  Mali    ML   MLI 1972
## 9438                                                  Mali    ML   MLI 1973
## 9439                                                  Mali    ML   MLI 1974
## 9440                                                  Mali    ML   MLI 1975
## 9441                                                  Mali    ML   MLI 1976
## 9442                                                  Mali    ML   MLI 1977
## 9443                                                  Mali    ML   MLI 1978
## 9444                                                  Mali    ML   MLI 1979
## 9445                                                  Mali    ML   MLI 1980
## 9446                                                  Mali    ML   MLI 1981
## 9447                                                  Mali    ML   MLI 1982
## 9448                                                  Mali    ML   MLI 1983
## 9449                                                  Mali    ML   MLI 1984
## 9450                                                  Mali    ML   MLI 1985
## 9451                                                  Mali    ML   MLI 1986
## 9452                                                  Mali    ML   MLI 1987
## 9453                                                  Mali    ML   MLI 1988
## 9454                                                  Mali    ML   MLI 1989
## 9455                                                  Mali    ML   MLI 1990
## 9456                                                  Mali    ML   MLI 1991
## 9457                                                  Mali    ML   MLI 1992
## 9458                                                  Mali    ML   MLI 1993
## 9459                                                  Mali    ML   MLI 1994
## 9460                                                  Mali    ML   MLI 1995
## 9461                                                  Mali    ML   MLI 1996
## 9462                                                  Mali    ML   MLI 1997
## 9463                                                  Mali    ML   MLI 1998
## 9464                                                  Mali    ML   MLI 1999
## 9465                                                  Mali    ML   MLI 2000
## 9466                                                  Mali    ML   MLI 2001
## 9467                                                  Mali    ML   MLI 2002
## 9468                                                  Mali    ML   MLI 2003
## 9469                                                  Mali    ML   MLI 2004
## 9470                                                  Mali    ML   MLI 2005
## 9471                                                  Mali    ML   MLI 2006
## 9472                                                  Mali    ML   MLI 2007
## 9473                                                  Mali    ML   MLI 2008
## 9474                                                  Mali    ML   MLI 2009
## 9475                                                  Mali    ML   MLI 2010
## 9476                                                  Mali    ML   MLI 2011
## 9477                                                  Mali    ML   MLI 2012
## 9478                                                  Mali    ML   MLI 2013
## 9479                                                  Mali    ML   MLI 2014
## 9480                                                  Mali    ML   MLI 2015
## 9481                                                  Mali    ML   MLI 2016
## 9482                                                  Mali    ML   MLI 2017
## 9483                                                  Mali    ML   MLI 2018
## 9484                                                  Mali    ML   MLI 2019
## 9485                                                  Mali    ML   MLI 2020
## 9486                                                  Mali    ML   MLI 2021
## 9487                                                 Malta    MT   MLT 1960
## 9488                                                 Malta    MT   MLT 1961
## 9489                                                 Malta    MT   MLT 1962
## 9490                                                 Malta    MT   MLT 1963
## 9491                                                 Malta    MT   MLT 1964
## 9492                                                 Malta    MT   MLT 1965
## 9493                                                 Malta    MT   MLT 1966
## 9494                                                 Malta    MT   MLT 1967
## 9495                                                 Malta    MT   MLT 1968
## 9496                                                 Malta    MT   MLT 1969
## 9497                                                 Malta    MT   MLT 1970
## 9498                                                 Malta    MT   MLT 1971
## 9499                                                 Malta    MT   MLT 1972
## 9500                                                 Malta    MT   MLT 1973
## 9501                                                 Malta    MT   MLT 1974
## 9502                                                 Malta    MT   MLT 1975
## 9503                                                 Malta    MT   MLT 1976
## 9504                                                 Malta    MT   MLT 1977
## 9505                                                 Malta    MT   MLT 1978
## 9506                                                 Malta    MT   MLT 1979
## 9507                                                 Malta    MT   MLT 1980
## 9508                                                 Malta    MT   MLT 1981
## 9509                                                 Malta    MT   MLT 1982
## 9510                                                 Malta    MT   MLT 1983
## 9511                                                 Malta    MT   MLT 1984
## 9512                                                 Malta    MT   MLT 1985
## 9513                                                 Malta    MT   MLT 1986
## 9514                                                 Malta    MT   MLT 1987
## 9515                                                 Malta    MT   MLT 1988
## 9516                                                 Malta    MT   MLT 1989
## 9517                                                 Malta    MT   MLT 1990
## 9518                                                 Malta    MT   MLT 1991
## 9519                                                 Malta    MT   MLT 1992
## 9520                                                 Malta    MT   MLT 1993
## 9521                                                 Malta    MT   MLT 1994
## 9522                                                 Malta    MT   MLT 1995
## 9523                                                 Malta    MT   MLT 1996
## 9524                                                 Malta    MT   MLT 1997
## 9525                                                 Malta    MT   MLT 1998
## 9526                                                 Malta    MT   MLT 1999
## 9527                                                 Malta    MT   MLT 2000
## 9528                                                 Malta    MT   MLT 2001
## 9529                                                 Malta    MT   MLT 2002
## 9530                                                 Malta    MT   MLT 2003
## 9531                                                 Malta    MT   MLT 2004
## 9532                                                 Malta    MT   MLT 2005
## 9533                                                 Malta    MT   MLT 2006
## 9534                                                 Malta    MT   MLT 2007
## 9535                                                 Malta    MT   MLT 2008
## 9536                                                 Malta    MT   MLT 2009
## 9537                                                 Malta    MT   MLT 2010
## 9538                                                 Malta    MT   MLT 2011
## 9539                                                 Malta    MT   MLT 2012
## 9540                                                 Malta    MT   MLT 2013
## 9541                                                 Malta    MT   MLT 2014
## 9542                                                 Malta    MT   MLT 2015
## 9543                                                 Malta    MT   MLT 2016
## 9544                                                 Malta    MT   MLT 2017
## 9545                                                 Malta    MT   MLT 2018
## 9546                                                 Malta    MT   MLT 2019
## 9547                                                 Malta    MT   MLT 2020
## 9548                                                 Malta    MT   MLT 2021
## 9549                                      Marshall Islands    MH   MHL 1960
## 9550                                      Marshall Islands    MH   MHL 1961
## 9551                                      Marshall Islands    MH   MHL 1962
## 9552                                      Marshall Islands    MH   MHL 1963
## 9553                                      Marshall Islands    MH   MHL 1964
## 9554                                      Marshall Islands    MH   MHL 1965
## 9555                                      Marshall Islands    MH   MHL 1966
## 9556                                      Marshall Islands    MH   MHL 1967
## 9557                                      Marshall Islands    MH   MHL 1968
## 9558                                      Marshall Islands    MH   MHL 1969
## 9559                                      Marshall Islands    MH   MHL 1970
## 9560                                      Marshall Islands    MH   MHL 1971
## 9561                                      Marshall Islands    MH   MHL 1972
## 9562                                      Marshall Islands    MH   MHL 1973
## 9563                                      Marshall Islands    MH   MHL 1974
## 9564                                      Marshall Islands    MH   MHL 1975
## 9565                                      Marshall Islands    MH   MHL 1976
## 9566                                      Marshall Islands    MH   MHL 1977
## 9567                                      Marshall Islands    MH   MHL 1978
## 9568                                      Marshall Islands    MH   MHL 1979
## 9569                                      Marshall Islands    MH   MHL 1980
## 9570                                      Marshall Islands    MH   MHL 1981
## 9571                                      Marshall Islands    MH   MHL 1982
## 9572                                      Marshall Islands    MH   MHL 1983
## 9573                                      Marshall Islands    MH   MHL 1984
## 9574                                      Marshall Islands    MH   MHL 1985
## 9575                                      Marshall Islands    MH   MHL 1986
## 9576                                      Marshall Islands    MH   MHL 1987
## 9577                                      Marshall Islands    MH   MHL 1988
## 9578                                      Marshall Islands    MH   MHL 1989
## 9579                                      Marshall Islands    MH   MHL 1990
## 9580                                      Marshall Islands    MH   MHL 1991
## 9581                                      Marshall Islands    MH   MHL 1992
## 9582                                      Marshall Islands    MH   MHL 1993
## 9583                                      Marshall Islands    MH   MHL 1994
## 9584                                      Marshall Islands    MH   MHL 1995
## 9585                                      Marshall Islands    MH   MHL 1996
## 9586                                      Marshall Islands    MH   MHL 1997
## 9587                                      Marshall Islands    MH   MHL 1998
## 9588                                      Marshall Islands    MH   MHL 1999
## 9589                                      Marshall Islands    MH   MHL 2000
## 9590                                      Marshall Islands    MH   MHL 2001
## 9591                                      Marshall Islands    MH   MHL 2002
## 9592                                      Marshall Islands    MH   MHL 2003
## 9593                                      Marshall Islands    MH   MHL 2004
## 9594                                      Marshall Islands    MH   MHL 2005
## 9595                                      Marshall Islands    MH   MHL 2006
## 9596                                      Marshall Islands    MH   MHL 2007
## 9597                                      Marshall Islands    MH   MHL 2008
## 9598                                      Marshall Islands    MH   MHL 2009
## 9599                                      Marshall Islands    MH   MHL 2010
## 9600                                      Marshall Islands    MH   MHL 2011
## 9601                                      Marshall Islands    MH   MHL 2012
## 9602                                      Marshall Islands    MH   MHL 2013
## 9603                                      Marshall Islands    MH   MHL 2014
## 9604                                      Marshall Islands    MH   MHL 2015
## 9605                                      Marshall Islands    MH   MHL 2016
## 9606                                      Marshall Islands    MH   MHL 2017
## 9607                                      Marshall Islands    MH   MHL 2018
## 9608                                      Marshall Islands    MH   MHL 2019
## 9609                                      Marshall Islands    MH   MHL 2020
## 9610                                      Marshall Islands    MH   MHL 2021
## 9611                                            Mauritania    MR   MRT 1960
## 9612                                            Mauritania    MR   MRT 1961
## 9613                                            Mauritania    MR   MRT 1962
## 9614                                            Mauritania    MR   MRT 1963
## 9615                                            Mauritania    MR   MRT 1964
## 9616                                            Mauritania    MR   MRT 1965
## 9617                                            Mauritania    MR   MRT 1966
## 9618                                            Mauritania    MR   MRT 1967
## 9619                                            Mauritania    MR   MRT 1968
## 9620                                            Mauritania    MR   MRT 1969
## 9621                                            Mauritania    MR   MRT 1970
## 9622                                            Mauritania    MR   MRT 1971
## 9623                                            Mauritania    MR   MRT 1972
## 9624                                            Mauritania    MR   MRT 1973
## 9625                                            Mauritania    MR   MRT 1974
## 9626                                            Mauritania    MR   MRT 1975
## 9627                                            Mauritania    MR   MRT 1976
## 9628                                            Mauritania    MR   MRT 1977
## 9629                                            Mauritania    MR   MRT 1978
## 9630                                            Mauritania    MR   MRT 1979
## 9631                                            Mauritania    MR   MRT 1980
## 9632                                            Mauritania    MR   MRT 1981
## 9633                                            Mauritania    MR   MRT 1982
## 9634                                            Mauritania    MR   MRT 1983
## 9635                                            Mauritania    MR   MRT 1984
## 9636                                            Mauritania    MR   MRT 1985
## 9637                                            Mauritania    MR   MRT 1986
## 9638                                            Mauritania    MR   MRT 1987
## 9639                                            Mauritania    MR   MRT 1988
## 9640                                            Mauritania    MR   MRT 1989
## 9641                                            Mauritania    MR   MRT 1990
## 9642                                            Mauritania    MR   MRT 1991
## 9643                                            Mauritania    MR   MRT 1992
## 9644                                            Mauritania    MR   MRT 1993
## 9645                                            Mauritania    MR   MRT 1994
## 9646                                            Mauritania    MR   MRT 1995
## 9647                                            Mauritania    MR   MRT 1996
## 9648                                            Mauritania    MR   MRT 1997
## 9649                                            Mauritania    MR   MRT 1998
## 9650                                            Mauritania    MR   MRT 1999
## 9651                                            Mauritania    MR   MRT 2000
## 9652                                            Mauritania    MR   MRT 2001
## 9653                                            Mauritania    MR   MRT 2002
## 9654                                            Mauritania    MR   MRT 2003
## 9655                                            Mauritania    MR   MRT 2004
## 9656                                            Mauritania    MR   MRT 2005
## 9657                                            Mauritania    MR   MRT 2006
## 9658                                            Mauritania    MR   MRT 2007
## 9659                                            Mauritania    MR   MRT 2008
## 9660                                            Mauritania    MR   MRT 2009
## 9661                                            Mauritania    MR   MRT 2010
## 9662                                            Mauritania    MR   MRT 2011
## 9663                                            Mauritania    MR   MRT 2012
## 9664                                            Mauritania    MR   MRT 2013
## 9665                                            Mauritania    MR   MRT 2014
## 9666                                            Mauritania    MR   MRT 2015
## 9667                                            Mauritania    MR   MRT 2016
## 9668                                            Mauritania    MR   MRT 2017
## 9669                                            Mauritania    MR   MRT 2018
## 9670                                            Mauritania    MR   MRT 2019
## 9671                                            Mauritania    MR   MRT 2020
## 9672                                            Mauritania    MR   MRT 2021
## 9673                                             Mauritius    MU   MUS 1960
## 9674                                             Mauritius    MU   MUS 1961
## 9675                                             Mauritius    MU   MUS 1962
## 9676                                             Mauritius    MU   MUS 1963
## 9677                                             Mauritius    MU   MUS 1964
## 9678                                             Mauritius    MU   MUS 1965
## 9679                                             Mauritius    MU   MUS 1966
## 9680                                             Mauritius    MU   MUS 1967
## 9681                                             Mauritius    MU   MUS 1968
## 9682                                             Mauritius    MU   MUS 1969
## 9683                                             Mauritius    MU   MUS 1970
## 9684                                             Mauritius    MU   MUS 1971
## 9685                                             Mauritius    MU   MUS 1972
## 9686                                             Mauritius    MU   MUS 1973
## 9687                                             Mauritius    MU   MUS 1974
## 9688                                             Mauritius    MU   MUS 1975
## 9689                                             Mauritius    MU   MUS 1976
## 9690                                             Mauritius    MU   MUS 1977
## 9691                                             Mauritius    MU   MUS 1978
## 9692                                             Mauritius    MU   MUS 1979
## 9693                                             Mauritius    MU   MUS 1980
## 9694                                             Mauritius    MU   MUS 1981
## 9695                                             Mauritius    MU   MUS 1982
## 9696                                             Mauritius    MU   MUS 1983
## 9697                                             Mauritius    MU   MUS 1984
## 9698                                             Mauritius    MU   MUS 1985
## 9699                                             Mauritius    MU   MUS 1986
## 9700                                             Mauritius    MU   MUS 1987
## 9701                                             Mauritius    MU   MUS 1988
## 9702                                             Mauritius    MU   MUS 1989
## 9703                                             Mauritius    MU   MUS 1990
## 9704                                             Mauritius    MU   MUS 1991
## 9705                                             Mauritius    MU   MUS 1992
## 9706                                             Mauritius    MU   MUS 1993
## 9707                                             Mauritius    MU   MUS 1994
## 9708                                             Mauritius    MU   MUS 1995
## 9709                                             Mauritius    MU   MUS 1996
## 9710                                             Mauritius    MU   MUS 1997
## 9711                                             Mauritius    MU   MUS 1998
## 9712                                             Mauritius    MU   MUS 1999
## 9713                                             Mauritius    MU   MUS 2000
## 9714                                             Mauritius    MU   MUS 2001
## 9715                                             Mauritius    MU   MUS 2002
## 9716                                             Mauritius    MU   MUS 2003
## 9717                                             Mauritius    MU   MUS 2004
## 9718                                             Mauritius    MU   MUS 2005
## 9719                                             Mauritius    MU   MUS 2006
## 9720                                             Mauritius    MU   MUS 2007
## 9721                                             Mauritius    MU   MUS 2008
## 9722                                             Mauritius    MU   MUS 2009
## 9723                                             Mauritius    MU   MUS 2010
## 9724                                             Mauritius    MU   MUS 2011
## 9725                                             Mauritius    MU   MUS 2012
## 9726                                             Mauritius    MU   MUS 2013
## 9727                                             Mauritius    MU   MUS 2014
## 9728                                             Mauritius    MU   MUS 2015
## 9729                                             Mauritius    MU   MUS 2016
## 9730                                             Mauritius    MU   MUS 2017
## 9731                                             Mauritius    MU   MUS 2018
## 9732                                             Mauritius    MU   MUS 2019
## 9733                                             Mauritius    MU   MUS 2020
## 9734                                             Mauritius    MU   MUS 2021
## 9735                                                Mexico    MX   MEX 1960
## 9736                                                Mexico    MX   MEX 1961
## 9737                                                Mexico    MX   MEX 1962
## 9738                                                Mexico    MX   MEX 1963
## 9739                                                Mexico    MX   MEX 1964
## 9740                                                Mexico    MX   MEX 1965
## 9741                                                Mexico    MX   MEX 1966
## 9742                                                Mexico    MX   MEX 1967
## 9743                                                Mexico    MX   MEX 1968
## 9744                                                Mexico    MX   MEX 1969
## 9745                                                Mexico    MX   MEX 1970
## 9746                                                Mexico    MX   MEX 1971
## 9747                                                Mexico    MX   MEX 1972
## 9748                                                Mexico    MX   MEX 1973
## 9749                                                Mexico    MX   MEX 1974
## 9750                                                Mexico    MX   MEX 1975
## 9751                                                Mexico    MX   MEX 1976
## 9752                                                Mexico    MX   MEX 1977
## 9753                                                Mexico    MX   MEX 1978
## 9754                                                Mexico    MX   MEX 1979
## 9755                                                Mexico    MX   MEX 1980
## 9756                                                Mexico    MX   MEX 1981
## 9757                                                Mexico    MX   MEX 1982
## 9758                                                Mexico    MX   MEX 1983
## 9759                                                Mexico    MX   MEX 1984
## 9760                                                Mexico    MX   MEX 1985
## 9761                                                Mexico    MX   MEX 1986
## 9762                                                Mexico    MX   MEX 1987
## 9763                                                Mexico    MX   MEX 1988
## 9764                                                Mexico    MX   MEX 1989
## 9765                                                Mexico    MX   MEX 1990
## 9766                                                Mexico    MX   MEX 1991
## 9767                                                Mexico    MX   MEX 1992
## 9768                                                Mexico    MX   MEX 1993
## 9769                                                Mexico    MX   MEX 1994
## 9770                                                Mexico    MX   MEX 1995
## 9771                                                Mexico    MX   MEX 1996
## 9772                                                Mexico    MX   MEX 1997
## 9773                                                Mexico    MX   MEX 1998
## 9774                                                Mexico    MX   MEX 1999
## 9775                                                Mexico    MX   MEX 2000
## 9776                                                Mexico    MX   MEX 2001
## 9777                                                Mexico    MX   MEX 2002
## 9778                                                Mexico    MX   MEX 2003
## 9779                                                Mexico    MX   MEX 2004
## 9780                                                Mexico    MX   MEX 2005
## 9781                                                Mexico    MX   MEX 2006
## 9782                                                Mexico    MX   MEX 2007
## 9783                                                Mexico    MX   MEX 2008
## 9784                                                Mexico    MX   MEX 2009
## 9785                                                Mexico    MX   MEX 2010
## 9786                                                Mexico    MX   MEX 2011
## 9787                                                Mexico    MX   MEX 2012
## 9788                                                Mexico    MX   MEX 2013
## 9789                                                Mexico    MX   MEX 2014
## 9790                                                Mexico    MX   MEX 2015
## 9791                                                Mexico    MX   MEX 2016
## 9792                                                Mexico    MX   MEX 2017
## 9793                                                Mexico    MX   MEX 2018
## 9794                                                Mexico    MX   MEX 2019
## 9795                                                Mexico    MX   MEX 2020
## 9796                                                Mexico    MX   MEX 2021
## 9797                                 Micronesia, Fed. Sts.    FM   FSM 1960
## 9798                                 Micronesia, Fed. Sts.    FM   FSM 1961
## 9799                                 Micronesia, Fed. Sts.    FM   FSM 1962
## 9800                                 Micronesia, Fed. Sts.    FM   FSM 1963
## 9801                                 Micronesia, Fed. Sts.    FM   FSM 1964
## 9802                                 Micronesia, Fed. Sts.    FM   FSM 1965
## 9803                                 Micronesia, Fed. Sts.    FM   FSM 1966
## 9804                                 Micronesia, Fed. Sts.    FM   FSM 1967
## 9805                                 Micronesia, Fed. Sts.    FM   FSM 1968
## 9806                                 Micronesia, Fed. Sts.    FM   FSM 1969
## 9807                                 Micronesia, Fed. Sts.    FM   FSM 1970
## 9808                                 Micronesia, Fed. Sts.    FM   FSM 1971
## 9809                                 Micronesia, Fed. Sts.    FM   FSM 1972
## 9810                                 Micronesia, Fed. Sts.    FM   FSM 1973
## 9811                                 Micronesia, Fed. Sts.    FM   FSM 1974
## 9812                                 Micronesia, Fed. Sts.    FM   FSM 1975
## 9813                                 Micronesia, Fed. Sts.    FM   FSM 1976
## 9814                                 Micronesia, Fed. Sts.    FM   FSM 1977
## 9815                                 Micronesia, Fed. Sts.    FM   FSM 1978
## 9816                                 Micronesia, Fed. Sts.    FM   FSM 1979
## 9817                                 Micronesia, Fed. Sts.    FM   FSM 1980
## 9818                                 Micronesia, Fed. Sts.    FM   FSM 1981
## 9819                                 Micronesia, Fed. Sts.    FM   FSM 1982
## 9820                                 Micronesia, Fed. Sts.    FM   FSM 1983
## 9821                                 Micronesia, Fed. Sts.    FM   FSM 1984
## 9822                                 Micronesia, Fed. Sts.    FM   FSM 1985
## 9823                                 Micronesia, Fed. Sts.    FM   FSM 1986
## 9824                                 Micronesia, Fed. Sts.    FM   FSM 1987
## 9825                                 Micronesia, Fed. Sts.    FM   FSM 1988
## 9826                                 Micronesia, Fed. Sts.    FM   FSM 1989
## 9827                                 Micronesia, Fed. Sts.    FM   FSM 1990
## 9828                                 Micronesia, Fed. Sts.    FM   FSM 1991
## 9829                                 Micronesia, Fed. Sts.    FM   FSM 1992
## 9830                                 Micronesia, Fed. Sts.    FM   FSM 1993
## 9831                                 Micronesia, Fed. Sts.    FM   FSM 1994
## 9832                                 Micronesia, Fed. Sts.    FM   FSM 1995
## 9833                                 Micronesia, Fed. Sts.    FM   FSM 1996
## 9834                                 Micronesia, Fed. Sts.    FM   FSM 1997
## 9835                                 Micronesia, Fed. Sts.    FM   FSM 1998
## 9836                                 Micronesia, Fed. Sts.    FM   FSM 1999
## 9837                                 Micronesia, Fed. Sts.    FM   FSM 2000
## 9838                                 Micronesia, Fed. Sts.    FM   FSM 2001
## 9839                                 Micronesia, Fed. Sts.    FM   FSM 2002
## 9840                                 Micronesia, Fed. Sts.    FM   FSM 2003
## 9841                                 Micronesia, Fed. Sts.    FM   FSM 2004
## 9842                                 Micronesia, Fed. Sts.    FM   FSM 2005
## 9843                                 Micronesia, Fed. Sts.    FM   FSM 2006
## 9844                                 Micronesia, Fed. Sts.    FM   FSM 2007
## 9845                                 Micronesia, Fed. Sts.    FM   FSM 2008
## 9846                                 Micronesia, Fed. Sts.    FM   FSM 2009
## 9847                                 Micronesia, Fed. Sts.    FM   FSM 2010
## 9848                                 Micronesia, Fed. Sts.    FM   FSM 2011
## 9849                                 Micronesia, Fed. Sts.    FM   FSM 2012
## 9850                                 Micronesia, Fed. Sts.    FM   FSM 2013
## 9851                                 Micronesia, Fed. Sts.    FM   FSM 2014
## 9852                                 Micronesia, Fed. Sts.    FM   FSM 2015
## 9853                                 Micronesia, Fed. Sts.    FM   FSM 2016
## 9854                                 Micronesia, Fed. Sts.    FM   FSM 2017
## 9855                                 Micronesia, Fed. Sts.    FM   FSM 2018
## 9856                                 Micronesia, Fed. Sts.    FM   FSM 2019
## 9857                                 Micronesia, Fed. Sts.    FM   FSM 2020
## 9858                                 Micronesia, Fed. Sts.    FM   FSM 2021
## 9859                            Middle East & North Africa    ZQ   MEA 1960
## 9860                            Middle East & North Africa    ZQ   MEA 1961
## 9861                            Middle East & North Africa    ZQ   MEA 1962
## 9862                            Middle East & North Africa    ZQ   MEA 1963
## 9863                            Middle East & North Africa    ZQ   MEA 1964
## 9864                            Middle East & North Africa    ZQ   MEA 1965
## 9865                            Middle East & North Africa    ZQ   MEA 1966
## 9866                            Middle East & North Africa    ZQ   MEA 1967
## 9867                            Middle East & North Africa    ZQ   MEA 1968
## 9868                            Middle East & North Africa    ZQ   MEA 1969
## 9869                            Middle East & North Africa    ZQ   MEA 1970
## 9870                            Middle East & North Africa    ZQ   MEA 1971
## 9871                            Middle East & North Africa    ZQ   MEA 1972
## 9872                            Middle East & North Africa    ZQ   MEA 1973
## 9873                            Middle East & North Africa    ZQ   MEA 1974
## 9874                            Middle East & North Africa    ZQ   MEA 1975
## 9875                            Middle East & North Africa    ZQ   MEA 1976
## 9876                            Middle East & North Africa    ZQ   MEA 1977
## 9877                            Middle East & North Africa    ZQ   MEA 1978
## 9878                            Middle East & North Africa    ZQ   MEA 1979
## 9879                            Middle East & North Africa    ZQ   MEA 1980
## 9880                            Middle East & North Africa    ZQ   MEA 1981
## 9881                            Middle East & North Africa    ZQ   MEA 1982
## 9882                            Middle East & North Africa    ZQ   MEA 1983
## 9883                            Middle East & North Africa    ZQ   MEA 1984
## 9884                            Middle East & North Africa    ZQ   MEA 1985
## 9885                            Middle East & North Africa    ZQ   MEA 1986
## 9886                            Middle East & North Africa    ZQ   MEA 1987
## 9887                            Middle East & North Africa    ZQ   MEA 1988
## 9888                            Middle East & North Africa    ZQ   MEA 1989
## 9889                            Middle East & North Africa    ZQ   MEA 1990
## 9890                            Middle East & North Africa    ZQ   MEA 1991
## 9891                            Middle East & North Africa    ZQ   MEA 1992
## 9892                            Middle East & North Africa    ZQ   MEA 1993
## 9893                            Middle East & North Africa    ZQ   MEA 1994
## 9894                            Middle East & North Africa    ZQ   MEA 1995
## 9895                            Middle East & North Africa    ZQ   MEA 1996
## 9896                            Middle East & North Africa    ZQ   MEA 1997
## 9897                            Middle East & North Africa    ZQ   MEA 1998
## 9898                            Middle East & North Africa    ZQ   MEA 1999
## 9899                            Middle East & North Africa    ZQ   MEA 2000
## 9900                            Middle East & North Africa    ZQ   MEA 2001
## 9901                            Middle East & North Africa    ZQ   MEA 2002
## 9902                            Middle East & North Africa    ZQ   MEA 2003
## 9903                            Middle East & North Africa    ZQ   MEA 2004
## 9904                            Middle East & North Africa    ZQ   MEA 2005
## 9905                            Middle East & North Africa    ZQ   MEA 2006
## 9906                            Middle East & North Africa    ZQ   MEA 2007
## 9907                            Middle East & North Africa    ZQ   MEA 2008
## 9908                            Middle East & North Africa    ZQ   MEA 2009
## 9909                            Middle East & North Africa    ZQ   MEA 2010
## 9910                            Middle East & North Africa    ZQ   MEA 2011
## 9911                            Middle East & North Africa    ZQ   MEA 2012
## 9912                            Middle East & North Africa    ZQ   MEA 2013
## 9913                            Middle East & North Africa    ZQ   MEA 2014
## 9914                            Middle East & North Africa    ZQ   MEA 2015
## 9915                            Middle East & North Africa    ZQ   MEA 2016
## 9916                            Middle East & North Africa    ZQ   MEA 2017
## 9917                            Middle East & North Africa    ZQ   MEA 2018
## 9918                            Middle East & North Africa    ZQ   MEA 2019
## 9919                            Middle East & North Africa    ZQ   MEA 2020
## 9920                            Middle East & North Africa    ZQ   MEA 2021
## 9921    Middle East & North Africa (excluding high income)    XQ   MNA 1960
## 9922    Middle East & North Africa (excluding high income)    XQ   MNA 1961
## 9923    Middle East & North Africa (excluding high income)    XQ   MNA 1962
## 9924    Middle East & North Africa (excluding high income)    XQ   MNA 1963
## 9925    Middle East & North Africa (excluding high income)    XQ   MNA 1964
## 9926    Middle East & North Africa (excluding high income)    XQ   MNA 1965
## 9927    Middle East & North Africa (excluding high income)    XQ   MNA 1966
## 9928    Middle East & North Africa (excluding high income)    XQ   MNA 1967
## 9929    Middle East & North Africa (excluding high income)    XQ   MNA 1968
## 9930    Middle East & North Africa (excluding high income)    XQ   MNA 1969
## 9931    Middle East & North Africa (excluding high income)    XQ   MNA 1970
## 9932    Middle East & North Africa (excluding high income)    XQ   MNA 1971
## 9933    Middle East & North Africa (excluding high income)    XQ   MNA 1972
## 9934    Middle East & North Africa (excluding high income)    XQ   MNA 1973
## 9935    Middle East & North Africa (excluding high income)    XQ   MNA 1974
## 9936    Middle East & North Africa (excluding high income)    XQ   MNA 1975
## 9937    Middle East & North Africa (excluding high income)    XQ   MNA 1976
## 9938    Middle East & North Africa (excluding high income)    XQ   MNA 1977
## 9939    Middle East & North Africa (excluding high income)    XQ   MNA 1978
## 9940    Middle East & North Africa (excluding high income)    XQ   MNA 1979
## 9941    Middle East & North Africa (excluding high income)    XQ   MNA 1980
## 9942    Middle East & North Africa (excluding high income)    XQ   MNA 1981
## 9943    Middle East & North Africa (excluding high income)    XQ   MNA 1982
## 9944    Middle East & North Africa (excluding high income)    XQ   MNA 1983
## 9945    Middle East & North Africa (excluding high income)    XQ   MNA 1984
## 9946    Middle East & North Africa (excluding high income)    XQ   MNA 1985
## 9947    Middle East & North Africa (excluding high income)    XQ   MNA 1986
## 9948    Middle East & North Africa (excluding high income)    XQ   MNA 1987
## 9949    Middle East & North Africa (excluding high income)    XQ   MNA 1988
## 9950    Middle East & North Africa (excluding high income)    XQ   MNA 1989
## 9951    Middle East & North Africa (excluding high income)    XQ   MNA 1990
## 9952    Middle East & North Africa (excluding high income)    XQ   MNA 1991
## 9953    Middle East & North Africa (excluding high income)    XQ   MNA 1992
## 9954    Middle East & North Africa (excluding high income)    XQ   MNA 1993
## 9955    Middle East & North Africa (excluding high income)    XQ   MNA 1994
## 9956    Middle East & North Africa (excluding high income)    XQ   MNA 1995
## 9957    Middle East & North Africa (excluding high income)    XQ   MNA 1996
## 9958    Middle East & North Africa (excluding high income)    XQ   MNA 1997
## 9959    Middle East & North Africa (excluding high income)    XQ   MNA 1998
## 9960    Middle East & North Africa (excluding high income)    XQ   MNA 1999
## 9961    Middle East & North Africa (excluding high income)    XQ   MNA 2000
## 9962    Middle East & North Africa (excluding high income)    XQ   MNA 2001
## 9963    Middle East & North Africa (excluding high income)    XQ   MNA 2002
## 9964    Middle East & North Africa (excluding high income)    XQ   MNA 2003
## 9965    Middle East & North Africa (excluding high income)    XQ   MNA 2004
## 9966    Middle East & North Africa (excluding high income)    XQ   MNA 2005
## 9967    Middle East & North Africa (excluding high income)    XQ   MNA 2006
## 9968    Middle East & North Africa (excluding high income)    XQ   MNA 2007
## 9969    Middle East & North Africa (excluding high income)    XQ   MNA 2008
## 9970    Middle East & North Africa (excluding high income)    XQ   MNA 2009
## 9971    Middle East & North Africa (excluding high income)    XQ   MNA 2010
## 9972    Middle East & North Africa (excluding high income)    XQ   MNA 2011
## 9973    Middle East & North Africa (excluding high income)    XQ   MNA 2012
## 9974    Middle East & North Africa (excluding high income)    XQ   MNA 2013
## 9975    Middle East & North Africa (excluding high income)    XQ   MNA 2014
## 9976    Middle East & North Africa (excluding high income)    XQ   MNA 2015
## 9977    Middle East & North Africa (excluding high income)    XQ   MNA 2016
## 9978    Middle East & North Africa (excluding high income)    XQ   MNA 2017
## 9979    Middle East & North Africa (excluding high income)    XQ   MNA 2018
## 9980    Middle East & North Africa (excluding high income)    XQ   MNA 2019
## 9981    Middle East & North Africa (excluding high income)    XQ   MNA 2020
## 9982    Middle East & North Africa (excluding high income)    XQ   MNA 2021
## 9983     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1960
## 9984     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1961
## 9985     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1962
## 9986     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1963
## 9987     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1964
## 9988     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1965
## 9989     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1966
## 9990     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1967
## 9991     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1968
## 9992     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1969
## 9993     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1970
## 9994     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1971
## 9995     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1972
## 9996     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1973
## 9997     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1974
## 9998     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1975
## 9999     Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1976
## 10000    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1977
## 10001    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1978
## 10002    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1979
## 10003    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1980
## 10004    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1981
## 10005    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1982
## 10006    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1983
## 10007    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1984
## 10008    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1985
## 10009    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1986
## 10010    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1987
## 10011    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1988
## 10012    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1989
## 10013    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1990
## 10014    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1991
## 10015    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1992
## 10016    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1993
## 10017    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1994
## 10018    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1995
## 10019    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1996
## 10020    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1997
## 10021    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1998
## 10022    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 1999
## 10023    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2000
## 10024    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2001
## 10025    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2002
## 10026    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2003
## 10027    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2004
## 10028    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2005
## 10029    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2006
## 10030    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2007
## 10031    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2008
## 10032    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2009
## 10033    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2010
## 10034    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2011
## 10035    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2012
## 10036    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2013
## 10037    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2014
## 10038    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2015
## 10039    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2016
## 10040    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2017
## 10041    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2018
## 10042    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2019
## 10043    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2020
## 10044    Middle East & North Africa (IDA & IBRD countries)    T3   TMN 2021
## 10045                                        Middle income    XP   MIC 1960
## 10046                                        Middle income    XP   MIC 1961
## 10047                                        Middle income    XP   MIC 1962
## 10048                                        Middle income    XP   MIC 1963
## 10049                                        Middle income    XP   MIC 1964
## 10050                                        Middle income    XP   MIC 1965
## 10051                                        Middle income    XP   MIC 1966
## 10052                                        Middle income    XP   MIC 1967
## 10053                                        Middle income    XP   MIC 1968
## 10054                                        Middle income    XP   MIC 1969
## 10055                                        Middle income    XP   MIC 1970
## 10056                                        Middle income    XP   MIC 1971
## 10057                                        Middle income    XP   MIC 1972
## 10058                                        Middle income    XP   MIC 1973
## 10059                                        Middle income    XP   MIC 1974
## 10060                                        Middle income    XP   MIC 1975
## 10061                                        Middle income    XP   MIC 1976
## 10062                                        Middle income    XP   MIC 1977
## 10063                                        Middle income    XP   MIC 1978
## 10064                                        Middle income    XP   MIC 1979
## 10065                                        Middle income    XP   MIC 1980
## 10066                                        Middle income    XP   MIC 1981
## 10067                                        Middle income    XP   MIC 1982
## 10068                                        Middle income    XP   MIC 1983
## 10069                                        Middle income    XP   MIC 1984
## 10070                                        Middle income    XP   MIC 1985
## 10071                                        Middle income    XP   MIC 1986
## 10072                                        Middle income    XP   MIC 1987
## 10073                                        Middle income    XP   MIC 1988
## 10074                                        Middle income    XP   MIC 1989
## 10075                                        Middle income    XP   MIC 1990
## 10076                                        Middle income    XP   MIC 1991
## 10077                                        Middle income    XP   MIC 1992
## 10078                                        Middle income    XP   MIC 1993
## 10079                                        Middle income    XP   MIC 1994
## 10080                                        Middle income    XP   MIC 1995
## 10081                                        Middle income    XP   MIC 1996
## 10082                                        Middle income    XP   MIC 1997
## 10083                                        Middle income    XP   MIC 1998
## 10084                                        Middle income    XP   MIC 1999
## 10085                                        Middle income    XP   MIC 2000
## 10086                                        Middle income    XP   MIC 2001
## 10087                                        Middle income    XP   MIC 2002
## 10088                                        Middle income    XP   MIC 2003
## 10089                                        Middle income    XP   MIC 2004
## 10090                                        Middle income    XP   MIC 2005
## 10091                                        Middle income    XP   MIC 2006
## 10092                                        Middle income    XP   MIC 2007
## 10093                                        Middle income    XP   MIC 2008
## 10094                                        Middle income    XP   MIC 2009
## 10095                                        Middle income    XP   MIC 2010
## 10096                                        Middle income    XP   MIC 2011
## 10097                                        Middle income    XP   MIC 2012
## 10098                                        Middle income    XP   MIC 2013
## 10099                                        Middle income    XP   MIC 2014
## 10100                                        Middle income    XP   MIC 2015
## 10101                                        Middle income    XP   MIC 2016
## 10102                                        Middle income    XP   MIC 2017
## 10103                                        Middle income    XP   MIC 2018
## 10104                                        Middle income    XP   MIC 2019
## 10105                                        Middle income    XP   MIC 2020
## 10106                                        Middle income    XP   MIC 2021
## 10107                                              Moldova    MD   MDA 1960
## 10108                                              Moldova    MD   MDA 1961
## 10109                                              Moldova    MD   MDA 1962
## 10110                                              Moldova    MD   MDA 1963
## 10111                                              Moldova    MD   MDA 1964
## 10112                                              Moldova    MD   MDA 1965
## 10113                                              Moldova    MD   MDA 1966
## 10114                                              Moldova    MD   MDA 1967
## 10115                                              Moldova    MD   MDA 1968
## 10116                                              Moldova    MD   MDA 1969
## 10117                                              Moldova    MD   MDA 1970
## 10118                                              Moldova    MD   MDA 1971
## 10119                                              Moldova    MD   MDA 1972
## 10120                                              Moldova    MD   MDA 1973
## 10121                                              Moldova    MD   MDA 1974
## 10122                                              Moldova    MD   MDA 1975
## 10123                                              Moldova    MD   MDA 1976
## 10124                                              Moldova    MD   MDA 1977
## 10125                                              Moldova    MD   MDA 1978
## 10126                                              Moldova    MD   MDA 1979
## 10127                                              Moldova    MD   MDA 1980
## 10128                                              Moldova    MD   MDA 1981
## 10129                                              Moldova    MD   MDA 1982
## 10130                                              Moldova    MD   MDA 1983
## 10131                                              Moldova    MD   MDA 1984
## 10132                                              Moldova    MD   MDA 1985
## 10133                                              Moldova    MD   MDA 1986
## 10134                                              Moldova    MD   MDA 1987
## 10135                                              Moldova    MD   MDA 1988
## 10136                                              Moldova    MD   MDA 1989
## 10137                                              Moldova    MD   MDA 1990
## 10138                                              Moldova    MD   MDA 1991
## 10139                                              Moldova    MD   MDA 1992
## 10140                                              Moldova    MD   MDA 1993
## 10141                                              Moldova    MD   MDA 1994
## 10142                                              Moldova    MD   MDA 1995
## 10143                                              Moldova    MD   MDA 1996
## 10144                                              Moldova    MD   MDA 1997
## 10145                                              Moldova    MD   MDA 1998
## 10146                                              Moldova    MD   MDA 1999
## 10147                                              Moldova    MD   MDA 2000
## 10148                                              Moldova    MD   MDA 2001
## 10149                                              Moldova    MD   MDA 2002
## 10150                                              Moldova    MD   MDA 2003
## 10151                                              Moldova    MD   MDA 2004
## 10152                                              Moldova    MD   MDA 2005
## 10153                                              Moldova    MD   MDA 2006
## 10154                                              Moldova    MD   MDA 2007
## 10155                                              Moldova    MD   MDA 2008
## 10156                                              Moldova    MD   MDA 2009
## 10157                                              Moldova    MD   MDA 2010
## 10158                                              Moldova    MD   MDA 2011
## 10159                                              Moldova    MD   MDA 2012
## 10160                                              Moldova    MD   MDA 2013
## 10161                                              Moldova    MD   MDA 2014
## 10162                                              Moldova    MD   MDA 2015
## 10163                                              Moldova    MD   MDA 2016
## 10164                                              Moldova    MD   MDA 2017
## 10165                                              Moldova    MD   MDA 2018
## 10166                                              Moldova    MD   MDA 2019
## 10167                                              Moldova    MD   MDA 2020
## 10168                                              Moldova    MD   MDA 2021
## 10169                                               Monaco    MC   MCO 1960
## 10170                                               Monaco    MC   MCO 1961
## 10171                                               Monaco    MC   MCO 1962
## 10172                                               Monaco    MC   MCO 1963
## 10173                                               Monaco    MC   MCO 1964
## 10174                                               Monaco    MC   MCO 1965
## 10175                                               Monaco    MC   MCO 1966
## 10176                                               Monaco    MC   MCO 1967
## 10177                                               Monaco    MC   MCO 1968
## 10178                                               Monaco    MC   MCO 1969
## 10179                                               Monaco    MC   MCO 1970
## 10180                                               Monaco    MC   MCO 1971
## 10181                                               Monaco    MC   MCO 1972
## 10182                                               Monaco    MC   MCO 1973
## 10183                                               Monaco    MC   MCO 1974
## 10184                                               Monaco    MC   MCO 1975
## 10185                                               Monaco    MC   MCO 1976
## 10186                                               Monaco    MC   MCO 1977
## 10187                                               Monaco    MC   MCO 1978
## 10188                                               Monaco    MC   MCO 1979
## 10189                                               Monaco    MC   MCO 1980
## 10190                                               Monaco    MC   MCO 1981
## 10191                                               Monaco    MC   MCO 1982
## 10192                                               Monaco    MC   MCO 1983
## 10193                                               Monaco    MC   MCO 1984
## 10194                                               Monaco    MC   MCO 1985
## 10195                                               Monaco    MC   MCO 1986
## 10196                                               Monaco    MC   MCO 1987
## 10197                                               Monaco    MC   MCO 1988
## 10198                                               Monaco    MC   MCO 1989
## 10199                                               Monaco    MC   MCO 1990
## 10200                                               Monaco    MC   MCO 1991
## 10201                                               Monaco    MC   MCO 1992
## 10202                                               Monaco    MC   MCO 1993
## 10203                                               Monaco    MC   MCO 1994
## 10204                                               Monaco    MC   MCO 1995
## 10205                                               Monaco    MC   MCO 1996
## 10206                                               Monaco    MC   MCO 1997
## 10207                                               Monaco    MC   MCO 1998
## 10208                                               Monaco    MC   MCO 1999
## 10209                                               Monaco    MC   MCO 2000
## 10210                                               Monaco    MC   MCO 2001
## 10211                                               Monaco    MC   MCO 2002
## 10212                                               Monaco    MC   MCO 2003
## 10213                                               Monaco    MC   MCO 2004
## 10214                                               Monaco    MC   MCO 2005
## 10215                                               Monaco    MC   MCO 2006
## 10216                                               Monaco    MC   MCO 2007
## 10217                                               Monaco    MC   MCO 2008
## 10218                                               Monaco    MC   MCO 2009
## 10219                                               Monaco    MC   MCO 2010
## 10220                                               Monaco    MC   MCO 2011
## 10221                                               Monaco    MC   MCO 2012
## 10222                                               Monaco    MC   MCO 2013
## 10223                                               Monaco    MC   MCO 2014
## 10224                                               Monaco    MC   MCO 2015
## 10225                                               Monaco    MC   MCO 2016
## 10226                                               Monaco    MC   MCO 2017
## 10227                                               Monaco    MC   MCO 2018
## 10228                                               Monaco    MC   MCO 2019
## 10229                                               Monaco    MC   MCO 2020
## 10230                                               Monaco    MC   MCO 2021
## 10231                                             Mongolia    MN   MNG 1960
## 10232                                             Mongolia    MN   MNG 1961
## 10233                                             Mongolia    MN   MNG 1962
## 10234                                             Mongolia    MN   MNG 1963
## 10235                                             Mongolia    MN   MNG 1964
## 10236                                             Mongolia    MN   MNG 1965
## 10237                                             Mongolia    MN   MNG 1966
## 10238                                             Mongolia    MN   MNG 1967
## 10239                                             Mongolia    MN   MNG 1968
## 10240                                             Mongolia    MN   MNG 1969
## 10241                                             Mongolia    MN   MNG 1970
## 10242                                             Mongolia    MN   MNG 1971
## 10243                                             Mongolia    MN   MNG 1972
## 10244                                             Mongolia    MN   MNG 1973
## 10245                                             Mongolia    MN   MNG 1974
## 10246                                             Mongolia    MN   MNG 1975
## 10247                                             Mongolia    MN   MNG 1976
## 10248                                             Mongolia    MN   MNG 1977
## 10249                                             Mongolia    MN   MNG 1978
## 10250                                             Mongolia    MN   MNG 1979
## 10251                                             Mongolia    MN   MNG 1980
## 10252                                             Mongolia    MN   MNG 1981
## 10253                                             Mongolia    MN   MNG 1982
## 10254                                             Mongolia    MN   MNG 1983
## 10255                                             Mongolia    MN   MNG 1984
## 10256                                             Mongolia    MN   MNG 1985
## 10257                                             Mongolia    MN   MNG 1986
## 10258                                             Mongolia    MN   MNG 1987
## 10259                                             Mongolia    MN   MNG 1988
## 10260                                             Mongolia    MN   MNG 1989
## 10261                                             Mongolia    MN   MNG 1990
## 10262                                             Mongolia    MN   MNG 1991
## 10263                                             Mongolia    MN   MNG 1992
## 10264                                             Mongolia    MN   MNG 1993
## 10265                                             Mongolia    MN   MNG 1994
## 10266                                             Mongolia    MN   MNG 1995
## 10267                                             Mongolia    MN   MNG 1996
## 10268                                             Mongolia    MN   MNG 1997
## 10269                                             Mongolia    MN   MNG 1998
## 10270                                             Mongolia    MN   MNG 1999
## 10271                                             Mongolia    MN   MNG 2000
## 10272                                             Mongolia    MN   MNG 2001
## 10273                                             Mongolia    MN   MNG 2002
## 10274                                             Mongolia    MN   MNG 2003
## 10275                                             Mongolia    MN   MNG 2004
## 10276                                             Mongolia    MN   MNG 2005
## 10277                                             Mongolia    MN   MNG 2006
## 10278                                             Mongolia    MN   MNG 2007
## 10279                                             Mongolia    MN   MNG 2008
## 10280                                             Mongolia    MN   MNG 2009
## 10281                                             Mongolia    MN   MNG 2010
## 10282                                             Mongolia    MN   MNG 2011
## 10283                                             Mongolia    MN   MNG 2012
## 10284                                             Mongolia    MN   MNG 2013
## 10285                                             Mongolia    MN   MNG 2014
## 10286                                             Mongolia    MN   MNG 2015
## 10287                                             Mongolia    MN   MNG 2016
## 10288                                             Mongolia    MN   MNG 2017
## 10289                                             Mongolia    MN   MNG 2018
## 10290                                             Mongolia    MN   MNG 2019
## 10291                                             Mongolia    MN   MNG 2020
## 10292                                             Mongolia    MN   MNG 2021
## 10293                                           Montenegro    ME   MNE 1960
## 10294                                           Montenegro    ME   MNE 1961
## 10295                                           Montenegro    ME   MNE 1962
## 10296                                           Montenegro    ME   MNE 1963
## 10297                                           Montenegro    ME   MNE 1964
## 10298                                           Montenegro    ME   MNE 1965
## 10299                                           Montenegro    ME   MNE 1966
## 10300                                           Montenegro    ME   MNE 1967
## 10301                                           Montenegro    ME   MNE 1968
## 10302                                           Montenegro    ME   MNE 1969
## 10303                                           Montenegro    ME   MNE 1970
## 10304                                           Montenegro    ME   MNE 1971
## 10305                                           Montenegro    ME   MNE 1972
## 10306                                           Montenegro    ME   MNE 1973
## 10307                                           Montenegro    ME   MNE 1974
## 10308                                           Montenegro    ME   MNE 1975
## 10309                                           Montenegro    ME   MNE 1976
## 10310                                           Montenegro    ME   MNE 1977
## 10311                                           Montenegro    ME   MNE 1978
## 10312                                           Montenegro    ME   MNE 1979
## 10313                                           Montenegro    ME   MNE 1980
## 10314                                           Montenegro    ME   MNE 1981
## 10315                                           Montenegro    ME   MNE 1982
## 10316                                           Montenegro    ME   MNE 1983
## 10317                                           Montenegro    ME   MNE 1984
## 10318                                           Montenegro    ME   MNE 1985
## 10319                                           Montenegro    ME   MNE 1986
## 10320                                           Montenegro    ME   MNE 1987
## 10321                                           Montenegro    ME   MNE 1988
## 10322                                           Montenegro    ME   MNE 1989
## 10323                                           Montenegro    ME   MNE 1990
## 10324                                           Montenegro    ME   MNE 1991
## 10325                                           Montenegro    ME   MNE 1992
## 10326                                           Montenegro    ME   MNE 1993
## 10327                                           Montenegro    ME   MNE 1994
## 10328                                           Montenegro    ME   MNE 1995
## 10329                                           Montenegro    ME   MNE 1996
## 10330                                           Montenegro    ME   MNE 1997
## 10331                                           Montenegro    ME   MNE 1998
## 10332                                           Montenegro    ME   MNE 1999
## 10333                                           Montenegro    ME   MNE 2000
## 10334                                           Montenegro    ME   MNE 2001
## 10335                                           Montenegro    ME   MNE 2002
## 10336                                           Montenegro    ME   MNE 2003
## 10337                                           Montenegro    ME   MNE 2004
## 10338                                           Montenegro    ME   MNE 2005
## 10339                                           Montenegro    ME   MNE 2006
## 10340                                           Montenegro    ME   MNE 2007
## 10341                                           Montenegro    ME   MNE 2008
## 10342                                           Montenegro    ME   MNE 2009
## 10343                                           Montenegro    ME   MNE 2010
## 10344                                           Montenegro    ME   MNE 2011
## 10345                                           Montenegro    ME   MNE 2012
## 10346                                           Montenegro    ME   MNE 2013
## 10347                                           Montenegro    ME   MNE 2014
## 10348                                           Montenegro    ME   MNE 2015
## 10349                                           Montenegro    ME   MNE 2016
## 10350                                           Montenegro    ME   MNE 2017
## 10351                                           Montenegro    ME   MNE 2018
## 10352                                           Montenegro    ME   MNE 2019
## 10353                                           Montenegro    ME   MNE 2020
## 10354                                           Montenegro    ME   MNE 2021
## 10355                                              Morocco    MA   MAR 1960
## 10356                                              Morocco    MA   MAR 1961
## 10357                                              Morocco    MA   MAR 1962
## 10358                                              Morocco    MA   MAR 1963
## 10359                                              Morocco    MA   MAR 1964
## 10360                                              Morocco    MA   MAR 1965
## 10361                                              Morocco    MA   MAR 1966
## 10362                                              Morocco    MA   MAR 1967
## 10363                                              Morocco    MA   MAR 1968
## 10364                                              Morocco    MA   MAR 1969
## 10365                                              Morocco    MA   MAR 1970
## 10366                                              Morocco    MA   MAR 1971
## 10367                                              Morocco    MA   MAR 1972
## 10368                                              Morocco    MA   MAR 1973
## 10369                                              Morocco    MA   MAR 1974
## 10370                                              Morocco    MA   MAR 1975
## 10371                                              Morocco    MA   MAR 1976
## 10372                                              Morocco    MA   MAR 1977
## 10373                                              Morocco    MA   MAR 1978
## 10374                                              Morocco    MA   MAR 1979
## 10375                                              Morocco    MA   MAR 1980
## 10376                                              Morocco    MA   MAR 1981
## 10377                                              Morocco    MA   MAR 1982
## 10378                                              Morocco    MA   MAR 1983
## 10379                                              Morocco    MA   MAR 1984
## 10380                                              Morocco    MA   MAR 1985
## 10381                                              Morocco    MA   MAR 1986
## 10382                                              Morocco    MA   MAR 1987
## 10383                                              Morocco    MA   MAR 1988
## 10384                                              Morocco    MA   MAR 1989
## 10385                                              Morocco    MA   MAR 1990
## 10386                                              Morocco    MA   MAR 1991
## 10387                                              Morocco    MA   MAR 1992
## 10388                                              Morocco    MA   MAR 1993
## 10389                                              Morocco    MA   MAR 1994
## 10390                                              Morocco    MA   MAR 1995
## 10391                                              Morocco    MA   MAR 1996
## 10392                                              Morocco    MA   MAR 1997
## 10393                                              Morocco    MA   MAR 1998
## 10394                                              Morocco    MA   MAR 1999
## 10395                                              Morocco    MA   MAR 2000
## 10396                                              Morocco    MA   MAR 2001
## 10397                                              Morocco    MA   MAR 2002
## 10398                                              Morocco    MA   MAR 2003
## 10399                                              Morocco    MA   MAR 2004
## 10400                                              Morocco    MA   MAR 2005
## 10401                                              Morocco    MA   MAR 2006
## 10402                                              Morocco    MA   MAR 2007
## 10403                                              Morocco    MA   MAR 2008
## 10404                                              Morocco    MA   MAR 2009
## 10405                                              Morocco    MA   MAR 2010
## 10406                                              Morocco    MA   MAR 2011
## 10407                                              Morocco    MA   MAR 2012
## 10408                                              Morocco    MA   MAR 2013
## 10409                                              Morocco    MA   MAR 2014
## 10410                                              Morocco    MA   MAR 2015
## 10411                                              Morocco    MA   MAR 2016
## 10412                                              Morocco    MA   MAR 2017
## 10413                                              Morocco    MA   MAR 2018
## 10414                                              Morocco    MA   MAR 2019
## 10415                                              Morocco    MA   MAR 2020
## 10416                                              Morocco    MA   MAR 2021
## 10417                                           Mozambique    MZ   MOZ 1960
## 10418                                           Mozambique    MZ   MOZ 1961
## 10419                                           Mozambique    MZ   MOZ 1962
## 10420                                           Mozambique    MZ   MOZ 1963
## 10421                                           Mozambique    MZ   MOZ 1964
## 10422                                           Mozambique    MZ   MOZ 1965
## 10423                                           Mozambique    MZ   MOZ 1966
## 10424                                           Mozambique    MZ   MOZ 1967
## 10425                                           Mozambique    MZ   MOZ 1968
## 10426                                           Mozambique    MZ   MOZ 1969
## 10427                                           Mozambique    MZ   MOZ 1970
## 10428                                           Mozambique    MZ   MOZ 1971
## 10429                                           Mozambique    MZ   MOZ 1972
## 10430                                           Mozambique    MZ   MOZ 1973
## 10431                                           Mozambique    MZ   MOZ 1974
## 10432                                           Mozambique    MZ   MOZ 1975
## 10433                                           Mozambique    MZ   MOZ 1976
## 10434                                           Mozambique    MZ   MOZ 1977
## 10435                                           Mozambique    MZ   MOZ 1978
## 10436                                           Mozambique    MZ   MOZ 1979
## 10437                                           Mozambique    MZ   MOZ 1980
## 10438                                           Mozambique    MZ   MOZ 1981
## 10439                                           Mozambique    MZ   MOZ 1982
## 10440                                           Mozambique    MZ   MOZ 1983
## 10441                                           Mozambique    MZ   MOZ 1984
## 10442                                           Mozambique    MZ   MOZ 1985
## 10443                                           Mozambique    MZ   MOZ 1986
## 10444                                           Mozambique    MZ   MOZ 1987
## 10445                                           Mozambique    MZ   MOZ 1988
## 10446                                           Mozambique    MZ   MOZ 1989
## 10447                                           Mozambique    MZ   MOZ 1990
## 10448                                           Mozambique    MZ   MOZ 1991
## 10449                                           Mozambique    MZ   MOZ 1992
## 10450                                           Mozambique    MZ   MOZ 1993
## 10451                                           Mozambique    MZ   MOZ 1994
## 10452                                           Mozambique    MZ   MOZ 1995
## 10453                                           Mozambique    MZ   MOZ 1996
## 10454                                           Mozambique    MZ   MOZ 1997
## 10455                                           Mozambique    MZ   MOZ 1998
## 10456                                           Mozambique    MZ   MOZ 1999
## 10457                                           Mozambique    MZ   MOZ 2000
## 10458                                           Mozambique    MZ   MOZ 2001
## 10459                                           Mozambique    MZ   MOZ 2002
## 10460                                           Mozambique    MZ   MOZ 2003
## 10461                                           Mozambique    MZ   MOZ 2004
## 10462                                           Mozambique    MZ   MOZ 2005
## 10463                                           Mozambique    MZ   MOZ 2006
## 10464                                           Mozambique    MZ   MOZ 2007
## 10465                                           Mozambique    MZ   MOZ 2008
## 10466                                           Mozambique    MZ   MOZ 2009
## 10467                                           Mozambique    MZ   MOZ 2010
## 10468                                           Mozambique    MZ   MOZ 2011
## 10469                                           Mozambique    MZ   MOZ 2012
## 10470                                           Mozambique    MZ   MOZ 2013
## 10471                                           Mozambique    MZ   MOZ 2014
## 10472                                           Mozambique    MZ   MOZ 2015
## 10473                                           Mozambique    MZ   MOZ 2016
## 10474                                           Mozambique    MZ   MOZ 2017
## 10475                                           Mozambique    MZ   MOZ 2018
## 10476                                           Mozambique    MZ   MOZ 2019
## 10477                                           Mozambique    MZ   MOZ 2020
## 10478                                           Mozambique    MZ   MOZ 2021
## 10479                                              Myanmar    MM   MMR 1960
## 10480                                              Myanmar    MM   MMR 1961
## 10481                                              Myanmar    MM   MMR 1962
## 10482                                              Myanmar    MM   MMR 1963
## 10483                                              Myanmar    MM   MMR 1964
## 10484                                              Myanmar    MM   MMR 1965
## 10485                                              Myanmar    MM   MMR 1966
## 10486                                              Myanmar    MM   MMR 1967
## 10487                                              Myanmar    MM   MMR 1968
## 10488                                              Myanmar    MM   MMR 1969
## 10489                                              Myanmar    MM   MMR 1970
## 10490                                              Myanmar    MM   MMR 1971
## 10491                                              Myanmar    MM   MMR 1972
## 10492                                              Myanmar    MM   MMR 1973
## 10493                                              Myanmar    MM   MMR 1974
## 10494                                              Myanmar    MM   MMR 1975
## 10495                                              Myanmar    MM   MMR 1976
## 10496                                              Myanmar    MM   MMR 1977
## 10497                                              Myanmar    MM   MMR 1978
## 10498                                              Myanmar    MM   MMR 1979
## 10499                                              Myanmar    MM   MMR 1980
## 10500                                              Myanmar    MM   MMR 1981
## 10501                                              Myanmar    MM   MMR 1982
## 10502                                              Myanmar    MM   MMR 1983
## 10503                                              Myanmar    MM   MMR 1984
## 10504                                              Myanmar    MM   MMR 1985
## 10505                                              Myanmar    MM   MMR 1986
## 10506                                              Myanmar    MM   MMR 1987
## 10507                                              Myanmar    MM   MMR 1988
## 10508                                              Myanmar    MM   MMR 1989
## 10509                                              Myanmar    MM   MMR 1990
## 10510                                              Myanmar    MM   MMR 1991
## 10511                                              Myanmar    MM   MMR 1992
## 10512                                              Myanmar    MM   MMR 1993
## 10513                                              Myanmar    MM   MMR 1994
## 10514                                              Myanmar    MM   MMR 1995
## 10515                                              Myanmar    MM   MMR 1996
## 10516                                              Myanmar    MM   MMR 1997
## 10517                                              Myanmar    MM   MMR 1998
## 10518                                              Myanmar    MM   MMR 1999
## 10519                                              Myanmar    MM   MMR 2000
## 10520                                              Myanmar    MM   MMR 2001
## 10521                                              Myanmar    MM   MMR 2002
## 10522                                              Myanmar    MM   MMR 2003
## 10523                                              Myanmar    MM   MMR 2004
## 10524                                              Myanmar    MM   MMR 2005
## 10525                                              Myanmar    MM   MMR 2006
## 10526                                              Myanmar    MM   MMR 2007
## 10527                                              Myanmar    MM   MMR 2008
## 10528                                              Myanmar    MM   MMR 2009
## 10529                                              Myanmar    MM   MMR 2010
## 10530                                              Myanmar    MM   MMR 2011
## 10531                                              Myanmar    MM   MMR 2012
## 10532                                              Myanmar    MM   MMR 2013
## 10533                                              Myanmar    MM   MMR 2014
## 10534                                              Myanmar    MM   MMR 2015
## 10535                                              Myanmar    MM   MMR 2016
## 10536                                              Myanmar    MM   MMR 2017
## 10537                                              Myanmar    MM   MMR 2018
## 10538                                              Myanmar    MM   MMR 2019
## 10539                                              Myanmar    MM   MMR 2020
## 10540                                              Myanmar    MM   MMR 2021
## 10541                                              Namibia    NA   NAM 1960
## 10542                                              Namibia    NA   NAM 1961
## 10543                                              Namibia    NA   NAM 1962
## 10544                                              Namibia    NA   NAM 1963
## 10545                                              Namibia    NA   NAM 1964
## 10546                                              Namibia    NA   NAM 1965
## 10547                                              Namibia    NA   NAM 1966
## 10548                                              Namibia    NA   NAM 1967
## 10549                                              Namibia    NA   NAM 1968
## 10550                                              Namibia    NA   NAM 1969
## 10551                                              Namibia    NA   NAM 1970
## 10552                                              Namibia    NA   NAM 1971
## 10553                                              Namibia    NA   NAM 1972
## 10554                                              Namibia    NA   NAM 1973
## 10555                                              Namibia    NA   NAM 1974
## 10556                                              Namibia    NA   NAM 1975
## 10557                                              Namibia    NA   NAM 1976
## 10558                                              Namibia    NA   NAM 1977
## 10559                                              Namibia    NA   NAM 1978
## 10560                                              Namibia    NA   NAM 1979
## 10561                                              Namibia    NA   NAM 1980
## 10562                                              Namibia    NA   NAM 1981
## 10563                                              Namibia    NA   NAM 1982
## 10564                                              Namibia    NA   NAM 1983
## 10565                                              Namibia    NA   NAM 1984
## 10566                                              Namibia    NA   NAM 1985
## 10567                                              Namibia    NA   NAM 1986
## 10568                                              Namibia    NA   NAM 1987
## 10569                                              Namibia    NA   NAM 1988
## 10570                                              Namibia    NA   NAM 1989
## 10571                                              Namibia    NA   NAM 1990
## 10572                                              Namibia    NA   NAM 1991
## 10573                                              Namibia    NA   NAM 1992
## 10574                                              Namibia    NA   NAM 1993
## 10575                                              Namibia    NA   NAM 1994
## 10576                                              Namibia    NA   NAM 1995
## 10577                                              Namibia    NA   NAM 1996
## 10578                                              Namibia    NA   NAM 1997
## 10579                                              Namibia    NA   NAM 1998
## 10580                                              Namibia    NA   NAM 1999
## 10581                                              Namibia    NA   NAM 2000
## 10582                                              Namibia    NA   NAM 2001
## 10583                                              Namibia    NA   NAM 2002
## 10584                                              Namibia    NA   NAM 2003
## 10585                                              Namibia    NA   NAM 2004
## 10586                                              Namibia    NA   NAM 2005
## 10587                                              Namibia    NA   NAM 2006
## 10588                                              Namibia    NA   NAM 2007
## 10589                                              Namibia    NA   NAM 2008
## 10590                                              Namibia    NA   NAM 2009
## 10591                                              Namibia    NA   NAM 2010
## 10592                                              Namibia    NA   NAM 2011
## 10593                                              Namibia    NA   NAM 2012
## 10594                                              Namibia    NA   NAM 2013
## 10595                                              Namibia    NA   NAM 2014
## 10596                                              Namibia    NA   NAM 2015
## 10597                                              Namibia    NA   NAM 2016
## 10598                                              Namibia    NA   NAM 2017
## 10599                                              Namibia    NA   NAM 2018
## 10600                                              Namibia    NA   NAM 2019
## 10601                                              Namibia    NA   NAM 2020
## 10602                                              Namibia    NA   NAM 2021
## 10603                                                Nauru    NR   NRU 1960
## 10604                                                Nauru    NR   NRU 1961
## 10605                                                Nauru    NR   NRU 1962
## 10606                                                Nauru    NR   NRU 1963
## 10607                                                Nauru    NR   NRU 1964
## 10608                                                Nauru    NR   NRU 1965
## 10609                                                Nauru    NR   NRU 1966
## 10610                                                Nauru    NR   NRU 1967
## 10611                                                Nauru    NR   NRU 1968
## 10612                                                Nauru    NR   NRU 1969
## 10613                                                Nauru    NR   NRU 1970
## 10614                                                Nauru    NR   NRU 1971
## 10615                                                Nauru    NR   NRU 1972
## 10616                                                Nauru    NR   NRU 1973
## 10617                                                Nauru    NR   NRU 1974
## 10618                                                Nauru    NR   NRU 1975
## 10619                                                Nauru    NR   NRU 1976
## 10620                                                Nauru    NR   NRU 1977
## 10621                                                Nauru    NR   NRU 1978
## 10622                                                Nauru    NR   NRU 1979
## 10623                                                Nauru    NR   NRU 1980
## 10624                                                Nauru    NR   NRU 1981
## 10625                                                Nauru    NR   NRU 1982
## 10626                                                Nauru    NR   NRU 1983
## 10627                                                Nauru    NR   NRU 1984
## 10628                                                Nauru    NR   NRU 1985
## 10629                                                Nauru    NR   NRU 1986
## 10630                                                Nauru    NR   NRU 1987
## 10631                                                Nauru    NR   NRU 1988
## 10632                                                Nauru    NR   NRU 1989
## 10633                                                Nauru    NR   NRU 1990
## 10634                                                Nauru    NR   NRU 1991
## 10635                                                Nauru    NR   NRU 1992
## 10636                                                Nauru    NR   NRU 1993
## 10637                                                Nauru    NR   NRU 1994
## 10638                                                Nauru    NR   NRU 1995
## 10639                                                Nauru    NR   NRU 1996
## 10640                                                Nauru    NR   NRU 1997
## 10641                                                Nauru    NR   NRU 1998
## 10642                                                Nauru    NR   NRU 1999
## 10643                                                Nauru    NR   NRU 2000
## 10644                                                Nauru    NR   NRU 2001
## 10645                                                Nauru    NR   NRU 2002
## 10646                                                Nauru    NR   NRU 2003
## 10647                                                Nauru    NR   NRU 2004
## 10648                                                Nauru    NR   NRU 2005
## 10649                                                Nauru    NR   NRU 2006
## 10650                                                Nauru    NR   NRU 2007
## 10651                                                Nauru    NR   NRU 2008
## 10652                                                Nauru    NR   NRU 2009
## 10653                                                Nauru    NR   NRU 2010
## 10654                                                Nauru    NR   NRU 2011
## 10655                                                Nauru    NR   NRU 2012
## 10656                                                Nauru    NR   NRU 2013
## 10657                                                Nauru    NR   NRU 2014
## 10658                                                Nauru    NR   NRU 2015
## 10659                                                Nauru    NR   NRU 2016
## 10660                                                Nauru    NR   NRU 2017
## 10661                                                Nauru    NR   NRU 2018
## 10662                                                Nauru    NR   NRU 2019
## 10663                                                Nauru    NR   NRU 2020
## 10664                                                Nauru    NR   NRU 2021
## 10665                                                Nepal    NP   NPL 1960
## 10666                                                Nepal    NP   NPL 1961
## 10667                                                Nepal    NP   NPL 1962
## 10668                                                Nepal    NP   NPL 1963
## 10669                                                Nepal    NP   NPL 1964
## 10670                                                Nepal    NP   NPL 1965
## 10671                                                Nepal    NP   NPL 1966
## 10672                                                Nepal    NP   NPL 1967
## 10673                                                Nepal    NP   NPL 1968
## 10674                                                Nepal    NP   NPL 1969
## 10675                                                Nepal    NP   NPL 1970
## 10676                                                Nepal    NP   NPL 1971
## 10677                                                Nepal    NP   NPL 1972
## 10678                                                Nepal    NP   NPL 1973
## 10679                                                Nepal    NP   NPL 1974
## 10680                                                Nepal    NP   NPL 1975
## 10681                                                Nepal    NP   NPL 1976
## 10682                                                Nepal    NP   NPL 1977
## 10683                                                Nepal    NP   NPL 1978
## 10684                                                Nepal    NP   NPL 1979
## 10685                                                Nepal    NP   NPL 1980
## 10686                                                Nepal    NP   NPL 1981
## 10687                                                Nepal    NP   NPL 1982
## 10688                                                Nepal    NP   NPL 1983
## 10689                                                Nepal    NP   NPL 1984
## 10690                                                Nepal    NP   NPL 1985
## 10691                                                Nepal    NP   NPL 1986
## 10692                                                Nepal    NP   NPL 1987
## 10693                                                Nepal    NP   NPL 1988
## 10694                                                Nepal    NP   NPL 1989
## 10695                                                Nepal    NP   NPL 1990
## 10696                                                Nepal    NP   NPL 1991
## 10697                                                Nepal    NP   NPL 1992
## 10698                                                Nepal    NP   NPL 1993
## 10699                                                Nepal    NP   NPL 1994
## 10700                                                Nepal    NP   NPL 1995
## 10701                                                Nepal    NP   NPL 1996
## 10702                                                Nepal    NP   NPL 1997
## 10703                                                Nepal    NP   NPL 1998
## 10704                                                Nepal    NP   NPL 1999
## 10705                                                Nepal    NP   NPL 2000
## 10706                                                Nepal    NP   NPL 2001
## 10707                                                Nepal    NP   NPL 2002
## 10708                                                Nepal    NP   NPL 2003
## 10709                                                Nepal    NP   NPL 2004
## 10710                                                Nepal    NP   NPL 2005
## 10711                                                Nepal    NP   NPL 2006
## 10712                                                Nepal    NP   NPL 2007
## 10713                                                Nepal    NP   NPL 2008
## 10714                                                Nepal    NP   NPL 2009
## 10715                                                Nepal    NP   NPL 2010
## 10716                                                Nepal    NP   NPL 2011
## 10717                                                Nepal    NP   NPL 2012
## 10718                                                Nepal    NP   NPL 2013
## 10719                                                Nepal    NP   NPL 2014
## 10720                                                Nepal    NP   NPL 2015
## 10721                                                Nepal    NP   NPL 2016
## 10722                                                Nepal    NP   NPL 2017
## 10723                                                Nepal    NP   NPL 2018
## 10724                                                Nepal    NP   NPL 2019
## 10725                                                Nepal    NP   NPL 2020
## 10726                                                Nepal    NP   NPL 2021
## 10727                                          Netherlands    NL   NLD 1960
## 10728                                          Netherlands    NL   NLD 1961
## 10729                                          Netherlands    NL   NLD 1962
## 10730                                          Netherlands    NL   NLD 1963
## 10731                                          Netherlands    NL   NLD 1964
## 10732                                          Netherlands    NL   NLD 1965
## 10733                                          Netherlands    NL   NLD 1966
## 10734                                          Netherlands    NL   NLD 1967
## 10735                                          Netherlands    NL   NLD 1968
## 10736                                          Netherlands    NL   NLD 1969
## 10737                                          Netherlands    NL   NLD 1970
## 10738                                          Netherlands    NL   NLD 1971
## 10739                                          Netherlands    NL   NLD 1972
## 10740                                          Netherlands    NL   NLD 1973
## 10741                                          Netherlands    NL   NLD 1974
## 10742                                          Netherlands    NL   NLD 1975
## 10743                                          Netherlands    NL   NLD 1976
## 10744                                          Netherlands    NL   NLD 1977
## 10745                                          Netherlands    NL   NLD 1978
## 10746                                          Netherlands    NL   NLD 1979
## 10747                                          Netherlands    NL   NLD 1980
## 10748                                          Netherlands    NL   NLD 1981
## 10749                                          Netherlands    NL   NLD 1982
## 10750                                          Netherlands    NL   NLD 1983
## 10751                                          Netherlands    NL   NLD 1984
## 10752                                          Netherlands    NL   NLD 1985
## 10753                                          Netherlands    NL   NLD 1986
## 10754                                          Netherlands    NL   NLD 1987
## 10755                                          Netherlands    NL   NLD 1988
## 10756                                          Netherlands    NL   NLD 1989
## 10757                                          Netherlands    NL   NLD 1990
## 10758                                          Netherlands    NL   NLD 1991
## 10759                                          Netherlands    NL   NLD 1992
## 10760                                          Netherlands    NL   NLD 1993
## 10761                                          Netherlands    NL   NLD 1994
## 10762                                          Netherlands    NL   NLD 1995
## 10763                                          Netherlands    NL   NLD 1996
## 10764                                          Netherlands    NL   NLD 1997
## 10765                                          Netherlands    NL   NLD 1998
## 10766                                          Netherlands    NL   NLD 1999
## 10767                                          Netherlands    NL   NLD 2000
## 10768                                          Netherlands    NL   NLD 2001
## 10769                                          Netherlands    NL   NLD 2002
## 10770                                          Netherlands    NL   NLD 2003
## 10771                                          Netherlands    NL   NLD 2004
## 10772                                          Netherlands    NL   NLD 2005
## 10773                                          Netherlands    NL   NLD 2006
## 10774                                          Netherlands    NL   NLD 2007
## 10775                                          Netherlands    NL   NLD 2008
## 10776                                          Netherlands    NL   NLD 2009
## 10777                                          Netherlands    NL   NLD 2010
## 10778                                          Netherlands    NL   NLD 2011
## 10779                                          Netherlands    NL   NLD 2012
## 10780                                          Netherlands    NL   NLD 2013
## 10781                                          Netherlands    NL   NLD 2014
## 10782                                          Netherlands    NL   NLD 2015
## 10783                                          Netherlands    NL   NLD 2016
## 10784                                          Netherlands    NL   NLD 2017
## 10785                                          Netherlands    NL   NLD 2018
## 10786                                          Netherlands    NL   NLD 2019
## 10787                                          Netherlands    NL   NLD 2020
## 10788                                          Netherlands    NL   NLD 2021
## 10789                                        New Caledonia    NC   NCL 1960
## 10790                                        New Caledonia    NC   NCL 1961
## 10791                                        New Caledonia    NC   NCL 1962
## 10792                                        New Caledonia    NC   NCL 1963
## 10793                                        New Caledonia    NC   NCL 1964
## 10794                                        New Caledonia    NC   NCL 1965
## 10795                                        New Caledonia    NC   NCL 1966
## 10796                                        New Caledonia    NC   NCL 1967
## 10797                                        New Caledonia    NC   NCL 1968
## 10798                                        New Caledonia    NC   NCL 1969
## 10799                                        New Caledonia    NC   NCL 1970
## 10800                                        New Caledonia    NC   NCL 1971
## 10801                                        New Caledonia    NC   NCL 1972
## 10802                                        New Caledonia    NC   NCL 1973
## 10803                                        New Caledonia    NC   NCL 1974
## 10804                                        New Caledonia    NC   NCL 1975
## 10805                                        New Caledonia    NC   NCL 1976
## 10806                                        New Caledonia    NC   NCL 1977
## 10807                                        New Caledonia    NC   NCL 1978
## 10808                                        New Caledonia    NC   NCL 1979
## 10809                                        New Caledonia    NC   NCL 1980
## 10810                                        New Caledonia    NC   NCL 1981
## 10811                                        New Caledonia    NC   NCL 1982
## 10812                                        New Caledonia    NC   NCL 1983
## 10813                                        New Caledonia    NC   NCL 1984
## 10814                                        New Caledonia    NC   NCL 1985
## 10815                                        New Caledonia    NC   NCL 1986
## 10816                                        New Caledonia    NC   NCL 1987
## 10817                                        New Caledonia    NC   NCL 1988
## 10818                                        New Caledonia    NC   NCL 1989
## 10819                                        New Caledonia    NC   NCL 1990
## 10820                                        New Caledonia    NC   NCL 1991
## 10821                                        New Caledonia    NC   NCL 1992
## 10822                                        New Caledonia    NC   NCL 1993
## 10823                                        New Caledonia    NC   NCL 1994
## 10824                                        New Caledonia    NC   NCL 1995
## 10825                                        New Caledonia    NC   NCL 1996
## 10826                                        New Caledonia    NC   NCL 1997
## 10827                                        New Caledonia    NC   NCL 1998
## 10828                                        New Caledonia    NC   NCL 1999
## 10829                                        New Caledonia    NC   NCL 2000
## 10830                                        New Caledonia    NC   NCL 2001
## 10831                                        New Caledonia    NC   NCL 2002
## 10832                                        New Caledonia    NC   NCL 2003
## 10833                                        New Caledonia    NC   NCL 2004
## 10834                                        New Caledonia    NC   NCL 2005
## 10835                                        New Caledonia    NC   NCL 2006
## 10836                                        New Caledonia    NC   NCL 2007
## 10837                                        New Caledonia    NC   NCL 2008
## 10838                                        New Caledonia    NC   NCL 2009
## 10839                                        New Caledonia    NC   NCL 2010
## 10840                                        New Caledonia    NC   NCL 2011
## 10841                                        New Caledonia    NC   NCL 2012
## 10842                                        New Caledonia    NC   NCL 2013
## 10843                                        New Caledonia    NC   NCL 2014
## 10844                                        New Caledonia    NC   NCL 2015
## 10845                                        New Caledonia    NC   NCL 2016
## 10846                                        New Caledonia    NC   NCL 2017
## 10847                                        New Caledonia    NC   NCL 2018
## 10848                                        New Caledonia    NC   NCL 2019
## 10849                                        New Caledonia    NC   NCL 2020
## 10850                                        New Caledonia    NC   NCL 2021
## 10851                                          New Zealand    NZ   NZL 1960
## 10852                                          New Zealand    NZ   NZL 1961
## 10853                                          New Zealand    NZ   NZL 1962
## 10854                                          New Zealand    NZ   NZL 1963
## 10855                                          New Zealand    NZ   NZL 1964
## 10856                                          New Zealand    NZ   NZL 1965
## 10857                                          New Zealand    NZ   NZL 1966
## 10858                                          New Zealand    NZ   NZL 1967
## 10859                                          New Zealand    NZ   NZL 1968
## 10860                                          New Zealand    NZ   NZL 1969
## 10861                                          New Zealand    NZ   NZL 1970
## 10862                                          New Zealand    NZ   NZL 1971
## 10863                                          New Zealand    NZ   NZL 1972
## 10864                                          New Zealand    NZ   NZL 1973
## 10865                                          New Zealand    NZ   NZL 1974
## 10866                                          New Zealand    NZ   NZL 1975
## 10867                                          New Zealand    NZ   NZL 1976
## 10868                                          New Zealand    NZ   NZL 1977
## 10869                                          New Zealand    NZ   NZL 1978
## 10870                                          New Zealand    NZ   NZL 1979
## 10871                                          New Zealand    NZ   NZL 1980
## 10872                                          New Zealand    NZ   NZL 1981
## 10873                                          New Zealand    NZ   NZL 1982
## 10874                                          New Zealand    NZ   NZL 1983
## 10875                                          New Zealand    NZ   NZL 1984
## 10876                                          New Zealand    NZ   NZL 1985
## 10877                                          New Zealand    NZ   NZL 1986
## 10878                                          New Zealand    NZ   NZL 1987
## 10879                                          New Zealand    NZ   NZL 1988
## 10880                                          New Zealand    NZ   NZL 1989
## 10881                                          New Zealand    NZ   NZL 1990
## 10882                                          New Zealand    NZ   NZL 1991
## 10883                                          New Zealand    NZ   NZL 1992
## 10884                                          New Zealand    NZ   NZL 1993
## 10885                                          New Zealand    NZ   NZL 1994
## 10886                                          New Zealand    NZ   NZL 1995
## 10887                                          New Zealand    NZ   NZL 1996
## 10888                                          New Zealand    NZ   NZL 1997
## 10889                                          New Zealand    NZ   NZL 1998
## 10890                                          New Zealand    NZ   NZL 1999
## 10891                                          New Zealand    NZ   NZL 2000
## 10892                                          New Zealand    NZ   NZL 2001
## 10893                                          New Zealand    NZ   NZL 2002
## 10894                                          New Zealand    NZ   NZL 2003
## 10895                                          New Zealand    NZ   NZL 2004
## 10896                                          New Zealand    NZ   NZL 2005
## 10897                                          New Zealand    NZ   NZL 2006
## 10898                                          New Zealand    NZ   NZL 2007
## 10899                                          New Zealand    NZ   NZL 2008
## 10900                                          New Zealand    NZ   NZL 2009
## 10901                                          New Zealand    NZ   NZL 2010
## 10902                                          New Zealand    NZ   NZL 2011
## 10903                                          New Zealand    NZ   NZL 2012
## 10904                                          New Zealand    NZ   NZL 2013
## 10905                                          New Zealand    NZ   NZL 2014
## 10906                                          New Zealand    NZ   NZL 2015
## 10907                                          New Zealand    NZ   NZL 2016
## 10908                                          New Zealand    NZ   NZL 2017
## 10909                                          New Zealand    NZ   NZL 2018
## 10910                                          New Zealand    NZ   NZL 2019
## 10911                                          New Zealand    NZ   NZL 2020
## 10912                                          New Zealand    NZ   NZL 2021
## 10913                                            Nicaragua    NI   NIC 1960
## 10914                                            Nicaragua    NI   NIC 1961
## 10915                                            Nicaragua    NI   NIC 1962
## 10916                                            Nicaragua    NI   NIC 1963
## 10917                                            Nicaragua    NI   NIC 1964
## 10918                                            Nicaragua    NI   NIC 1965
## 10919                                            Nicaragua    NI   NIC 1966
## 10920                                            Nicaragua    NI   NIC 1967
## 10921                                            Nicaragua    NI   NIC 1968
## 10922                                            Nicaragua    NI   NIC 1969
## 10923                                            Nicaragua    NI   NIC 1970
## 10924                                            Nicaragua    NI   NIC 1971
## 10925                                            Nicaragua    NI   NIC 1972
## 10926                                            Nicaragua    NI   NIC 1973
## 10927                                            Nicaragua    NI   NIC 1974
## 10928                                            Nicaragua    NI   NIC 1975
## 10929                                            Nicaragua    NI   NIC 1976
## 10930                                            Nicaragua    NI   NIC 1977
## 10931                                            Nicaragua    NI   NIC 1978
## 10932                                            Nicaragua    NI   NIC 1979
## 10933                                            Nicaragua    NI   NIC 1980
## 10934                                            Nicaragua    NI   NIC 1981
## 10935                                            Nicaragua    NI   NIC 1982
## 10936                                            Nicaragua    NI   NIC 1983
## 10937                                            Nicaragua    NI   NIC 1984
## 10938                                            Nicaragua    NI   NIC 1985
## 10939                                            Nicaragua    NI   NIC 1986
## 10940                                            Nicaragua    NI   NIC 1987
## 10941                                            Nicaragua    NI   NIC 1988
## 10942                                            Nicaragua    NI   NIC 1989
## 10943                                            Nicaragua    NI   NIC 1990
## 10944                                            Nicaragua    NI   NIC 1991
## 10945                                            Nicaragua    NI   NIC 1992
## 10946                                            Nicaragua    NI   NIC 1993
## 10947                                            Nicaragua    NI   NIC 1994
## 10948                                            Nicaragua    NI   NIC 1995
## 10949                                            Nicaragua    NI   NIC 1996
## 10950                                            Nicaragua    NI   NIC 1997
## 10951                                            Nicaragua    NI   NIC 1998
## 10952                                            Nicaragua    NI   NIC 1999
## 10953                                            Nicaragua    NI   NIC 2000
## 10954                                            Nicaragua    NI   NIC 2001
## 10955                                            Nicaragua    NI   NIC 2002
## 10956                                            Nicaragua    NI   NIC 2003
## 10957                                            Nicaragua    NI   NIC 2004
## 10958                                            Nicaragua    NI   NIC 2005
## 10959                                            Nicaragua    NI   NIC 2006
## 10960                                            Nicaragua    NI   NIC 2007
## 10961                                            Nicaragua    NI   NIC 2008
## 10962                                            Nicaragua    NI   NIC 2009
## 10963                                            Nicaragua    NI   NIC 2010
## 10964                                            Nicaragua    NI   NIC 2011
## 10965                                            Nicaragua    NI   NIC 2012
## 10966                                            Nicaragua    NI   NIC 2013
## 10967                                            Nicaragua    NI   NIC 2014
## 10968                                            Nicaragua    NI   NIC 2015
## 10969                                            Nicaragua    NI   NIC 2016
## 10970                                            Nicaragua    NI   NIC 2017
## 10971                                            Nicaragua    NI   NIC 2018
## 10972                                            Nicaragua    NI   NIC 2019
## 10973                                            Nicaragua    NI   NIC 2020
## 10974                                            Nicaragua    NI   NIC 2021
## 10975                                                Niger    NE   NER 1960
## 10976                                                Niger    NE   NER 1961
## 10977                                                Niger    NE   NER 1962
## 10978                                                Niger    NE   NER 1963
## 10979                                                Niger    NE   NER 1964
## 10980                                                Niger    NE   NER 1965
## 10981                                                Niger    NE   NER 1966
## 10982                                                Niger    NE   NER 1967
## 10983                                                Niger    NE   NER 1968
## 10984                                                Niger    NE   NER 1969
## 10985                                                Niger    NE   NER 1970
## 10986                                                Niger    NE   NER 1971
## 10987                                                Niger    NE   NER 1972
## 10988                                                Niger    NE   NER 1973
## 10989                                                Niger    NE   NER 1974
## 10990                                                Niger    NE   NER 1975
## 10991                                                Niger    NE   NER 1976
## 10992                                                Niger    NE   NER 1977
## 10993                                                Niger    NE   NER 1978
## 10994                                                Niger    NE   NER 1979
## 10995                                                Niger    NE   NER 1980
## 10996                                                Niger    NE   NER 1981
## 10997                                                Niger    NE   NER 1982
## 10998                                                Niger    NE   NER 1983
## 10999                                                Niger    NE   NER 1984
## 11000                                                Niger    NE   NER 1985
## 11001                                                Niger    NE   NER 1986
## 11002                                                Niger    NE   NER 1987
## 11003                                                Niger    NE   NER 1988
## 11004                                                Niger    NE   NER 1989
## 11005                                                Niger    NE   NER 1990
## 11006                                                Niger    NE   NER 1991
## 11007                                                Niger    NE   NER 1992
## 11008                                                Niger    NE   NER 1993
## 11009                                                Niger    NE   NER 1994
## 11010                                                Niger    NE   NER 1995
## 11011                                                Niger    NE   NER 1996
## 11012                                                Niger    NE   NER 1997
## 11013                                                Niger    NE   NER 1998
## 11014                                                Niger    NE   NER 1999
## 11015                                                Niger    NE   NER 2000
## 11016                                                Niger    NE   NER 2001
## 11017                                                Niger    NE   NER 2002
## 11018                                                Niger    NE   NER 2003
## 11019                                                Niger    NE   NER 2004
## 11020                                                Niger    NE   NER 2005
## 11021                                                Niger    NE   NER 2006
## 11022                                                Niger    NE   NER 2007
## 11023                                                Niger    NE   NER 2008
## 11024                                                Niger    NE   NER 2009
## 11025                                                Niger    NE   NER 2010
## 11026                                                Niger    NE   NER 2011
## 11027                                                Niger    NE   NER 2012
## 11028                                                Niger    NE   NER 2013
## 11029                                                Niger    NE   NER 2014
## 11030                                                Niger    NE   NER 2015
## 11031                                                Niger    NE   NER 2016
## 11032                                                Niger    NE   NER 2017
## 11033                                                Niger    NE   NER 2018
## 11034                                                Niger    NE   NER 2019
## 11035                                                Niger    NE   NER 2020
## 11036                                                Niger    NE   NER 2021
## 11037                                              Nigeria    NG   NGA 1960
## 11038                                              Nigeria    NG   NGA 1961
## 11039                                              Nigeria    NG   NGA 1962
## 11040                                              Nigeria    NG   NGA 1963
## 11041                                              Nigeria    NG   NGA 1964
## 11042                                              Nigeria    NG   NGA 1965
## 11043                                              Nigeria    NG   NGA 1966
## 11044                                              Nigeria    NG   NGA 1967
## 11045                                              Nigeria    NG   NGA 1968
## 11046                                              Nigeria    NG   NGA 1969
## 11047                                              Nigeria    NG   NGA 1970
## 11048                                              Nigeria    NG   NGA 1971
## 11049                                              Nigeria    NG   NGA 1972
## 11050                                              Nigeria    NG   NGA 1973
## 11051                                              Nigeria    NG   NGA 1974
## 11052                                              Nigeria    NG   NGA 1975
## 11053                                              Nigeria    NG   NGA 1976
## 11054                                              Nigeria    NG   NGA 1977
## 11055                                              Nigeria    NG   NGA 1978
## 11056                                              Nigeria    NG   NGA 1979
## 11057                                              Nigeria    NG   NGA 1980
## 11058                                              Nigeria    NG   NGA 1981
## 11059                                              Nigeria    NG   NGA 1982
## 11060                                              Nigeria    NG   NGA 1983
## 11061                                              Nigeria    NG   NGA 1984
## 11062                                              Nigeria    NG   NGA 1985
## 11063                                              Nigeria    NG   NGA 1986
## 11064                                              Nigeria    NG   NGA 1987
## 11065                                              Nigeria    NG   NGA 1988
## 11066                                              Nigeria    NG   NGA 1989
## 11067                                              Nigeria    NG   NGA 1990
## 11068                                              Nigeria    NG   NGA 1991
## 11069                                              Nigeria    NG   NGA 1992
## 11070                                              Nigeria    NG   NGA 1993
## 11071                                              Nigeria    NG   NGA 1994
## 11072                                              Nigeria    NG   NGA 1995
## 11073                                              Nigeria    NG   NGA 1996
## 11074                                              Nigeria    NG   NGA 1997
## 11075                                              Nigeria    NG   NGA 1998
## 11076                                              Nigeria    NG   NGA 1999
## 11077                                              Nigeria    NG   NGA 2000
## 11078                                              Nigeria    NG   NGA 2001
## 11079                                              Nigeria    NG   NGA 2002
## 11080                                              Nigeria    NG   NGA 2003
## 11081                                              Nigeria    NG   NGA 2004
## 11082                                              Nigeria    NG   NGA 2005
## 11083                                              Nigeria    NG   NGA 2006
## 11084                                              Nigeria    NG   NGA 2007
## 11085                                              Nigeria    NG   NGA 2008
## 11086                                              Nigeria    NG   NGA 2009
## 11087                                              Nigeria    NG   NGA 2010
## 11088                                              Nigeria    NG   NGA 2011
## 11089                                              Nigeria    NG   NGA 2012
## 11090                                              Nigeria    NG   NGA 2013
## 11091                                              Nigeria    NG   NGA 2014
## 11092                                              Nigeria    NG   NGA 2015
## 11093                                              Nigeria    NG   NGA 2016
## 11094                                              Nigeria    NG   NGA 2017
## 11095                                              Nigeria    NG   NGA 2018
## 11096                                              Nigeria    NG   NGA 2019
## 11097                                              Nigeria    NG   NGA 2020
## 11098                                              Nigeria    NG   NGA 2021
## 11099                                        North America    XU   NAC 1960
## 11100                                        North America    XU   NAC 1961
## 11101                                        North America    XU   NAC 1962
## 11102                                        North America    XU   NAC 1963
## 11103                                        North America    XU   NAC 1964
## 11104                                        North America    XU   NAC 1965
## 11105                                        North America    XU   NAC 1966
## 11106                                        North America    XU   NAC 1967
## 11107                                        North America    XU   NAC 1968
## 11108                                        North America    XU   NAC 1969
## 11109                                        North America    XU   NAC 1970
## 11110                                        North America    XU   NAC 1971
## 11111                                        North America    XU   NAC 1972
## 11112                                        North America    XU   NAC 1973
## 11113                                        North America    XU   NAC 1974
## 11114                                        North America    XU   NAC 1975
## 11115                                        North America    XU   NAC 1976
## 11116                                        North America    XU   NAC 1977
## 11117                                        North America    XU   NAC 1978
## 11118                                        North America    XU   NAC 1979
## 11119                                        North America    XU   NAC 1980
## 11120                                        North America    XU   NAC 1981
## 11121                                        North America    XU   NAC 1982
## 11122                                        North America    XU   NAC 1983
## 11123                                        North America    XU   NAC 1984
## 11124                                        North America    XU   NAC 1985
## 11125                                        North America    XU   NAC 1986
## 11126                                        North America    XU   NAC 1987
## 11127                                        North America    XU   NAC 1988
## 11128                                        North America    XU   NAC 1989
## 11129                                        North America    XU   NAC 1990
## 11130                                        North America    XU   NAC 1991
## 11131                                        North America    XU   NAC 1992
## 11132                                        North America    XU   NAC 1993
## 11133                                        North America    XU   NAC 1994
## 11134                                        North America    XU   NAC 1995
## 11135                                        North America    XU   NAC 1996
## 11136                                        North America    XU   NAC 1997
## 11137                                        North America    XU   NAC 1998
## 11138                                        North America    XU   NAC 1999
## 11139                                        North America    XU   NAC 2000
## 11140                                        North America    XU   NAC 2001
## 11141                                        North America    XU   NAC 2002
## 11142                                        North America    XU   NAC 2003
## 11143                                        North America    XU   NAC 2004
## 11144                                        North America    XU   NAC 2005
## 11145                                        North America    XU   NAC 2006
## 11146                                        North America    XU   NAC 2007
## 11147                                        North America    XU   NAC 2008
## 11148                                        North America    XU   NAC 2009
## 11149                                        North America    XU   NAC 2010
## 11150                                        North America    XU   NAC 2011
## 11151                                        North America    XU   NAC 2012
## 11152                                        North America    XU   NAC 2013
## 11153                                        North America    XU   NAC 2014
## 11154                                        North America    XU   NAC 2015
## 11155                                        North America    XU   NAC 2016
## 11156                                        North America    XU   NAC 2017
## 11157                                        North America    XU   NAC 2018
## 11158                                        North America    XU   NAC 2019
## 11159                                        North America    XU   NAC 2020
## 11160                                        North America    XU   NAC 2021
## 11161                                      North Macedonia    MK   MKD 1960
## 11162                                      North Macedonia    MK   MKD 1961
## 11163                                      North Macedonia    MK   MKD 1962
## 11164                                      North Macedonia    MK   MKD 1963
## 11165                                      North Macedonia    MK   MKD 1964
## 11166                                      North Macedonia    MK   MKD 1965
## 11167                                      North Macedonia    MK   MKD 1966
## 11168                                      North Macedonia    MK   MKD 1967
## 11169                                      North Macedonia    MK   MKD 1968
## 11170                                      North Macedonia    MK   MKD 1969
## 11171                                      North Macedonia    MK   MKD 1970
## 11172                                      North Macedonia    MK   MKD 1971
## 11173                                      North Macedonia    MK   MKD 1972
## 11174                                      North Macedonia    MK   MKD 1973
## 11175                                      North Macedonia    MK   MKD 1974
## 11176                                      North Macedonia    MK   MKD 1975
## 11177                                      North Macedonia    MK   MKD 1976
## 11178                                      North Macedonia    MK   MKD 1977
## 11179                                      North Macedonia    MK   MKD 1978
## 11180                                      North Macedonia    MK   MKD 1979
## 11181                                      North Macedonia    MK   MKD 1980
## 11182                                      North Macedonia    MK   MKD 1981
## 11183                                      North Macedonia    MK   MKD 1982
## 11184                                      North Macedonia    MK   MKD 1983
## 11185                                      North Macedonia    MK   MKD 1984
## 11186                                      North Macedonia    MK   MKD 1985
## 11187                                      North Macedonia    MK   MKD 1986
## 11188                                      North Macedonia    MK   MKD 1987
## 11189                                      North Macedonia    MK   MKD 1988
## 11190                                      North Macedonia    MK   MKD 1989
## 11191                                      North Macedonia    MK   MKD 1990
## 11192                                      North Macedonia    MK   MKD 1991
## 11193                                      North Macedonia    MK   MKD 1992
## 11194                                      North Macedonia    MK   MKD 1993
## 11195                                      North Macedonia    MK   MKD 1994
## 11196                                      North Macedonia    MK   MKD 1995
## 11197                                      North Macedonia    MK   MKD 1996
## 11198                                      North Macedonia    MK   MKD 1997
## 11199                                      North Macedonia    MK   MKD 1998
## 11200                                      North Macedonia    MK   MKD 1999
## 11201                                      North Macedonia    MK   MKD 2000
## 11202                                      North Macedonia    MK   MKD 2001
## 11203                                      North Macedonia    MK   MKD 2002
## 11204                                      North Macedonia    MK   MKD 2003
## 11205                                      North Macedonia    MK   MKD 2004
## 11206                                      North Macedonia    MK   MKD 2005
## 11207                                      North Macedonia    MK   MKD 2006
## 11208                                      North Macedonia    MK   MKD 2007
## 11209                                      North Macedonia    MK   MKD 2008
## 11210                                      North Macedonia    MK   MKD 2009
## 11211                                      North Macedonia    MK   MKD 2010
## 11212                                      North Macedonia    MK   MKD 2011
## 11213                                      North Macedonia    MK   MKD 2012
## 11214                                      North Macedonia    MK   MKD 2013
## 11215                                      North Macedonia    MK   MKD 2014
## 11216                                      North Macedonia    MK   MKD 2015
## 11217                                      North Macedonia    MK   MKD 2016
## 11218                                      North Macedonia    MK   MKD 2017
## 11219                                      North Macedonia    MK   MKD 2018
## 11220                                      North Macedonia    MK   MKD 2019
## 11221                                      North Macedonia    MK   MKD 2020
## 11222                                      North Macedonia    MK   MKD 2021
## 11223                             Northern Mariana Islands    MP   MNP 1960
## 11224                             Northern Mariana Islands    MP   MNP 1961
## 11225                             Northern Mariana Islands    MP   MNP 1962
## 11226                             Northern Mariana Islands    MP   MNP 1963
## 11227                             Northern Mariana Islands    MP   MNP 1964
## 11228                             Northern Mariana Islands    MP   MNP 1965
## 11229                             Northern Mariana Islands    MP   MNP 1966
## 11230                             Northern Mariana Islands    MP   MNP 1967
## 11231                             Northern Mariana Islands    MP   MNP 1968
## 11232                             Northern Mariana Islands    MP   MNP 1969
## 11233                             Northern Mariana Islands    MP   MNP 1970
## 11234                             Northern Mariana Islands    MP   MNP 1971
## 11235                             Northern Mariana Islands    MP   MNP 1972
## 11236                             Northern Mariana Islands    MP   MNP 1973
## 11237                             Northern Mariana Islands    MP   MNP 1974
## 11238                             Northern Mariana Islands    MP   MNP 1975
## 11239                             Northern Mariana Islands    MP   MNP 1976
## 11240                             Northern Mariana Islands    MP   MNP 1977
## 11241                             Northern Mariana Islands    MP   MNP 1978
## 11242                             Northern Mariana Islands    MP   MNP 1979
## 11243                             Northern Mariana Islands    MP   MNP 1980
## 11244                             Northern Mariana Islands    MP   MNP 1981
## 11245                             Northern Mariana Islands    MP   MNP 1982
## 11246                             Northern Mariana Islands    MP   MNP 1983
## 11247                             Northern Mariana Islands    MP   MNP 1984
## 11248                             Northern Mariana Islands    MP   MNP 1985
## 11249                             Northern Mariana Islands    MP   MNP 1986
## 11250                             Northern Mariana Islands    MP   MNP 1987
## 11251                             Northern Mariana Islands    MP   MNP 1988
## 11252                             Northern Mariana Islands    MP   MNP 1989
## 11253                             Northern Mariana Islands    MP   MNP 1990
## 11254                             Northern Mariana Islands    MP   MNP 1991
## 11255                             Northern Mariana Islands    MP   MNP 1992
## 11256                             Northern Mariana Islands    MP   MNP 1993
## 11257                             Northern Mariana Islands    MP   MNP 1994
## 11258                             Northern Mariana Islands    MP   MNP 1995
## 11259                             Northern Mariana Islands    MP   MNP 1996
## 11260                             Northern Mariana Islands    MP   MNP 1997
## 11261                             Northern Mariana Islands    MP   MNP 1998
## 11262                             Northern Mariana Islands    MP   MNP 1999
## 11263                             Northern Mariana Islands    MP   MNP 2000
## 11264                             Northern Mariana Islands    MP   MNP 2001
## 11265                             Northern Mariana Islands    MP   MNP 2002
## 11266                             Northern Mariana Islands    MP   MNP 2003
## 11267                             Northern Mariana Islands    MP   MNP 2004
## 11268                             Northern Mariana Islands    MP   MNP 2005
## 11269                             Northern Mariana Islands    MP   MNP 2006
## 11270                             Northern Mariana Islands    MP   MNP 2007
## 11271                             Northern Mariana Islands    MP   MNP 2008
## 11272                             Northern Mariana Islands    MP   MNP 2009
## 11273                             Northern Mariana Islands    MP   MNP 2010
## 11274                             Northern Mariana Islands    MP   MNP 2011
## 11275                             Northern Mariana Islands    MP   MNP 2012
## 11276                             Northern Mariana Islands    MP   MNP 2013
## 11277                             Northern Mariana Islands    MP   MNP 2014
## 11278                             Northern Mariana Islands    MP   MNP 2015
## 11279                             Northern Mariana Islands    MP   MNP 2016
## 11280                             Northern Mariana Islands    MP   MNP 2017
## 11281                             Northern Mariana Islands    MP   MNP 2018
## 11282                             Northern Mariana Islands    MP   MNP 2019
## 11283                             Northern Mariana Islands    MP   MNP 2020
## 11284                             Northern Mariana Islands    MP   MNP 2021
## 11285                                               Norway    NO   NOR 1960
## 11286                                               Norway    NO   NOR 1961
## 11287                                               Norway    NO   NOR 1962
## 11288                                               Norway    NO   NOR 1963
## 11289                                               Norway    NO   NOR 1964
## 11290                                               Norway    NO   NOR 1965
## 11291                                               Norway    NO   NOR 1966
## 11292                                               Norway    NO   NOR 1967
## 11293                                               Norway    NO   NOR 1968
## 11294                                               Norway    NO   NOR 1969
## 11295                                               Norway    NO   NOR 1970
## 11296                                               Norway    NO   NOR 1971
## 11297                                               Norway    NO   NOR 1972
## 11298                                               Norway    NO   NOR 1973
## 11299                                               Norway    NO   NOR 1974
## 11300                                               Norway    NO   NOR 1975
## 11301                                               Norway    NO   NOR 1976
## 11302                                               Norway    NO   NOR 1977
## 11303                                               Norway    NO   NOR 1978
## 11304                                               Norway    NO   NOR 1979
## 11305                                               Norway    NO   NOR 1980
## 11306                                               Norway    NO   NOR 1981
## 11307                                               Norway    NO   NOR 1982
## 11308                                               Norway    NO   NOR 1983
## 11309                                               Norway    NO   NOR 1984
## 11310                                               Norway    NO   NOR 1985
## 11311                                               Norway    NO   NOR 1986
## 11312                                               Norway    NO   NOR 1987
## 11313                                               Norway    NO   NOR 1988
## 11314                                               Norway    NO   NOR 1989
## 11315                                               Norway    NO   NOR 1990
## 11316                                               Norway    NO   NOR 1991
## 11317                                               Norway    NO   NOR 1992
## 11318                                               Norway    NO   NOR 1993
## 11319                                               Norway    NO   NOR 1994
## 11320                                               Norway    NO   NOR 1995
## 11321                                               Norway    NO   NOR 1996
## 11322                                               Norway    NO   NOR 1997
## 11323                                               Norway    NO   NOR 1998
## 11324                                               Norway    NO   NOR 1999
## 11325                                               Norway    NO   NOR 2000
## 11326                                               Norway    NO   NOR 2001
## 11327                                               Norway    NO   NOR 2002
## 11328                                               Norway    NO   NOR 2003
## 11329                                               Norway    NO   NOR 2004
## 11330                                               Norway    NO   NOR 2005
## 11331                                               Norway    NO   NOR 2006
## 11332                                               Norway    NO   NOR 2007
## 11333                                               Norway    NO   NOR 2008
## 11334                                               Norway    NO   NOR 2009
## 11335                                               Norway    NO   NOR 2010
## 11336                                               Norway    NO   NOR 2011
## 11337                                               Norway    NO   NOR 2012
## 11338                                               Norway    NO   NOR 2013
## 11339                                               Norway    NO   NOR 2014
## 11340                                               Norway    NO   NOR 2015
## 11341                                               Norway    NO   NOR 2016
## 11342                                               Norway    NO   NOR 2017
## 11343                                               Norway    NO   NOR 2018
## 11344                                               Norway    NO   NOR 2019
## 11345                                               Norway    NO   NOR 2020
## 11346                                               Norway    NO   NOR 2021
## 11347                                       Not classified    XY       1960
## 11348                                       Not classified    XY       1961
## 11349                                       Not classified    XY       1962
## 11350                                       Not classified    XY       1963
## 11351                                       Not classified    XY       1964
## 11352                                       Not classified    XY       1965
## 11353                                       Not classified    XY       1966
## 11354                                       Not classified    XY       1967
## 11355                                       Not classified    XY       1968
## 11356                                       Not classified    XY       1969
## 11357                                       Not classified    XY       1970
## 11358                                       Not classified    XY       1971
## 11359                                       Not classified    XY       1972
## 11360                                       Not classified    XY       1973
## 11361                                       Not classified    XY       1974
## 11362                                       Not classified    XY       1975
## 11363                                       Not classified    XY       1976
## 11364                                       Not classified    XY       1977
## 11365                                       Not classified    XY       1978
## 11366                                       Not classified    XY       1979
## 11367                                       Not classified    XY       1980
## 11368                                       Not classified    XY       1981
## 11369                                       Not classified    XY       1982
## 11370                                       Not classified    XY       1983
## 11371                                       Not classified    XY       1984
## 11372                                       Not classified    XY       1985
## 11373                                       Not classified    XY       1986
## 11374                                       Not classified    XY       1987
## 11375                                       Not classified    XY       1988
## 11376                                       Not classified    XY       1989
## 11377                                       Not classified    XY       1990
## 11378                                       Not classified    XY       1991
## 11379                                       Not classified    XY       1992
## 11380                                       Not classified    XY       1993
## 11381                                       Not classified    XY       1994
## 11382                                       Not classified    XY       1995
## 11383                                       Not classified    XY       1996
## 11384                                       Not classified    XY       1997
## 11385                                       Not classified    XY       1998
## 11386                                       Not classified    XY       1999
## 11387                                       Not classified    XY       2000
## 11388                                       Not classified    XY       2001
## 11389                                       Not classified    XY       2002
## 11390                                       Not classified    XY       2003
## 11391                                       Not classified    XY       2004
## 11392                                       Not classified    XY       2005
## 11393                                       Not classified    XY       2006
## 11394                                       Not classified    XY       2007
## 11395                                       Not classified    XY       2008
## 11396                                       Not classified    XY       2009
## 11397                                       Not classified    XY       2010
## 11398                                       Not classified    XY       2011
## 11399                                       Not classified    XY       2012
## 11400                                       Not classified    XY       2013
## 11401                                       Not classified    XY       2014
## 11402                                       Not classified    XY       2015
## 11403                                       Not classified    XY       2016
## 11404                                       Not classified    XY       2017
## 11405                                       Not classified    XY       2018
## 11406                                       Not classified    XY       2019
## 11407                                       Not classified    XY       2020
## 11408                                       Not classified    XY       2021
## 11409                                         OECD members    OE   OED 1960
## 11410                                         OECD members    OE   OED 1961
## 11411                                         OECD members    OE   OED 1962
## 11412                                         OECD members    OE   OED 1963
## 11413                                         OECD members    OE   OED 1964
## 11414                                         OECD members    OE   OED 1965
## 11415                                         OECD members    OE   OED 1966
## 11416                                         OECD members    OE   OED 1967
## 11417                                         OECD members    OE   OED 1968
## 11418                                         OECD members    OE   OED 1969
## 11419                                         OECD members    OE   OED 1970
## 11420                                         OECD members    OE   OED 1971
## 11421                                         OECD members    OE   OED 1972
## 11422                                         OECD members    OE   OED 1973
## 11423                                         OECD members    OE   OED 1974
## 11424                                         OECD members    OE   OED 1975
## 11425                                         OECD members    OE   OED 1976
## 11426                                         OECD members    OE   OED 1977
## 11427                                         OECD members    OE   OED 1978
## 11428                                         OECD members    OE   OED 1979
## 11429                                         OECD members    OE   OED 1980
## 11430                                         OECD members    OE   OED 1981
## 11431                                         OECD members    OE   OED 1982
## 11432                                         OECD members    OE   OED 1983
## 11433                                         OECD members    OE   OED 1984
## 11434                                         OECD members    OE   OED 1985
## 11435                                         OECD members    OE   OED 1986
## 11436                                         OECD members    OE   OED 1987
## 11437                                         OECD members    OE   OED 1988
## 11438                                         OECD members    OE   OED 1989
## 11439                                         OECD members    OE   OED 1990
## 11440                                         OECD members    OE   OED 1991
## 11441                                         OECD members    OE   OED 1992
## 11442                                         OECD members    OE   OED 1993
## 11443                                         OECD members    OE   OED 1994
## 11444                                         OECD members    OE   OED 1995
## 11445                                         OECD members    OE   OED 1996
## 11446                                         OECD members    OE   OED 1997
## 11447                                         OECD members    OE   OED 1998
## 11448                                         OECD members    OE   OED 1999
## 11449                                         OECD members    OE   OED 2000
## 11450                                         OECD members    OE   OED 2001
## 11451                                         OECD members    OE   OED 2002
## 11452                                         OECD members    OE   OED 2003
## 11453                                         OECD members    OE   OED 2004
## 11454                                         OECD members    OE   OED 2005
## 11455                                         OECD members    OE   OED 2006
## 11456                                         OECD members    OE   OED 2007
## 11457                                         OECD members    OE   OED 2008
## 11458                                         OECD members    OE   OED 2009
## 11459                                         OECD members    OE   OED 2010
## 11460                                         OECD members    OE   OED 2011
## 11461                                         OECD members    OE   OED 2012
## 11462                                         OECD members    OE   OED 2013
## 11463                                         OECD members    OE   OED 2014
## 11464                                         OECD members    OE   OED 2015
## 11465                                         OECD members    OE   OED 2016
## 11466                                         OECD members    OE   OED 2017
## 11467                                         OECD members    OE   OED 2018
## 11468                                         OECD members    OE   OED 2019
## 11469                                         OECD members    OE   OED 2020
## 11470                                         OECD members    OE   OED 2021
## 11471                                                 Oman    OM   OMN 1960
## 11472                                                 Oman    OM   OMN 1961
## 11473                                                 Oman    OM   OMN 1962
## 11474                                                 Oman    OM   OMN 1963
## 11475                                                 Oman    OM   OMN 1964
## 11476                                                 Oman    OM   OMN 1965
## 11477                                                 Oman    OM   OMN 1966
## 11478                                                 Oman    OM   OMN 1967
## 11479                                                 Oman    OM   OMN 1968
## 11480                                                 Oman    OM   OMN 1969
## 11481                                                 Oman    OM   OMN 1970
## 11482                                                 Oman    OM   OMN 1971
## 11483                                                 Oman    OM   OMN 1972
## 11484                                                 Oman    OM   OMN 1973
## 11485                                                 Oman    OM   OMN 1974
## 11486                                                 Oman    OM   OMN 1975
## 11487                                                 Oman    OM   OMN 1976
## 11488                                                 Oman    OM   OMN 1977
## 11489                                                 Oman    OM   OMN 1978
## 11490                                                 Oman    OM   OMN 1979
## 11491                                                 Oman    OM   OMN 1980
## 11492                                                 Oman    OM   OMN 1981
## 11493                                                 Oman    OM   OMN 1982
## 11494                                                 Oman    OM   OMN 1983
## 11495                                                 Oman    OM   OMN 1984
## 11496                                                 Oman    OM   OMN 1985
## 11497                                                 Oman    OM   OMN 1986
## 11498                                                 Oman    OM   OMN 1987
## 11499                                                 Oman    OM   OMN 1988
## 11500                                                 Oman    OM   OMN 1989
## 11501                                                 Oman    OM   OMN 1990
## 11502                                                 Oman    OM   OMN 1991
## 11503                                                 Oman    OM   OMN 1992
## 11504                                                 Oman    OM   OMN 1993
## 11505                                                 Oman    OM   OMN 1994
## 11506                                                 Oman    OM   OMN 1995
## 11507                                                 Oman    OM   OMN 1996
## 11508                                                 Oman    OM   OMN 1997
## 11509                                                 Oman    OM   OMN 1998
## 11510                                                 Oman    OM   OMN 1999
## 11511                                                 Oman    OM   OMN 2000
## 11512                                                 Oman    OM   OMN 2001
## 11513                                                 Oman    OM   OMN 2002
## 11514                                                 Oman    OM   OMN 2003
## 11515                                                 Oman    OM   OMN 2004
## 11516                                                 Oman    OM   OMN 2005
## 11517                                                 Oman    OM   OMN 2006
## 11518                                                 Oman    OM   OMN 2007
## 11519                                                 Oman    OM   OMN 2008
## 11520                                                 Oman    OM   OMN 2009
## 11521                                                 Oman    OM   OMN 2010
## 11522                                                 Oman    OM   OMN 2011
## 11523                                                 Oman    OM   OMN 2012
## 11524                                                 Oman    OM   OMN 2013
## 11525                                                 Oman    OM   OMN 2014
## 11526                                                 Oman    OM   OMN 2015
## 11527                                                 Oman    OM   OMN 2016
## 11528                                                 Oman    OM   OMN 2017
## 11529                                                 Oman    OM   OMN 2018
## 11530                                                 Oman    OM   OMN 2019
## 11531                                                 Oman    OM   OMN 2020
## 11532                                                 Oman    OM   OMN 2021
## 11533                                   Other small states    S4   OSS 1960
## 11534                                   Other small states    S4   OSS 1961
## 11535                                   Other small states    S4   OSS 1962
## 11536                                   Other small states    S4   OSS 1963
## 11537                                   Other small states    S4   OSS 1964
## 11538                                   Other small states    S4   OSS 1965
## 11539                                   Other small states    S4   OSS 1966
## 11540                                   Other small states    S4   OSS 1967
## 11541                                   Other small states    S4   OSS 1968
## 11542                                   Other small states    S4   OSS 1969
## 11543                                   Other small states    S4   OSS 1970
## 11544                                   Other small states    S4   OSS 1971
## 11545                                   Other small states    S4   OSS 1972
## 11546                                   Other small states    S4   OSS 1973
## 11547                                   Other small states    S4   OSS 1974
## 11548                                   Other small states    S4   OSS 1975
## 11549                                   Other small states    S4   OSS 1976
## 11550                                   Other small states    S4   OSS 1977
## 11551                                   Other small states    S4   OSS 1978
## 11552                                   Other small states    S4   OSS 1979
## 11553                                   Other small states    S4   OSS 1980
## 11554                                   Other small states    S4   OSS 1981
## 11555                                   Other small states    S4   OSS 1982
## 11556                                   Other small states    S4   OSS 1983
## 11557                                   Other small states    S4   OSS 1984
## 11558                                   Other small states    S4   OSS 1985
## 11559                                   Other small states    S4   OSS 1986
## 11560                                   Other small states    S4   OSS 1987
## 11561                                   Other small states    S4   OSS 1988
## 11562                                   Other small states    S4   OSS 1989
## 11563                                   Other small states    S4   OSS 1990
## 11564                                   Other small states    S4   OSS 1991
## 11565                                   Other small states    S4   OSS 1992
## 11566                                   Other small states    S4   OSS 1993
## 11567                                   Other small states    S4   OSS 1994
## 11568                                   Other small states    S4   OSS 1995
## 11569                                   Other small states    S4   OSS 1996
## 11570                                   Other small states    S4   OSS 1997
## 11571                                   Other small states    S4   OSS 1998
## 11572                                   Other small states    S4   OSS 1999
## 11573                                   Other small states    S4   OSS 2000
## 11574                                   Other small states    S4   OSS 2001
## 11575                                   Other small states    S4   OSS 2002
## 11576                                   Other small states    S4   OSS 2003
## 11577                                   Other small states    S4   OSS 2004
## 11578                                   Other small states    S4   OSS 2005
## 11579                                   Other small states    S4   OSS 2006
## 11580                                   Other small states    S4   OSS 2007
## 11581                                   Other small states    S4   OSS 2008
## 11582                                   Other small states    S4   OSS 2009
## 11583                                   Other small states    S4   OSS 2010
## 11584                                   Other small states    S4   OSS 2011
## 11585                                   Other small states    S4   OSS 2012
## 11586                                   Other small states    S4   OSS 2013
## 11587                                   Other small states    S4   OSS 2014
## 11588                                   Other small states    S4   OSS 2015
## 11589                                   Other small states    S4   OSS 2016
## 11590                                   Other small states    S4   OSS 2017
## 11591                                   Other small states    S4   OSS 2018
## 11592                                   Other small states    S4   OSS 2019
## 11593                                   Other small states    S4   OSS 2020
## 11594                                   Other small states    S4   OSS 2021
## 11595                          Pacific island small states    S2   PSS 1960
## 11596                          Pacific island small states    S2   PSS 1961
## 11597                          Pacific island small states    S2   PSS 1962
## 11598                          Pacific island small states    S2   PSS 1963
## 11599                          Pacific island small states    S2   PSS 1964
## 11600                          Pacific island small states    S2   PSS 1965
## 11601                          Pacific island small states    S2   PSS 1966
## 11602                          Pacific island small states    S2   PSS 1967
## 11603                          Pacific island small states    S2   PSS 1968
## 11604                          Pacific island small states    S2   PSS 1969
## 11605                          Pacific island small states    S2   PSS 1970
## 11606                          Pacific island small states    S2   PSS 1971
## 11607                          Pacific island small states    S2   PSS 1972
## 11608                          Pacific island small states    S2   PSS 1973
## 11609                          Pacific island small states    S2   PSS 1974
## 11610                          Pacific island small states    S2   PSS 1975
## 11611                          Pacific island small states    S2   PSS 1976
## 11612                          Pacific island small states    S2   PSS 1977
## 11613                          Pacific island small states    S2   PSS 1978
## 11614                          Pacific island small states    S2   PSS 1979
## 11615                          Pacific island small states    S2   PSS 1980
## 11616                          Pacific island small states    S2   PSS 1981
## 11617                          Pacific island small states    S2   PSS 1982
## 11618                          Pacific island small states    S2   PSS 1983
## 11619                          Pacific island small states    S2   PSS 1984
## 11620                          Pacific island small states    S2   PSS 1985
## 11621                          Pacific island small states    S2   PSS 1986
## 11622                          Pacific island small states    S2   PSS 1987
## 11623                          Pacific island small states    S2   PSS 1988
## 11624                          Pacific island small states    S2   PSS 1989
## 11625                          Pacific island small states    S2   PSS 1990
## 11626                          Pacific island small states    S2   PSS 1991
## 11627                          Pacific island small states    S2   PSS 1992
## 11628                          Pacific island small states    S2   PSS 1993
## 11629                          Pacific island small states    S2   PSS 1994
## 11630                          Pacific island small states    S2   PSS 1995
## 11631                          Pacific island small states    S2   PSS 1996
## 11632                          Pacific island small states    S2   PSS 1997
## 11633                          Pacific island small states    S2   PSS 1998
## 11634                          Pacific island small states    S2   PSS 1999
## 11635                          Pacific island small states    S2   PSS 2000
## 11636                          Pacific island small states    S2   PSS 2001
## 11637                          Pacific island small states    S2   PSS 2002
## 11638                          Pacific island small states    S2   PSS 2003
## 11639                          Pacific island small states    S2   PSS 2004
## 11640                          Pacific island small states    S2   PSS 2005
## 11641                          Pacific island small states    S2   PSS 2006
## 11642                          Pacific island small states    S2   PSS 2007
## 11643                          Pacific island small states    S2   PSS 2008
## 11644                          Pacific island small states    S2   PSS 2009
## 11645                          Pacific island small states    S2   PSS 2010
## 11646                          Pacific island small states    S2   PSS 2011
## 11647                          Pacific island small states    S2   PSS 2012
## 11648                          Pacific island small states    S2   PSS 2013
## 11649                          Pacific island small states    S2   PSS 2014
## 11650                          Pacific island small states    S2   PSS 2015
## 11651                          Pacific island small states    S2   PSS 2016
## 11652                          Pacific island small states    S2   PSS 2017
## 11653                          Pacific island small states    S2   PSS 2018
## 11654                          Pacific island small states    S2   PSS 2019
## 11655                          Pacific island small states    S2   PSS 2020
## 11656                          Pacific island small states    S2   PSS 2021
## 11657                                             Pakistan    PK   PAK 1960
## 11658                                             Pakistan    PK   PAK 1961
## 11659                                             Pakistan    PK   PAK 1962
## 11660                                             Pakistan    PK   PAK 1963
## 11661                                             Pakistan    PK   PAK 1964
## 11662                                             Pakistan    PK   PAK 1965
## 11663                                             Pakistan    PK   PAK 1966
## 11664                                             Pakistan    PK   PAK 1967
## 11665                                             Pakistan    PK   PAK 1968
## 11666                                             Pakistan    PK   PAK 1969
## 11667                                             Pakistan    PK   PAK 1970
## 11668                                             Pakistan    PK   PAK 1971
## 11669                                             Pakistan    PK   PAK 1972
## 11670                                             Pakistan    PK   PAK 1973
## 11671                                             Pakistan    PK   PAK 1974
## 11672                                             Pakistan    PK   PAK 1975
## 11673                                             Pakistan    PK   PAK 1976
## 11674                                             Pakistan    PK   PAK 1977
## 11675                                             Pakistan    PK   PAK 1978
## 11676                                             Pakistan    PK   PAK 1979
## 11677                                             Pakistan    PK   PAK 1980
## 11678                                             Pakistan    PK   PAK 1981
## 11679                                             Pakistan    PK   PAK 1982
## 11680                                             Pakistan    PK   PAK 1983
## 11681                                             Pakistan    PK   PAK 1984
## 11682                                             Pakistan    PK   PAK 1985
## 11683                                             Pakistan    PK   PAK 1986
## 11684                                             Pakistan    PK   PAK 1987
## 11685                                             Pakistan    PK   PAK 1988
## 11686                                             Pakistan    PK   PAK 1989
## 11687                                             Pakistan    PK   PAK 1990
## 11688                                             Pakistan    PK   PAK 1991
## 11689                                             Pakistan    PK   PAK 1992
## 11690                                             Pakistan    PK   PAK 1993
## 11691                                             Pakistan    PK   PAK 1994
## 11692                                             Pakistan    PK   PAK 1995
## 11693                                             Pakistan    PK   PAK 1996
## 11694                                             Pakistan    PK   PAK 1997
## 11695                                             Pakistan    PK   PAK 1998
## 11696                                             Pakistan    PK   PAK 1999
## 11697                                             Pakistan    PK   PAK 2000
## 11698                                             Pakistan    PK   PAK 2001
## 11699                                             Pakistan    PK   PAK 2002
## 11700                                             Pakistan    PK   PAK 2003
## 11701                                             Pakistan    PK   PAK 2004
## 11702                                             Pakistan    PK   PAK 2005
## 11703                                             Pakistan    PK   PAK 2006
## 11704                                             Pakistan    PK   PAK 2007
## 11705                                             Pakistan    PK   PAK 2008
## 11706                                             Pakistan    PK   PAK 2009
## 11707                                             Pakistan    PK   PAK 2010
## 11708                                             Pakistan    PK   PAK 2011
## 11709                                             Pakistan    PK   PAK 2012
## 11710                                             Pakistan    PK   PAK 2013
## 11711                                             Pakistan    PK   PAK 2014
## 11712                                             Pakistan    PK   PAK 2015
## 11713                                             Pakistan    PK   PAK 2016
## 11714                                             Pakistan    PK   PAK 2017
## 11715                                             Pakistan    PK   PAK 2018
## 11716                                             Pakistan    PK   PAK 2019
## 11717                                             Pakistan    PK   PAK 2020
## 11718                                             Pakistan    PK   PAK 2021
## 11719                                                Palau    PW   PLW 1960
## 11720                                                Palau    PW   PLW 1961
## 11721                                                Palau    PW   PLW 1962
## 11722                                                Palau    PW   PLW 1963
## 11723                                                Palau    PW   PLW 1964
## 11724                                                Palau    PW   PLW 1965
## 11725                                                Palau    PW   PLW 1966
## 11726                                                Palau    PW   PLW 1967
## 11727                                                Palau    PW   PLW 1968
## 11728                                                Palau    PW   PLW 1969
## 11729                                                Palau    PW   PLW 1970
## 11730                                                Palau    PW   PLW 1971
## 11731                                                Palau    PW   PLW 1972
## 11732                                                Palau    PW   PLW 1973
## 11733                                                Palau    PW   PLW 1974
## 11734                                                Palau    PW   PLW 1975
## 11735                                                Palau    PW   PLW 1976
## 11736                                                Palau    PW   PLW 1977
## 11737                                                Palau    PW   PLW 1978
## 11738                                                Palau    PW   PLW 1979
## 11739                                                Palau    PW   PLW 1980
## 11740                                                Palau    PW   PLW 1981
## 11741                                                Palau    PW   PLW 1982
## 11742                                                Palau    PW   PLW 1983
## 11743                                                Palau    PW   PLW 1984
## 11744                                                Palau    PW   PLW 1985
## 11745                                                Palau    PW   PLW 1986
## 11746                                                Palau    PW   PLW 1987
## 11747                                                Palau    PW   PLW 1988
## 11748                                                Palau    PW   PLW 1989
## 11749                                                Palau    PW   PLW 1990
## 11750                                                Palau    PW   PLW 1991
## 11751                                                Palau    PW   PLW 1992
## 11752                                                Palau    PW   PLW 1993
## 11753                                                Palau    PW   PLW 1994
## 11754                                                Palau    PW   PLW 1995
## 11755                                                Palau    PW   PLW 1996
## 11756                                                Palau    PW   PLW 1997
## 11757                                                Palau    PW   PLW 1998
## 11758                                                Palau    PW   PLW 1999
## 11759                                                Palau    PW   PLW 2000
## 11760                                                Palau    PW   PLW 2001
## 11761                                                Palau    PW   PLW 2002
## 11762                                                Palau    PW   PLW 2003
## 11763                                                Palau    PW   PLW 2004
## 11764                                                Palau    PW   PLW 2005
## 11765                                                Palau    PW   PLW 2006
## 11766                                                Palau    PW   PLW 2007
## 11767                                                Palau    PW   PLW 2008
## 11768                                                Palau    PW   PLW 2009
## 11769                                                Palau    PW   PLW 2010
## 11770                                                Palau    PW   PLW 2011
## 11771                                                Palau    PW   PLW 2012
## 11772                                                Palau    PW   PLW 2013
## 11773                                                Palau    PW   PLW 2014
## 11774                                                Palau    PW   PLW 2015
## 11775                                                Palau    PW   PLW 2016
## 11776                                                Palau    PW   PLW 2017
## 11777                                                Palau    PW   PLW 2018
## 11778                                                Palau    PW   PLW 2019
## 11779                                                Palau    PW   PLW 2020
## 11780                                                Palau    PW   PLW 2021
## 11781                                               Panama    PA   PAN 1960
## 11782                                               Panama    PA   PAN 1961
## 11783                                               Panama    PA   PAN 1962
## 11784                                               Panama    PA   PAN 1963
## 11785                                               Panama    PA   PAN 1964
## 11786                                               Panama    PA   PAN 1965
## 11787                                               Panama    PA   PAN 1966
## 11788                                               Panama    PA   PAN 1967
## 11789                                               Panama    PA   PAN 1968
## 11790                                               Panama    PA   PAN 1969
## 11791                                               Panama    PA   PAN 1970
## 11792                                               Panama    PA   PAN 1971
## 11793                                               Panama    PA   PAN 1972
## 11794                                               Panama    PA   PAN 1973
## 11795                                               Panama    PA   PAN 1974
## 11796                                               Panama    PA   PAN 1975
## 11797                                               Panama    PA   PAN 1976
## 11798                                               Panama    PA   PAN 1977
## 11799                                               Panama    PA   PAN 1978
## 11800                                               Panama    PA   PAN 1979
## 11801                                               Panama    PA   PAN 1980
## 11802                                               Panama    PA   PAN 1981
## 11803                                               Panama    PA   PAN 1982
## 11804                                               Panama    PA   PAN 1983
## 11805                                               Panama    PA   PAN 1984
## 11806                                               Panama    PA   PAN 1985
## 11807                                               Panama    PA   PAN 1986
## 11808                                               Panama    PA   PAN 1987
## 11809                                               Panama    PA   PAN 1988
## 11810                                               Panama    PA   PAN 1989
## 11811                                               Panama    PA   PAN 1990
## 11812                                               Panama    PA   PAN 1991
## 11813                                               Panama    PA   PAN 1992
## 11814                                               Panama    PA   PAN 1993
## 11815                                               Panama    PA   PAN 1994
## 11816                                               Panama    PA   PAN 1995
## 11817                                               Panama    PA   PAN 1996
## 11818                                               Panama    PA   PAN 1997
## 11819                                               Panama    PA   PAN 1998
## 11820                                               Panama    PA   PAN 1999
## 11821                                               Panama    PA   PAN 2000
## 11822                                               Panama    PA   PAN 2001
## 11823                                               Panama    PA   PAN 2002
## 11824                                               Panama    PA   PAN 2003
## 11825                                               Panama    PA   PAN 2004
## 11826                                               Panama    PA   PAN 2005
## 11827                                               Panama    PA   PAN 2006
## 11828                                               Panama    PA   PAN 2007
## 11829                                               Panama    PA   PAN 2008
## 11830                                               Panama    PA   PAN 2009
## 11831                                               Panama    PA   PAN 2010
## 11832                                               Panama    PA   PAN 2011
## 11833                                               Panama    PA   PAN 2012
## 11834                                               Panama    PA   PAN 2013
## 11835                                               Panama    PA   PAN 2014
## 11836                                               Panama    PA   PAN 2015
## 11837                                               Panama    PA   PAN 2016
## 11838                                               Panama    PA   PAN 2017
## 11839                                               Panama    PA   PAN 2018
## 11840                                               Panama    PA   PAN 2019
## 11841                                               Panama    PA   PAN 2020
## 11842                                               Panama    PA   PAN 2021
## 11843                                     Papua New Guinea    PG   PNG 1960
## 11844                                     Papua New Guinea    PG   PNG 1961
## 11845                                     Papua New Guinea    PG   PNG 1962
## 11846                                     Papua New Guinea    PG   PNG 1963
## 11847                                     Papua New Guinea    PG   PNG 1964
## 11848                                     Papua New Guinea    PG   PNG 1965
## 11849                                     Papua New Guinea    PG   PNG 1966
## 11850                                     Papua New Guinea    PG   PNG 1967
## 11851                                     Papua New Guinea    PG   PNG 1968
## 11852                                     Papua New Guinea    PG   PNG 1969
## 11853                                     Papua New Guinea    PG   PNG 1970
## 11854                                     Papua New Guinea    PG   PNG 1971
## 11855                                     Papua New Guinea    PG   PNG 1972
## 11856                                     Papua New Guinea    PG   PNG 1973
## 11857                                     Papua New Guinea    PG   PNG 1974
## 11858                                     Papua New Guinea    PG   PNG 1975
## 11859                                     Papua New Guinea    PG   PNG 1976
## 11860                                     Papua New Guinea    PG   PNG 1977
## 11861                                     Papua New Guinea    PG   PNG 1978
## 11862                                     Papua New Guinea    PG   PNG 1979
## 11863                                     Papua New Guinea    PG   PNG 1980
## 11864                                     Papua New Guinea    PG   PNG 1981
## 11865                                     Papua New Guinea    PG   PNG 1982
## 11866                                     Papua New Guinea    PG   PNG 1983
## 11867                                     Papua New Guinea    PG   PNG 1984
## 11868                                     Papua New Guinea    PG   PNG 1985
## 11869                                     Papua New Guinea    PG   PNG 1986
## 11870                                     Papua New Guinea    PG   PNG 1987
## 11871                                     Papua New Guinea    PG   PNG 1988
## 11872                                     Papua New Guinea    PG   PNG 1989
## 11873                                     Papua New Guinea    PG   PNG 1990
## 11874                                     Papua New Guinea    PG   PNG 1991
## 11875                                     Papua New Guinea    PG   PNG 1992
## 11876                                     Papua New Guinea    PG   PNG 1993
## 11877                                     Papua New Guinea    PG   PNG 1994
## 11878                                     Papua New Guinea    PG   PNG 1995
## 11879                                     Papua New Guinea    PG   PNG 1996
## 11880                                     Papua New Guinea    PG   PNG 1997
## 11881                                     Papua New Guinea    PG   PNG 1998
## 11882                                     Papua New Guinea    PG   PNG 1999
## 11883                                     Papua New Guinea    PG   PNG 2000
## 11884                                     Papua New Guinea    PG   PNG 2001
## 11885                                     Papua New Guinea    PG   PNG 2002
## 11886                                     Papua New Guinea    PG   PNG 2003
## 11887                                     Papua New Guinea    PG   PNG 2004
## 11888                                     Papua New Guinea    PG   PNG 2005
## 11889                                     Papua New Guinea    PG   PNG 2006
## 11890                                     Papua New Guinea    PG   PNG 2007
## 11891                                     Papua New Guinea    PG   PNG 2008
## 11892                                     Papua New Guinea    PG   PNG 2009
## 11893                                     Papua New Guinea    PG   PNG 2010
## 11894                                     Papua New Guinea    PG   PNG 2011
## 11895                                     Papua New Guinea    PG   PNG 2012
## 11896                                     Papua New Guinea    PG   PNG 2013
## 11897                                     Papua New Guinea    PG   PNG 2014
## 11898                                     Papua New Guinea    PG   PNG 2015
## 11899                                     Papua New Guinea    PG   PNG 2016
## 11900                                     Papua New Guinea    PG   PNG 2017
## 11901                                     Papua New Guinea    PG   PNG 2018
## 11902                                     Papua New Guinea    PG   PNG 2019
## 11903                                     Papua New Guinea    PG   PNG 2020
## 11904                                     Papua New Guinea    PG   PNG 2021
## 11905                                             Paraguay    PY   PRY 1960
## 11906                                             Paraguay    PY   PRY 1961
## 11907                                             Paraguay    PY   PRY 1962
## 11908                                             Paraguay    PY   PRY 1963
## 11909                                             Paraguay    PY   PRY 1964
## 11910                                             Paraguay    PY   PRY 1965
## 11911                                             Paraguay    PY   PRY 1966
## 11912                                             Paraguay    PY   PRY 1967
## 11913                                             Paraguay    PY   PRY 1968
## 11914                                             Paraguay    PY   PRY 1969
## 11915                                             Paraguay    PY   PRY 1970
## 11916                                             Paraguay    PY   PRY 1971
## 11917                                             Paraguay    PY   PRY 1972
## 11918                                             Paraguay    PY   PRY 1973
## 11919                                             Paraguay    PY   PRY 1974
## 11920                                             Paraguay    PY   PRY 1975
## 11921                                             Paraguay    PY   PRY 1976
## 11922                                             Paraguay    PY   PRY 1977
## 11923                                             Paraguay    PY   PRY 1978
## 11924                                             Paraguay    PY   PRY 1979
## 11925                                             Paraguay    PY   PRY 1980
## 11926                                             Paraguay    PY   PRY 1981
## 11927                                             Paraguay    PY   PRY 1982
## 11928                                             Paraguay    PY   PRY 1983
## 11929                                             Paraguay    PY   PRY 1984
## 11930                                             Paraguay    PY   PRY 1985
## 11931                                             Paraguay    PY   PRY 1986
## 11932                                             Paraguay    PY   PRY 1987
## 11933                                             Paraguay    PY   PRY 1988
## 11934                                             Paraguay    PY   PRY 1989
## 11935                                             Paraguay    PY   PRY 1990
## 11936                                             Paraguay    PY   PRY 1991
## 11937                                             Paraguay    PY   PRY 1992
## 11938                                             Paraguay    PY   PRY 1993
## 11939                                             Paraguay    PY   PRY 1994
## 11940                                             Paraguay    PY   PRY 1995
## 11941                                             Paraguay    PY   PRY 1996
## 11942                                             Paraguay    PY   PRY 1997
## 11943                                             Paraguay    PY   PRY 1998
## 11944                                             Paraguay    PY   PRY 1999
## 11945                                             Paraguay    PY   PRY 2000
## 11946                                             Paraguay    PY   PRY 2001
## 11947                                             Paraguay    PY   PRY 2002
## 11948                                             Paraguay    PY   PRY 2003
## 11949                                             Paraguay    PY   PRY 2004
## 11950                                             Paraguay    PY   PRY 2005
## 11951                                             Paraguay    PY   PRY 2006
## 11952                                             Paraguay    PY   PRY 2007
## 11953                                             Paraguay    PY   PRY 2008
## 11954                                             Paraguay    PY   PRY 2009
## 11955                                             Paraguay    PY   PRY 2010
## 11956                                             Paraguay    PY   PRY 2011
## 11957                                             Paraguay    PY   PRY 2012
## 11958                                             Paraguay    PY   PRY 2013
## 11959                                             Paraguay    PY   PRY 2014
## 11960                                             Paraguay    PY   PRY 2015
## 11961                                             Paraguay    PY   PRY 2016
## 11962                                             Paraguay    PY   PRY 2017
## 11963                                             Paraguay    PY   PRY 2018
## 11964                                             Paraguay    PY   PRY 2019
## 11965                                             Paraguay    PY   PRY 2020
## 11966                                             Paraguay    PY   PRY 2021
## 11967                                                 Peru    PE   PER 1960
## 11968                                                 Peru    PE   PER 1961
## 11969                                                 Peru    PE   PER 1962
## 11970                                                 Peru    PE   PER 1963
## 11971                                                 Peru    PE   PER 1964
## 11972                                                 Peru    PE   PER 1965
## 11973                                                 Peru    PE   PER 1966
## 11974                                                 Peru    PE   PER 1967
## 11975                                                 Peru    PE   PER 1968
## 11976                                                 Peru    PE   PER 1969
## 11977                                                 Peru    PE   PER 1970
## 11978                                                 Peru    PE   PER 1971
## 11979                                                 Peru    PE   PER 1972
## 11980                                                 Peru    PE   PER 1973
## 11981                                                 Peru    PE   PER 1974
## 11982                                                 Peru    PE   PER 1975
## 11983                                                 Peru    PE   PER 1976
## 11984                                                 Peru    PE   PER 1977
## 11985                                                 Peru    PE   PER 1978
## 11986                                                 Peru    PE   PER 1979
## 11987                                                 Peru    PE   PER 1980
## 11988                                                 Peru    PE   PER 1981
## 11989                                                 Peru    PE   PER 1982
## 11990                                                 Peru    PE   PER 1983
## 11991                                                 Peru    PE   PER 1984
## 11992                                                 Peru    PE   PER 1985
## 11993                                                 Peru    PE   PER 1986
## 11994                                                 Peru    PE   PER 1987
## 11995                                                 Peru    PE   PER 1988
## 11996                                                 Peru    PE   PER 1989
## 11997                                                 Peru    PE   PER 1990
## 11998                                                 Peru    PE   PER 1991
## 11999                                                 Peru    PE   PER 1992
## 12000                                                 Peru    PE   PER 1993
## 12001                                                 Peru    PE   PER 1994
## 12002                                                 Peru    PE   PER 1995
## 12003                                                 Peru    PE   PER 1996
## 12004                                                 Peru    PE   PER 1997
## 12005                                                 Peru    PE   PER 1998
## 12006                                                 Peru    PE   PER 1999
## 12007                                                 Peru    PE   PER 2000
## 12008                                                 Peru    PE   PER 2001
## 12009                                                 Peru    PE   PER 2002
## 12010                                                 Peru    PE   PER 2003
## 12011                                                 Peru    PE   PER 2004
## 12012                                                 Peru    PE   PER 2005
## 12013                                                 Peru    PE   PER 2006
## 12014                                                 Peru    PE   PER 2007
## 12015                                                 Peru    PE   PER 2008
## 12016                                                 Peru    PE   PER 2009
## 12017                                                 Peru    PE   PER 2010
## 12018                                                 Peru    PE   PER 2011
## 12019                                                 Peru    PE   PER 2012
## 12020                                                 Peru    PE   PER 2013
## 12021                                                 Peru    PE   PER 2014
## 12022                                                 Peru    PE   PER 2015
## 12023                                                 Peru    PE   PER 2016
## 12024                                                 Peru    PE   PER 2017
## 12025                                                 Peru    PE   PER 2018
## 12026                                                 Peru    PE   PER 2019
## 12027                                                 Peru    PE   PER 2020
## 12028                                                 Peru    PE   PER 2021
## 12029                                          Philippines    PH   PHL 1960
## 12030                                          Philippines    PH   PHL 1961
## 12031                                          Philippines    PH   PHL 1962
## 12032                                          Philippines    PH   PHL 1963
## 12033                                          Philippines    PH   PHL 1964
## 12034                                          Philippines    PH   PHL 1965
## 12035                                          Philippines    PH   PHL 1966
## 12036                                          Philippines    PH   PHL 1967
## 12037                                          Philippines    PH   PHL 1968
## 12038                                          Philippines    PH   PHL 1969
## 12039                                          Philippines    PH   PHL 1970
## 12040                                          Philippines    PH   PHL 1971
## 12041                                          Philippines    PH   PHL 1972
## 12042                                          Philippines    PH   PHL 1973
## 12043                                          Philippines    PH   PHL 1974
## 12044                                          Philippines    PH   PHL 1975
## 12045                                          Philippines    PH   PHL 1976
## 12046                                          Philippines    PH   PHL 1977
## 12047                                          Philippines    PH   PHL 1978
## 12048                                          Philippines    PH   PHL 1979
## 12049                                          Philippines    PH   PHL 1980
## 12050                                          Philippines    PH   PHL 1981
## 12051                                          Philippines    PH   PHL 1982
## 12052                                          Philippines    PH   PHL 1983
## 12053                                          Philippines    PH   PHL 1984
## 12054                                          Philippines    PH   PHL 1985
## 12055                                          Philippines    PH   PHL 1986
## 12056                                          Philippines    PH   PHL 1987
## 12057                                          Philippines    PH   PHL 1988
## 12058                                          Philippines    PH   PHL 1989
## 12059                                          Philippines    PH   PHL 1990
## 12060                                          Philippines    PH   PHL 1991
## 12061                                          Philippines    PH   PHL 1992
## 12062                                          Philippines    PH   PHL 1993
## 12063                                          Philippines    PH   PHL 1994
## 12064                                          Philippines    PH   PHL 1995
## 12065                                          Philippines    PH   PHL 1996
## 12066                                          Philippines    PH   PHL 1997
## 12067                                          Philippines    PH   PHL 1998
## 12068                                          Philippines    PH   PHL 1999
## 12069                                          Philippines    PH   PHL 2000
## 12070                                          Philippines    PH   PHL 2001
## 12071                                          Philippines    PH   PHL 2002
## 12072                                          Philippines    PH   PHL 2003
## 12073                                          Philippines    PH   PHL 2004
## 12074                                          Philippines    PH   PHL 2005
## 12075                                          Philippines    PH   PHL 2006
## 12076                                          Philippines    PH   PHL 2007
## 12077                                          Philippines    PH   PHL 2008
## 12078                                          Philippines    PH   PHL 2009
## 12079                                          Philippines    PH   PHL 2010
## 12080                                          Philippines    PH   PHL 2011
## 12081                                          Philippines    PH   PHL 2012
## 12082                                          Philippines    PH   PHL 2013
## 12083                                          Philippines    PH   PHL 2014
## 12084                                          Philippines    PH   PHL 2015
## 12085                                          Philippines    PH   PHL 2016
## 12086                                          Philippines    PH   PHL 2017
## 12087                                          Philippines    PH   PHL 2018
## 12088                                          Philippines    PH   PHL 2019
## 12089                                          Philippines    PH   PHL 2020
## 12090                                          Philippines    PH   PHL 2021
## 12091                                               Poland    PL   POL 1960
## 12092                                               Poland    PL   POL 1961
## 12093                                               Poland    PL   POL 1962
## 12094                                               Poland    PL   POL 1963
## 12095                                               Poland    PL   POL 1964
## 12096                                               Poland    PL   POL 1965
## 12097                                               Poland    PL   POL 1966
## 12098                                               Poland    PL   POL 1967
## 12099                                               Poland    PL   POL 1968
## 12100                                               Poland    PL   POL 1969
## 12101                                               Poland    PL   POL 1970
## 12102                                               Poland    PL   POL 1971
## 12103                                               Poland    PL   POL 1972
## 12104                                               Poland    PL   POL 1973
## 12105                                               Poland    PL   POL 1974
## 12106                                               Poland    PL   POL 1975
## 12107                                               Poland    PL   POL 1976
## 12108                                               Poland    PL   POL 1977
## 12109                                               Poland    PL   POL 1978
## 12110                                               Poland    PL   POL 1979
## 12111                                               Poland    PL   POL 1980
## 12112                                               Poland    PL   POL 1981
## 12113                                               Poland    PL   POL 1982
## 12114                                               Poland    PL   POL 1983
## 12115                                               Poland    PL   POL 1984
## 12116                                               Poland    PL   POL 1985
## 12117                                               Poland    PL   POL 1986
## 12118                                               Poland    PL   POL 1987
## 12119                                               Poland    PL   POL 1988
## 12120                                               Poland    PL   POL 1989
## 12121                                               Poland    PL   POL 1990
## 12122                                               Poland    PL   POL 1991
## 12123                                               Poland    PL   POL 1992
## 12124                                               Poland    PL   POL 1993
## 12125                                               Poland    PL   POL 1994
## 12126                                               Poland    PL   POL 1995
## 12127                                               Poland    PL   POL 1996
## 12128                                               Poland    PL   POL 1997
## 12129                                               Poland    PL   POL 1998
## 12130                                               Poland    PL   POL 1999
## 12131                                               Poland    PL   POL 2000
## 12132                                               Poland    PL   POL 2001
## 12133                                               Poland    PL   POL 2002
## 12134                                               Poland    PL   POL 2003
## 12135                                               Poland    PL   POL 2004
## 12136                                               Poland    PL   POL 2005
## 12137                                               Poland    PL   POL 2006
## 12138                                               Poland    PL   POL 2007
## 12139                                               Poland    PL   POL 2008
## 12140                                               Poland    PL   POL 2009
## 12141                                               Poland    PL   POL 2010
## 12142                                               Poland    PL   POL 2011
## 12143                                               Poland    PL   POL 2012
## 12144                                               Poland    PL   POL 2013
## 12145                                               Poland    PL   POL 2014
## 12146                                               Poland    PL   POL 2015
## 12147                                               Poland    PL   POL 2016
## 12148                                               Poland    PL   POL 2017
## 12149                                               Poland    PL   POL 2018
## 12150                                               Poland    PL   POL 2019
## 12151                                               Poland    PL   POL 2020
## 12152                                               Poland    PL   POL 2021
## 12153                                             Portugal    PT   PRT 1960
## 12154                                             Portugal    PT   PRT 1961
## 12155                                             Portugal    PT   PRT 1962
## 12156                                             Portugal    PT   PRT 1963
## 12157                                             Portugal    PT   PRT 1964
## 12158                                             Portugal    PT   PRT 1965
## 12159                                             Portugal    PT   PRT 1966
## 12160                                             Portugal    PT   PRT 1967
## 12161                                             Portugal    PT   PRT 1968
## 12162                                             Portugal    PT   PRT 1969
## 12163                                             Portugal    PT   PRT 1970
## 12164                                             Portugal    PT   PRT 1971
## 12165                                             Portugal    PT   PRT 1972
## 12166                                             Portugal    PT   PRT 1973
## 12167                                             Portugal    PT   PRT 1974
## 12168                                             Portugal    PT   PRT 1975
## 12169                                             Portugal    PT   PRT 1976
## 12170                                             Portugal    PT   PRT 1977
## 12171                                             Portugal    PT   PRT 1978
## 12172                                             Portugal    PT   PRT 1979
## 12173                                             Portugal    PT   PRT 1980
## 12174                                             Portugal    PT   PRT 1981
## 12175                                             Portugal    PT   PRT 1982
## 12176                                             Portugal    PT   PRT 1983
## 12177                                             Portugal    PT   PRT 1984
## 12178                                             Portugal    PT   PRT 1985
## 12179                                             Portugal    PT   PRT 1986
## 12180                                             Portugal    PT   PRT 1987
## 12181                                             Portugal    PT   PRT 1988
## 12182                                             Portugal    PT   PRT 1989
## 12183                                             Portugal    PT   PRT 1990
## 12184                                             Portugal    PT   PRT 1991
## 12185                                             Portugal    PT   PRT 1992
## 12186                                             Portugal    PT   PRT 1993
## 12187                                             Portugal    PT   PRT 1994
## 12188                                             Portugal    PT   PRT 1995
## 12189                                             Portugal    PT   PRT 1996
## 12190                                             Portugal    PT   PRT 1997
## 12191                                             Portugal    PT   PRT 1998
## 12192                                             Portugal    PT   PRT 1999
## 12193                                             Portugal    PT   PRT 2000
## 12194                                             Portugal    PT   PRT 2001
## 12195                                             Portugal    PT   PRT 2002
## 12196                                             Portugal    PT   PRT 2003
## 12197                                             Portugal    PT   PRT 2004
## 12198                                             Portugal    PT   PRT 2005
## 12199                                             Portugal    PT   PRT 2006
## 12200                                             Portugal    PT   PRT 2007
## 12201                                             Portugal    PT   PRT 2008
## 12202                                             Portugal    PT   PRT 2009
## 12203                                             Portugal    PT   PRT 2010
## 12204                                             Portugal    PT   PRT 2011
## 12205                                             Portugal    PT   PRT 2012
## 12206                                             Portugal    PT   PRT 2013
## 12207                                             Portugal    PT   PRT 2014
## 12208                                             Portugal    PT   PRT 2015
## 12209                                             Portugal    PT   PRT 2016
## 12210                                             Portugal    PT   PRT 2017
## 12211                                             Portugal    PT   PRT 2018
## 12212                                             Portugal    PT   PRT 2019
## 12213                                             Portugal    PT   PRT 2020
## 12214                                             Portugal    PT   PRT 2021
## 12215                            Post-demographic dividend    V4   PST 1960
## 12216                            Post-demographic dividend    V4   PST 1961
## 12217                            Post-demographic dividend    V4   PST 1962
## 12218                            Post-demographic dividend    V4   PST 1963
## 12219                            Post-demographic dividend    V4   PST 1964
## 12220                            Post-demographic dividend    V4   PST 1965
## 12221                            Post-demographic dividend    V4   PST 1966
## 12222                            Post-demographic dividend    V4   PST 1967
## 12223                            Post-demographic dividend    V4   PST 1968
## 12224                            Post-demographic dividend    V4   PST 1969
## 12225                            Post-demographic dividend    V4   PST 1970
## 12226                            Post-demographic dividend    V4   PST 1971
## 12227                            Post-demographic dividend    V4   PST 1972
## 12228                            Post-demographic dividend    V4   PST 1973
## 12229                            Post-demographic dividend    V4   PST 1974
## 12230                            Post-demographic dividend    V4   PST 1975
## 12231                            Post-demographic dividend    V4   PST 1976
## 12232                            Post-demographic dividend    V4   PST 1977
## 12233                            Post-demographic dividend    V4   PST 1978
## 12234                            Post-demographic dividend    V4   PST 1979
## 12235                            Post-demographic dividend    V4   PST 1980
## 12236                            Post-demographic dividend    V4   PST 1981
## 12237                            Post-demographic dividend    V4   PST 1982
## 12238                            Post-demographic dividend    V4   PST 1983
## 12239                            Post-demographic dividend    V4   PST 1984
## 12240                            Post-demographic dividend    V4   PST 1985
## 12241                            Post-demographic dividend    V4   PST 1986
## 12242                            Post-demographic dividend    V4   PST 1987
## 12243                            Post-demographic dividend    V4   PST 1988
## 12244                            Post-demographic dividend    V4   PST 1989
## 12245                            Post-demographic dividend    V4   PST 1990
## 12246                            Post-demographic dividend    V4   PST 1991
## 12247                            Post-demographic dividend    V4   PST 1992
## 12248                            Post-demographic dividend    V4   PST 1993
## 12249                            Post-demographic dividend    V4   PST 1994
## 12250                            Post-demographic dividend    V4   PST 1995
## 12251                            Post-demographic dividend    V4   PST 1996
## 12252                            Post-demographic dividend    V4   PST 1997
## 12253                            Post-demographic dividend    V4   PST 1998
## 12254                            Post-demographic dividend    V4   PST 1999
## 12255                            Post-demographic dividend    V4   PST 2000
## 12256                            Post-demographic dividend    V4   PST 2001
## 12257                            Post-demographic dividend    V4   PST 2002
## 12258                            Post-demographic dividend    V4   PST 2003
## 12259                            Post-demographic dividend    V4   PST 2004
## 12260                            Post-demographic dividend    V4   PST 2005
## 12261                            Post-demographic dividend    V4   PST 2006
## 12262                            Post-demographic dividend    V4   PST 2007
## 12263                            Post-demographic dividend    V4   PST 2008
## 12264                            Post-demographic dividend    V4   PST 2009
## 12265                            Post-demographic dividend    V4   PST 2010
## 12266                            Post-demographic dividend    V4   PST 2011
## 12267                            Post-demographic dividend    V4   PST 2012
## 12268                            Post-demographic dividend    V4   PST 2013
## 12269                            Post-demographic dividend    V4   PST 2014
## 12270                            Post-demographic dividend    V4   PST 2015
## 12271                            Post-demographic dividend    V4   PST 2016
## 12272                            Post-demographic dividend    V4   PST 2017
## 12273                            Post-demographic dividend    V4   PST 2018
## 12274                            Post-demographic dividend    V4   PST 2019
## 12275                            Post-demographic dividend    V4   PST 2020
## 12276                            Post-demographic dividend    V4   PST 2021
## 12277                             Pre-demographic dividend    V1   PRE 1960
## 12278                             Pre-demographic dividend    V1   PRE 1961
## 12279                             Pre-demographic dividend    V1   PRE 1962
## 12280                             Pre-demographic dividend    V1   PRE 1963
## 12281                             Pre-demographic dividend    V1   PRE 1964
## 12282                             Pre-demographic dividend    V1   PRE 1965
## 12283                             Pre-demographic dividend    V1   PRE 1966
## 12284                             Pre-demographic dividend    V1   PRE 1967
## 12285                             Pre-demographic dividend    V1   PRE 1968
## 12286                             Pre-demographic dividend    V1   PRE 1969
## 12287                             Pre-demographic dividend    V1   PRE 1970
## 12288                             Pre-demographic dividend    V1   PRE 1971
## 12289                             Pre-demographic dividend    V1   PRE 1972
## 12290                             Pre-demographic dividend    V1   PRE 1973
## 12291                             Pre-demographic dividend    V1   PRE 1974
## 12292                             Pre-demographic dividend    V1   PRE 1975
## 12293                             Pre-demographic dividend    V1   PRE 1976
## 12294                             Pre-demographic dividend    V1   PRE 1977
## 12295                             Pre-demographic dividend    V1   PRE 1978
## 12296                             Pre-demographic dividend    V1   PRE 1979
## 12297                             Pre-demographic dividend    V1   PRE 1980
## 12298                             Pre-demographic dividend    V1   PRE 1981
## 12299                             Pre-demographic dividend    V1   PRE 1982
## 12300                             Pre-demographic dividend    V1   PRE 1983
## 12301                             Pre-demographic dividend    V1   PRE 1984
## 12302                             Pre-demographic dividend    V1   PRE 1985
## 12303                             Pre-demographic dividend    V1   PRE 1986
## 12304                             Pre-demographic dividend    V1   PRE 1987
## 12305                             Pre-demographic dividend    V1   PRE 1988
## 12306                             Pre-demographic dividend    V1   PRE 1989
## 12307                             Pre-demographic dividend    V1   PRE 1990
## 12308                             Pre-demographic dividend    V1   PRE 1991
## 12309                             Pre-demographic dividend    V1   PRE 1992
## 12310                             Pre-demographic dividend    V1   PRE 1993
## 12311                             Pre-demographic dividend    V1   PRE 1994
## 12312                             Pre-demographic dividend    V1   PRE 1995
## 12313                             Pre-demographic dividend    V1   PRE 1996
## 12314                             Pre-demographic dividend    V1   PRE 1997
## 12315                             Pre-demographic dividend    V1   PRE 1998
## 12316                             Pre-demographic dividend    V1   PRE 1999
## 12317                             Pre-demographic dividend    V1   PRE 2000
## 12318                             Pre-demographic dividend    V1   PRE 2001
## 12319                             Pre-demographic dividend    V1   PRE 2002
## 12320                             Pre-demographic dividend    V1   PRE 2003
## 12321                             Pre-demographic dividend    V1   PRE 2004
## 12322                             Pre-demographic dividend    V1   PRE 2005
## 12323                             Pre-demographic dividend    V1   PRE 2006
## 12324                             Pre-demographic dividend    V1   PRE 2007
## 12325                             Pre-demographic dividend    V1   PRE 2008
## 12326                             Pre-demographic dividend    V1   PRE 2009
## 12327                             Pre-demographic dividend    V1   PRE 2010
## 12328                             Pre-demographic dividend    V1   PRE 2011
## 12329                             Pre-demographic dividend    V1   PRE 2012
## 12330                             Pre-demographic dividend    V1   PRE 2013
## 12331                             Pre-demographic dividend    V1   PRE 2014
## 12332                             Pre-demographic dividend    V1   PRE 2015
## 12333                             Pre-demographic dividend    V1   PRE 2016
## 12334                             Pre-demographic dividend    V1   PRE 2017
## 12335                             Pre-demographic dividend    V1   PRE 2018
## 12336                             Pre-demographic dividend    V1   PRE 2019
## 12337                             Pre-demographic dividend    V1   PRE 2020
## 12338                             Pre-demographic dividend    V1   PRE 2021
## 12339                                          Puerto Rico    PR   PRI 1960
## 12340                                          Puerto Rico    PR   PRI 1961
## 12341                                          Puerto Rico    PR   PRI 1962
## 12342                                          Puerto Rico    PR   PRI 1963
## 12343                                          Puerto Rico    PR   PRI 1964
## 12344                                          Puerto Rico    PR   PRI 1965
## 12345                                          Puerto Rico    PR   PRI 1966
## 12346                                          Puerto Rico    PR   PRI 1967
## 12347                                          Puerto Rico    PR   PRI 1968
## 12348                                          Puerto Rico    PR   PRI 1969
## 12349                                          Puerto Rico    PR   PRI 1970
## 12350                                          Puerto Rico    PR   PRI 1971
## 12351                                          Puerto Rico    PR   PRI 1972
## 12352                                          Puerto Rico    PR   PRI 1973
## 12353                                          Puerto Rico    PR   PRI 1974
## 12354                                          Puerto Rico    PR   PRI 1975
## 12355                                          Puerto Rico    PR   PRI 1976
## 12356                                          Puerto Rico    PR   PRI 1977
## 12357                                          Puerto Rico    PR   PRI 1978
## 12358                                          Puerto Rico    PR   PRI 1979
## 12359                                          Puerto Rico    PR   PRI 1980
## 12360                                          Puerto Rico    PR   PRI 1981
## 12361                                          Puerto Rico    PR   PRI 1982
## 12362                                          Puerto Rico    PR   PRI 1983
## 12363                                          Puerto Rico    PR   PRI 1984
## 12364                                          Puerto Rico    PR   PRI 1985
## 12365                                          Puerto Rico    PR   PRI 1986
## 12366                                          Puerto Rico    PR   PRI 1987
## 12367                                          Puerto Rico    PR   PRI 1988
## 12368                                          Puerto Rico    PR   PRI 1989
## 12369                                          Puerto Rico    PR   PRI 1990
## 12370                                          Puerto Rico    PR   PRI 1991
## 12371                                          Puerto Rico    PR   PRI 1992
## 12372                                          Puerto Rico    PR   PRI 1993
## 12373                                          Puerto Rico    PR   PRI 1994
## 12374                                          Puerto Rico    PR   PRI 1995
## 12375                                          Puerto Rico    PR   PRI 1996
## 12376                                          Puerto Rico    PR   PRI 1997
## 12377                                          Puerto Rico    PR   PRI 1998
## 12378                                          Puerto Rico    PR   PRI 1999
## 12379                                          Puerto Rico    PR   PRI 2000
## 12380                                          Puerto Rico    PR   PRI 2001
## 12381                                          Puerto Rico    PR   PRI 2002
## 12382                                          Puerto Rico    PR   PRI 2003
## 12383                                          Puerto Rico    PR   PRI 2004
## 12384                                          Puerto Rico    PR   PRI 2005
## 12385                                          Puerto Rico    PR   PRI 2006
## 12386                                          Puerto Rico    PR   PRI 2007
## 12387                                          Puerto Rico    PR   PRI 2008
## 12388                                          Puerto Rico    PR   PRI 2009
## 12389                                          Puerto Rico    PR   PRI 2010
## 12390                                          Puerto Rico    PR   PRI 2011
## 12391                                          Puerto Rico    PR   PRI 2012
## 12392                                          Puerto Rico    PR   PRI 2013
## 12393                                          Puerto Rico    PR   PRI 2014
## 12394                                          Puerto Rico    PR   PRI 2015
## 12395                                          Puerto Rico    PR   PRI 2016
## 12396                                          Puerto Rico    PR   PRI 2017
## 12397                                          Puerto Rico    PR   PRI 2018
## 12398                                          Puerto Rico    PR   PRI 2019
## 12399                                          Puerto Rico    PR   PRI 2020
## 12400                                          Puerto Rico    PR   PRI 2021
## 12401                                                Qatar    QA   QAT 1960
## 12402                                                Qatar    QA   QAT 1961
## 12403                                                Qatar    QA   QAT 1962
## 12404                                                Qatar    QA   QAT 1963
## 12405                                                Qatar    QA   QAT 1964
## 12406                                                Qatar    QA   QAT 1965
## 12407                                                Qatar    QA   QAT 1966
## 12408                                                Qatar    QA   QAT 1967
## 12409                                                Qatar    QA   QAT 1968
## 12410                                                Qatar    QA   QAT 1969
## 12411                                                Qatar    QA   QAT 1970
## 12412                                                Qatar    QA   QAT 1971
## 12413                                                Qatar    QA   QAT 1972
## 12414                                                Qatar    QA   QAT 1973
## 12415                                                Qatar    QA   QAT 1974
## 12416                                                Qatar    QA   QAT 1975
## 12417                                                Qatar    QA   QAT 1976
## 12418                                                Qatar    QA   QAT 1977
## 12419                                                Qatar    QA   QAT 1978
## 12420                                                Qatar    QA   QAT 1979
## 12421                                                Qatar    QA   QAT 1980
## 12422                                                Qatar    QA   QAT 1981
## 12423                                                Qatar    QA   QAT 1982
## 12424                                                Qatar    QA   QAT 1983
## 12425                                                Qatar    QA   QAT 1984
## 12426                                                Qatar    QA   QAT 1985
## 12427                                                Qatar    QA   QAT 1986
## 12428                                                Qatar    QA   QAT 1987
## 12429                                                Qatar    QA   QAT 1988
## 12430                                                Qatar    QA   QAT 1989
## 12431                                                Qatar    QA   QAT 1990
## 12432                                                Qatar    QA   QAT 1991
## 12433                                                Qatar    QA   QAT 1992
## 12434                                                Qatar    QA   QAT 1993
## 12435                                                Qatar    QA   QAT 1994
## 12436                                                Qatar    QA   QAT 1995
## 12437                                                Qatar    QA   QAT 1996
## 12438                                                Qatar    QA   QAT 1997
## 12439                                                Qatar    QA   QAT 1998
## 12440                                                Qatar    QA   QAT 1999
## 12441                                                Qatar    QA   QAT 2000
## 12442                                                Qatar    QA   QAT 2001
## 12443                                                Qatar    QA   QAT 2002
## 12444                                                Qatar    QA   QAT 2003
## 12445                                                Qatar    QA   QAT 2004
## 12446                                                Qatar    QA   QAT 2005
## 12447                                                Qatar    QA   QAT 2006
## 12448                                                Qatar    QA   QAT 2007
## 12449                                                Qatar    QA   QAT 2008
## 12450                                                Qatar    QA   QAT 2009
## 12451                                                Qatar    QA   QAT 2010
## 12452                                                Qatar    QA   QAT 2011
## 12453                                                Qatar    QA   QAT 2012
## 12454                                                Qatar    QA   QAT 2013
## 12455                                                Qatar    QA   QAT 2014
## 12456                                                Qatar    QA   QAT 2015
## 12457                                                Qatar    QA   QAT 2016
## 12458                                                Qatar    QA   QAT 2017
## 12459                                                Qatar    QA   QAT 2018
## 12460                                                Qatar    QA   QAT 2019
## 12461                                                Qatar    QA   QAT 2020
## 12462                                                Qatar    QA   QAT 2021
## 12463                                              Romania    RO   ROU 1960
## 12464                                              Romania    RO   ROU 1961
## 12465                                              Romania    RO   ROU 1962
## 12466                                              Romania    RO   ROU 1963
## 12467                                              Romania    RO   ROU 1964
## 12468                                              Romania    RO   ROU 1965
## 12469                                              Romania    RO   ROU 1966
## 12470                                              Romania    RO   ROU 1967
## 12471                                              Romania    RO   ROU 1968
## 12472                                              Romania    RO   ROU 1969
## 12473                                              Romania    RO   ROU 1970
## 12474                                              Romania    RO   ROU 1971
## 12475                                              Romania    RO   ROU 1972
## 12476                                              Romania    RO   ROU 1973
## 12477                                              Romania    RO   ROU 1974
## 12478                                              Romania    RO   ROU 1975
## 12479                                              Romania    RO   ROU 1976
## 12480                                              Romania    RO   ROU 1977
## 12481                                              Romania    RO   ROU 1978
## 12482                                              Romania    RO   ROU 1979
## 12483                                              Romania    RO   ROU 1980
## 12484                                              Romania    RO   ROU 1981
## 12485                                              Romania    RO   ROU 1982
## 12486                                              Romania    RO   ROU 1983
## 12487                                              Romania    RO   ROU 1984
## 12488                                              Romania    RO   ROU 1985
## 12489                                              Romania    RO   ROU 1986
## 12490                                              Romania    RO   ROU 1987
## 12491                                              Romania    RO   ROU 1988
## 12492                                              Romania    RO   ROU 1989
## 12493                                              Romania    RO   ROU 1990
## 12494                                              Romania    RO   ROU 1991
## 12495                                              Romania    RO   ROU 1992
## 12496                                              Romania    RO   ROU 1993
## 12497                                              Romania    RO   ROU 1994
## 12498                                              Romania    RO   ROU 1995
## 12499                                              Romania    RO   ROU 1996
## 12500                                              Romania    RO   ROU 1997
## 12501                                              Romania    RO   ROU 1998
## 12502                                              Romania    RO   ROU 1999
## 12503                                              Romania    RO   ROU 2000
## 12504                                              Romania    RO   ROU 2001
## 12505                                              Romania    RO   ROU 2002
## 12506                                              Romania    RO   ROU 2003
## 12507                                              Romania    RO   ROU 2004
## 12508                                              Romania    RO   ROU 2005
## 12509                                              Romania    RO   ROU 2006
## 12510                                              Romania    RO   ROU 2007
## 12511                                              Romania    RO   ROU 2008
## 12512                                              Romania    RO   ROU 2009
## 12513                                              Romania    RO   ROU 2010
## 12514                                              Romania    RO   ROU 2011
## 12515                                              Romania    RO   ROU 2012
## 12516                                              Romania    RO   ROU 2013
## 12517                                              Romania    RO   ROU 2014
## 12518                                              Romania    RO   ROU 2015
## 12519                                              Romania    RO   ROU 2016
## 12520                                              Romania    RO   ROU 2017
## 12521                                              Romania    RO   ROU 2018
## 12522                                              Romania    RO   ROU 2019
## 12523                                              Romania    RO   ROU 2020
## 12524                                              Romania    RO   ROU 2021
## 12525                                   Russian Federation    RU   RUS 1960
## 12526                                   Russian Federation    RU   RUS 1961
## 12527                                   Russian Federation    RU   RUS 1962
## 12528                                   Russian Federation    RU   RUS 1963
## 12529                                   Russian Federation    RU   RUS 1964
## 12530                                   Russian Federation    RU   RUS 1965
## 12531                                   Russian Federation    RU   RUS 1966
## 12532                                   Russian Federation    RU   RUS 1967
## 12533                                   Russian Federation    RU   RUS 1968
## 12534                                   Russian Federation    RU   RUS 1969
## 12535                                   Russian Federation    RU   RUS 1970
## 12536                                   Russian Federation    RU   RUS 1971
## 12537                                   Russian Federation    RU   RUS 1972
## 12538                                   Russian Federation    RU   RUS 1973
## 12539                                   Russian Federation    RU   RUS 1974
## 12540                                   Russian Federation    RU   RUS 1975
## 12541                                   Russian Federation    RU   RUS 1976
## 12542                                   Russian Federation    RU   RUS 1977
## 12543                                   Russian Federation    RU   RUS 1978
## 12544                                   Russian Federation    RU   RUS 1979
## 12545                                   Russian Federation    RU   RUS 1980
## 12546                                   Russian Federation    RU   RUS 1981
## 12547                                   Russian Federation    RU   RUS 1982
## 12548                                   Russian Federation    RU   RUS 1983
## 12549                                   Russian Federation    RU   RUS 1984
## 12550                                   Russian Federation    RU   RUS 1985
## 12551                                   Russian Federation    RU   RUS 1986
## 12552                                   Russian Federation    RU   RUS 1987
## 12553                                   Russian Federation    RU   RUS 1988
## 12554                                   Russian Federation    RU   RUS 1989
## 12555                                   Russian Federation    RU   RUS 1990
## 12556                                   Russian Federation    RU   RUS 1991
## 12557                                   Russian Federation    RU   RUS 1992
## 12558                                   Russian Federation    RU   RUS 1993
## 12559                                   Russian Federation    RU   RUS 1994
## 12560                                   Russian Federation    RU   RUS 1995
## 12561                                   Russian Federation    RU   RUS 1996
## 12562                                   Russian Federation    RU   RUS 1997
## 12563                                   Russian Federation    RU   RUS 1998
## 12564                                   Russian Federation    RU   RUS 1999
## 12565                                   Russian Federation    RU   RUS 2000
## 12566                                   Russian Federation    RU   RUS 2001
## 12567                                   Russian Federation    RU   RUS 2002
## 12568                                   Russian Federation    RU   RUS 2003
## 12569                                   Russian Federation    RU   RUS 2004
## 12570                                   Russian Federation    RU   RUS 2005
## 12571                                   Russian Federation    RU   RUS 2006
## 12572                                   Russian Federation    RU   RUS 2007
## 12573                                   Russian Federation    RU   RUS 2008
## 12574                                   Russian Federation    RU   RUS 2009
## 12575                                   Russian Federation    RU   RUS 2010
## 12576                                   Russian Federation    RU   RUS 2011
## 12577                                   Russian Federation    RU   RUS 2012
## 12578                                   Russian Federation    RU   RUS 2013
## 12579                                   Russian Federation    RU   RUS 2014
## 12580                                   Russian Federation    RU   RUS 2015
## 12581                                   Russian Federation    RU   RUS 2016
## 12582                                   Russian Federation    RU   RUS 2017
## 12583                                   Russian Federation    RU   RUS 2018
## 12584                                   Russian Federation    RU   RUS 2019
## 12585                                   Russian Federation    RU   RUS 2020
## 12586                                   Russian Federation    RU   RUS 2021
## 12587                                               Rwanda    RW   RWA 1960
## 12588                                               Rwanda    RW   RWA 1961
## 12589                                               Rwanda    RW   RWA 1962
## 12590                                               Rwanda    RW   RWA 1963
## 12591                                               Rwanda    RW   RWA 1964
## 12592                                               Rwanda    RW   RWA 1965
## 12593                                               Rwanda    RW   RWA 1966
## 12594                                               Rwanda    RW   RWA 1967
## 12595                                               Rwanda    RW   RWA 1968
## 12596                                               Rwanda    RW   RWA 1969
## 12597                                               Rwanda    RW   RWA 1970
## 12598                                               Rwanda    RW   RWA 1971
## 12599                                               Rwanda    RW   RWA 1972
## 12600                                               Rwanda    RW   RWA 1973
## 12601                                               Rwanda    RW   RWA 1974
## 12602                                               Rwanda    RW   RWA 1975
## 12603                                               Rwanda    RW   RWA 1976
## 12604                                               Rwanda    RW   RWA 1977
## 12605                                               Rwanda    RW   RWA 1978
## 12606                                               Rwanda    RW   RWA 1979
## 12607                                               Rwanda    RW   RWA 1980
## 12608                                               Rwanda    RW   RWA 1981
## 12609                                               Rwanda    RW   RWA 1982
## 12610                                               Rwanda    RW   RWA 1983
## 12611                                               Rwanda    RW   RWA 1984
## 12612                                               Rwanda    RW   RWA 1985
## 12613                                               Rwanda    RW   RWA 1986
## 12614                                               Rwanda    RW   RWA 1987
## 12615                                               Rwanda    RW   RWA 1988
## 12616                                               Rwanda    RW   RWA 1989
## 12617                                               Rwanda    RW   RWA 1990
## 12618                                               Rwanda    RW   RWA 1991
## 12619                                               Rwanda    RW   RWA 1992
## 12620                                               Rwanda    RW   RWA 1993
## 12621                                               Rwanda    RW   RWA 1994
## 12622                                               Rwanda    RW   RWA 1995
## 12623                                               Rwanda    RW   RWA 1996
## 12624                                               Rwanda    RW   RWA 1997
## 12625                                               Rwanda    RW   RWA 1998
## 12626                                               Rwanda    RW   RWA 1999
## 12627                                               Rwanda    RW   RWA 2000
## 12628                                               Rwanda    RW   RWA 2001
## 12629                                               Rwanda    RW   RWA 2002
## 12630                                               Rwanda    RW   RWA 2003
## 12631                                               Rwanda    RW   RWA 2004
## 12632                                               Rwanda    RW   RWA 2005
## 12633                                               Rwanda    RW   RWA 2006
## 12634                                               Rwanda    RW   RWA 2007
## 12635                                               Rwanda    RW   RWA 2008
## 12636                                               Rwanda    RW   RWA 2009
## 12637                                               Rwanda    RW   RWA 2010
## 12638                                               Rwanda    RW   RWA 2011
## 12639                                               Rwanda    RW   RWA 2012
## 12640                                               Rwanda    RW   RWA 2013
## 12641                                               Rwanda    RW   RWA 2014
## 12642                                               Rwanda    RW   RWA 2015
## 12643                                               Rwanda    RW   RWA 2016
## 12644                                               Rwanda    RW   RWA 2017
## 12645                                               Rwanda    RW   RWA 2018
## 12646                                               Rwanda    RW   RWA 2019
## 12647                                               Rwanda    RW   RWA 2020
## 12648                                               Rwanda    RW   RWA 2021
## 12649                                                Samoa    WS   WSM 1960
## 12650                                                Samoa    WS   WSM 1961
## 12651                                                Samoa    WS   WSM 1962
## 12652                                                Samoa    WS   WSM 1963
## 12653                                                Samoa    WS   WSM 1964
## 12654                                                Samoa    WS   WSM 1965
## 12655                                                Samoa    WS   WSM 1966
## 12656                                                Samoa    WS   WSM 1967
## 12657                                                Samoa    WS   WSM 1968
## 12658                                                Samoa    WS   WSM 1969
## 12659                                                Samoa    WS   WSM 1970
## 12660                                                Samoa    WS   WSM 1971
## 12661                                                Samoa    WS   WSM 1972
## 12662                                                Samoa    WS   WSM 1973
## 12663                                                Samoa    WS   WSM 1974
## 12664                                                Samoa    WS   WSM 1975
## 12665                                                Samoa    WS   WSM 1976
## 12666                                                Samoa    WS   WSM 1977
## 12667                                                Samoa    WS   WSM 1978
## 12668                                                Samoa    WS   WSM 1979
## 12669                                                Samoa    WS   WSM 1980
## 12670                                                Samoa    WS   WSM 1981
## 12671                                                Samoa    WS   WSM 1982
## 12672                                                Samoa    WS   WSM 1983
## 12673                                                Samoa    WS   WSM 1984
## 12674                                                Samoa    WS   WSM 1985
## 12675                                                Samoa    WS   WSM 1986
## 12676                                                Samoa    WS   WSM 1987
## 12677                                                Samoa    WS   WSM 1988
## 12678                                                Samoa    WS   WSM 1989
## 12679                                                Samoa    WS   WSM 1990
## 12680                                                Samoa    WS   WSM 1991
## 12681                                                Samoa    WS   WSM 1992
## 12682                                                Samoa    WS   WSM 1993
## 12683                                                Samoa    WS   WSM 1994
## 12684                                                Samoa    WS   WSM 1995
## 12685                                                Samoa    WS   WSM 1996
## 12686                                                Samoa    WS   WSM 1997
## 12687                                                Samoa    WS   WSM 1998
## 12688                                                Samoa    WS   WSM 1999
## 12689                                                Samoa    WS   WSM 2000
## 12690                                                Samoa    WS   WSM 2001
## 12691                                                Samoa    WS   WSM 2002
## 12692                                                Samoa    WS   WSM 2003
## 12693                                                Samoa    WS   WSM 2004
## 12694                                                Samoa    WS   WSM 2005
## 12695                                                Samoa    WS   WSM 2006
## 12696                                                Samoa    WS   WSM 2007
## 12697                                                Samoa    WS   WSM 2008
## 12698                                                Samoa    WS   WSM 2009
## 12699                                                Samoa    WS   WSM 2010
## 12700                                                Samoa    WS   WSM 2011
## 12701                                                Samoa    WS   WSM 2012
## 12702                                                Samoa    WS   WSM 2013
## 12703                                                Samoa    WS   WSM 2014
## 12704                                                Samoa    WS   WSM 2015
## 12705                                                Samoa    WS   WSM 2016
## 12706                                                Samoa    WS   WSM 2017
## 12707                                                Samoa    WS   WSM 2018
## 12708                                                Samoa    WS   WSM 2019
## 12709                                                Samoa    WS   WSM 2020
## 12710                                                Samoa    WS   WSM 2021
## 12711                                           San Marino    SM   SMR 1960
## 12712                                           San Marino    SM   SMR 1961
## 12713                                           San Marino    SM   SMR 1962
## 12714                                           San Marino    SM   SMR 1963
## 12715                                           San Marino    SM   SMR 1964
## 12716                                           San Marino    SM   SMR 1965
## 12717                                           San Marino    SM   SMR 1966
## 12718                                           San Marino    SM   SMR 1967
## 12719                                           San Marino    SM   SMR 1968
## 12720                                           San Marino    SM   SMR 1969
## 12721                                           San Marino    SM   SMR 1970
## 12722                                           San Marino    SM   SMR 1971
## 12723                                           San Marino    SM   SMR 1972
## 12724                                           San Marino    SM   SMR 1973
## 12725                                           San Marino    SM   SMR 1974
## 12726                                           San Marino    SM   SMR 1975
## 12727                                           San Marino    SM   SMR 1976
## 12728                                           San Marino    SM   SMR 1977
## 12729                                           San Marino    SM   SMR 1978
## 12730                                           San Marino    SM   SMR 1979
## 12731                                           San Marino    SM   SMR 1980
## 12732                                           San Marino    SM   SMR 1981
## 12733                                           San Marino    SM   SMR 1982
## 12734                                           San Marino    SM   SMR 1983
## 12735                                           San Marino    SM   SMR 1984
## 12736                                           San Marino    SM   SMR 1985
## 12737                                           San Marino    SM   SMR 1986
## 12738                                           San Marino    SM   SMR 1987
## 12739                                           San Marino    SM   SMR 1988
## 12740                                           San Marino    SM   SMR 1989
## 12741                                           San Marino    SM   SMR 1990
## 12742                                           San Marino    SM   SMR 1991
## 12743                                           San Marino    SM   SMR 1992
## 12744                                           San Marino    SM   SMR 1993
## 12745                                           San Marino    SM   SMR 1994
## 12746                                           San Marino    SM   SMR 1995
## 12747                                           San Marino    SM   SMR 1996
## 12748                                           San Marino    SM   SMR 1997
## 12749                                           San Marino    SM   SMR 1998
## 12750                                           San Marino    SM   SMR 1999
## 12751                                           San Marino    SM   SMR 2000
## 12752                                           San Marino    SM   SMR 2001
## 12753                                           San Marino    SM   SMR 2002
## 12754                                           San Marino    SM   SMR 2003
## 12755                                           San Marino    SM   SMR 2004
## 12756                                           San Marino    SM   SMR 2005
## 12757                                           San Marino    SM   SMR 2006
## 12758                                           San Marino    SM   SMR 2007
## 12759                                           San Marino    SM   SMR 2008
## 12760                                           San Marino    SM   SMR 2009
## 12761                                           San Marino    SM   SMR 2010
## 12762                                           San Marino    SM   SMR 2011
## 12763                                           San Marino    SM   SMR 2012
## 12764                                           San Marino    SM   SMR 2013
## 12765                                           San Marino    SM   SMR 2014
## 12766                                           San Marino    SM   SMR 2015
## 12767                                           San Marino    SM   SMR 2016
## 12768                                           San Marino    SM   SMR 2017
## 12769                                           San Marino    SM   SMR 2018
## 12770                                           San Marino    SM   SMR 2019
## 12771                                           San Marino    SM   SMR 2020
## 12772                                           San Marino    SM   SMR 2021
## 12773                                Sao Tome and Principe    ST   STP 1960
## 12774                                Sao Tome and Principe    ST   STP 1961
## 12775                                Sao Tome and Principe    ST   STP 1962
## 12776                                Sao Tome and Principe    ST   STP 1963
## 12777                                Sao Tome and Principe    ST   STP 1964
## 12778                                Sao Tome and Principe    ST   STP 1965
## 12779                                Sao Tome and Principe    ST   STP 1966
## 12780                                Sao Tome and Principe    ST   STP 1967
## 12781                                Sao Tome and Principe    ST   STP 1968
## 12782                                Sao Tome and Principe    ST   STP 1969
## 12783                                Sao Tome and Principe    ST   STP 1970
## 12784                                Sao Tome and Principe    ST   STP 1971
## 12785                                Sao Tome and Principe    ST   STP 1972
## 12786                                Sao Tome and Principe    ST   STP 1973
## 12787                                Sao Tome and Principe    ST   STP 1974
## 12788                                Sao Tome and Principe    ST   STP 1975
## 12789                                Sao Tome and Principe    ST   STP 1976
## 12790                                Sao Tome and Principe    ST   STP 1977
## 12791                                Sao Tome and Principe    ST   STP 1978
## 12792                                Sao Tome and Principe    ST   STP 1979
## 12793                                Sao Tome and Principe    ST   STP 1980
## 12794                                Sao Tome and Principe    ST   STP 1981
## 12795                                Sao Tome and Principe    ST   STP 1982
## 12796                                Sao Tome and Principe    ST   STP 1983
## 12797                                Sao Tome and Principe    ST   STP 1984
## 12798                                Sao Tome and Principe    ST   STP 1985
## 12799                                Sao Tome and Principe    ST   STP 1986
## 12800                                Sao Tome and Principe    ST   STP 1987
## 12801                                Sao Tome and Principe    ST   STP 1988
## 12802                                Sao Tome and Principe    ST   STP 1989
## 12803                                Sao Tome and Principe    ST   STP 1990
## 12804                                Sao Tome and Principe    ST   STP 1991
## 12805                                Sao Tome and Principe    ST   STP 1992
## 12806                                Sao Tome and Principe    ST   STP 1993
## 12807                                Sao Tome and Principe    ST   STP 1994
## 12808                                Sao Tome and Principe    ST   STP 1995
## 12809                                Sao Tome and Principe    ST   STP 1996
## 12810                                Sao Tome and Principe    ST   STP 1997
## 12811                                Sao Tome and Principe    ST   STP 1998
## 12812                                Sao Tome and Principe    ST   STP 1999
## 12813                                Sao Tome and Principe    ST   STP 2000
## 12814                                Sao Tome and Principe    ST   STP 2001
## 12815                                Sao Tome and Principe    ST   STP 2002
## 12816                                Sao Tome and Principe    ST   STP 2003
## 12817                                Sao Tome and Principe    ST   STP 2004
## 12818                                Sao Tome and Principe    ST   STP 2005
## 12819                                Sao Tome and Principe    ST   STP 2006
## 12820                                Sao Tome and Principe    ST   STP 2007
## 12821                                Sao Tome and Principe    ST   STP 2008
## 12822                                Sao Tome and Principe    ST   STP 2009
## 12823                                Sao Tome and Principe    ST   STP 2010
## 12824                                Sao Tome and Principe    ST   STP 2011
## 12825                                Sao Tome and Principe    ST   STP 2012
## 12826                                Sao Tome and Principe    ST   STP 2013
## 12827                                Sao Tome and Principe    ST   STP 2014
## 12828                                Sao Tome and Principe    ST   STP 2015
## 12829                                Sao Tome and Principe    ST   STP 2016
## 12830                                Sao Tome and Principe    ST   STP 2017
## 12831                                Sao Tome and Principe    ST   STP 2018
## 12832                                Sao Tome and Principe    ST   STP 2019
## 12833                                Sao Tome and Principe    ST   STP 2020
## 12834                                Sao Tome and Principe    ST   STP 2021
## 12835                                         Saudi Arabia    SA   SAU 1960
## 12836                                         Saudi Arabia    SA   SAU 1961
## 12837                                         Saudi Arabia    SA   SAU 1962
## 12838                                         Saudi Arabia    SA   SAU 1963
## 12839                                         Saudi Arabia    SA   SAU 1964
## 12840                                         Saudi Arabia    SA   SAU 1965
## 12841                                         Saudi Arabia    SA   SAU 1966
## 12842                                         Saudi Arabia    SA   SAU 1967
## 12843                                         Saudi Arabia    SA   SAU 1968
## 12844                                         Saudi Arabia    SA   SAU 1969
## 12845                                         Saudi Arabia    SA   SAU 1970
## 12846                                         Saudi Arabia    SA   SAU 1971
## 12847                                         Saudi Arabia    SA   SAU 1972
## 12848                                         Saudi Arabia    SA   SAU 1973
## 12849                                         Saudi Arabia    SA   SAU 1974
## 12850                                         Saudi Arabia    SA   SAU 1975
## 12851                                         Saudi Arabia    SA   SAU 1976
## 12852                                         Saudi Arabia    SA   SAU 1977
## 12853                                         Saudi Arabia    SA   SAU 1978
## 12854                                         Saudi Arabia    SA   SAU 1979
## 12855                                         Saudi Arabia    SA   SAU 1980
## 12856                                         Saudi Arabia    SA   SAU 1981
## 12857                                         Saudi Arabia    SA   SAU 1982
## 12858                                         Saudi Arabia    SA   SAU 1983
## 12859                                         Saudi Arabia    SA   SAU 1984
## 12860                                         Saudi Arabia    SA   SAU 1985
## 12861                                         Saudi Arabia    SA   SAU 1986
## 12862                                         Saudi Arabia    SA   SAU 1987
## 12863                                         Saudi Arabia    SA   SAU 1988
## 12864                                         Saudi Arabia    SA   SAU 1989
## 12865                                         Saudi Arabia    SA   SAU 1990
## 12866                                         Saudi Arabia    SA   SAU 1991
## 12867                                         Saudi Arabia    SA   SAU 1992
## 12868                                         Saudi Arabia    SA   SAU 1993
## 12869                                         Saudi Arabia    SA   SAU 1994
## 12870                                         Saudi Arabia    SA   SAU 1995
## 12871                                         Saudi Arabia    SA   SAU 1996
## 12872                                         Saudi Arabia    SA   SAU 1997
## 12873                                         Saudi Arabia    SA   SAU 1998
## 12874                                         Saudi Arabia    SA   SAU 1999
## 12875                                         Saudi Arabia    SA   SAU 2000
## 12876                                         Saudi Arabia    SA   SAU 2001
## 12877                                         Saudi Arabia    SA   SAU 2002
## 12878                                         Saudi Arabia    SA   SAU 2003
## 12879                                         Saudi Arabia    SA   SAU 2004
## 12880                                         Saudi Arabia    SA   SAU 2005
## 12881                                         Saudi Arabia    SA   SAU 2006
## 12882                                         Saudi Arabia    SA   SAU 2007
## 12883                                         Saudi Arabia    SA   SAU 2008
## 12884                                         Saudi Arabia    SA   SAU 2009
## 12885                                         Saudi Arabia    SA   SAU 2010
## 12886                                         Saudi Arabia    SA   SAU 2011
## 12887                                         Saudi Arabia    SA   SAU 2012
## 12888                                         Saudi Arabia    SA   SAU 2013
## 12889                                         Saudi Arabia    SA   SAU 2014
## 12890                                         Saudi Arabia    SA   SAU 2015
## 12891                                         Saudi Arabia    SA   SAU 2016
## 12892                                         Saudi Arabia    SA   SAU 2017
## 12893                                         Saudi Arabia    SA   SAU 2018
## 12894                                         Saudi Arabia    SA   SAU 2019
## 12895                                         Saudi Arabia    SA   SAU 2020
## 12896                                         Saudi Arabia    SA   SAU 2021
## 12897                                              Senegal    SN   SEN 1960
## 12898                                              Senegal    SN   SEN 1961
## 12899                                              Senegal    SN   SEN 1962
## 12900                                              Senegal    SN   SEN 1963
## 12901                                              Senegal    SN   SEN 1964
## 12902                                              Senegal    SN   SEN 1965
## 12903                                              Senegal    SN   SEN 1966
## 12904                                              Senegal    SN   SEN 1967
## 12905                                              Senegal    SN   SEN 1968
## 12906                                              Senegal    SN   SEN 1969
## 12907                                              Senegal    SN   SEN 1970
## 12908                                              Senegal    SN   SEN 1971
## 12909                                              Senegal    SN   SEN 1972
## 12910                                              Senegal    SN   SEN 1973
## 12911                                              Senegal    SN   SEN 1974
## 12912                                              Senegal    SN   SEN 1975
## 12913                                              Senegal    SN   SEN 1976
## 12914                                              Senegal    SN   SEN 1977
## 12915                                              Senegal    SN   SEN 1978
## 12916                                              Senegal    SN   SEN 1979
## 12917                                              Senegal    SN   SEN 1980
## 12918                                              Senegal    SN   SEN 1981
## 12919                                              Senegal    SN   SEN 1982
## 12920                                              Senegal    SN   SEN 1983
## 12921                                              Senegal    SN   SEN 1984
## 12922                                              Senegal    SN   SEN 1985
## 12923                                              Senegal    SN   SEN 1986
## 12924                                              Senegal    SN   SEN 1987
## 12925                                              Senegal    SN   SEN 1988
## 12926                                              Senegal    SN   SEN 1989
## 12927                                              Senegal    SN   SEN 1990
## 12928                                              Senegal    SN   SEN 1991
## 12929                                              Senegal    SN   SEN 1992
## 12930                                              Senegal    SN   SEN 1993
## 12931                                              Senegal    SN   SEN 1994
## 12932                                              Senegal    SN   SEN 1995
## 12933                                              Senegal    SN   SEN 1996
## 12934                                              Senegal    SN   SEN 1997
## 12935                                              Senegal    SN   SEN 1998
## 12936                                              Senegal    SN   SEN 1999
## 12937                                              Senegal    SN   SEN 2000
## 12938                                              Senegal    SN   SEN 2001
## 12939                                              Senegal    SN   SEN 2002
## 12940                                              Senegal    SN   SEN 2003
## 12941                                              Senegal    SN   SEN 2004
## 12942                                              Senegal    SN   SEN 2005
## 12943                                              Senegal    SN   SEN 2006
## 12944                                              Senegal    SN   SEN 2007
## 12945                                              Senegal    SN   SEN 2008
## 12946                                              Senegal    SN   SEN 2009
## 12947                                              Senegal    SN   SEN 2010
## 12948                                              Senegal    SN   SEN 2011
## 12949                                              Senegal    SN   SEN 2012
## 12950                                              Senegal    SN   SEN 2013
## 12951                                              Senegal    SN   SEN 2014
## 12952                                              Senegal    SN   SEN 2015
## 12953                                              Senegal    SN   SEN 2016
## 12954                                              Senegal    SN   SEN 2017
## 12955                                              Senegal    SN   SEN 2018
## 12956                                              Senegal    SN   SEN 2019
## 12957                                              Senegal    SN   SEN 2020
## 12958                                              Senegal    SN   SEN 2021
## 12959                                               Serbia    RS   SRB 1960
## 12960                                               Serbia    RS   SRB 1961
## 12961                                               Serbia    RS   SRB 1962
## 12962                                               Serbia    RS   SRB 1963
## 12963                                               Serbia    RS   SRB 1964
## 12964                                               Serbia    RS   SRB 1965
## 12965                                               Serbia    RS   SRB 1966
## 12966                                               Serbia    RS   SRB 1967
## 12967                                               Serbia    RS   SRB 1968
## 12968                                               Serbia    RS   SRB 1969
## 12969                                               Serbia    RS   SRB 1970
## 12970                                               Serbia    RS   SRB 1971
## 12971                                               Serbia    RS   SRB 1972
## 12972                                               Serbia    RS   SRB 1973
## 12973                                               Serbia    RS   SRB 1974
## 12974                                               Serbia    RS   SRB 1975
## 12975                                               Serbia    RS   SRB 1976
## 12976                                               Serbia    RS   SRB 1977
## 12977                                               Serbia    RS   SRB 1978
## 12978                                               Serbia    RS   SRB 1979
## 12979                                               Serbia    RS   SRB 1980
## 12980                                               Serbia    RS   SRB 1981
## 12981                                               Serbia    RS   SRB 1982
## 12982                                               Serbia    RS   SRB 1983
## 12983                                               Serbia    RS   SRB 1984
## 12984                                               Serbia    RS   SRB 1985
## 12985                                               Serbia    RS   SRB 1986
## 12986                                               Serbia    RS   SRB 1987
## 12987                                               Serbia    RS   SRB 1988
## 12988                                               Serbia    RS   SRB 1989
## 12989                                               Serbia    RS   SRB 1990
## 12990                                               Serbia    RS   SRB 1991
## 12991                                               Serbia    RS   SRB 1992
## 12992                                               Serbia    RS   SRB 1993
## 12993                                               Serbia    RS   SRB 1994
## 12994                                               Serbia    RS   SRB 1995
## 12995                                               Serbia    RS   SRB 1996
## 12996                                               Serbia    RS   SRB 1997
## 12997                                               Serbia    RS   SRB 1998
## 12998                                               Serbia    RS   SRB 1999
## 12999                                               Serbia    RS   SRB 2000
## 13000                                               Serbia    RS   SRB 2001
## 13001                                               Serbia    RS   SRB 2002
## 13002                                               Serbia    RS   SRB 2003
## 13003                                               Serbia    RS   SRB 2004
## 13004                                               Serbia    RS   SRB 2005
## 13005                                               Serbia    RS   SRB 2006
## 13006                                               Serbia    RS   SRB 2007
## 13007                                               Serbia    RS   SRB 2008
## 13008                                               Serbia    RS   SRB 2009
## 13009                                               Serbia    RS   SRB 2010
## 13010                                               Serbia    RS   SRB 2011
## 13011                                               Serbia    RS   SRB 2012
## 13012                                               Serbia    RS   SRB 2013
## 13013                                               Serbia    RS   SRB 2014
## 13014                                               Serbia    RS   SRB 2015
## 13015                                               Serbia    RS   SRB 2016
## 13016                                               Serbia    RS   SRB 2017
## 13017                                               Serbia    RS   SRB 2018
## 13018                                               Serbia    RS   SRB 2019
## 13019                                               Serbia    RS   SRB 2020
## 13020                                               Serbia    RS   SRB 2021
## 13021                                           Seychelles    SC   SYC 1960
## 13022                                           Seychelles    SC   SYC 1961
## 13023                                           Seychelles    SC   SYC 1962
## 13024                                           Seychelles    SC   SYC 1963
## 13025                                           Seychelles    SC   SYC 1964
## 13026                                           Seychelles    SC   SYC 1965
## 13027                                           Seychelles    SC   SYC 1966
## 13028                                           Seychelles    SC   SYC 1967
## 13029                                           Seychelles    SC   SYC 1968
## 13030                                           Seychelles    SC   SYC 1969
## 13031                                           Seychelles    SC   SYC 1970
## 13032                                           Seychelles    SC   SYC 1971
## 13033                                           Seychelles    SC   SYC 1972
## 13034                                           Seychelles    SC   SYC 1973
## 13035                                           Seychelles    SC   SYC 1974
## 13036                                           Seychelles    SC   SYC 1975
## 13037                                           Seychelles    SC   SYC 1976
## 13038                                           Seychelles    SC   SYC 1977
## 13039                                           Seychelles    SC   SYC 1978
## 13040                                           Seychelles    SC   SYC 1979
## 13041                                           Seychelles    SC   SYC 1980
## 13042                                           Seychelles    SC   SYC 1981
## 13043                                           Seychelles    SC   SYC 1982
## 13044                                           Seychelles    SC   SYC 1983
## 13045                                           Seychelles    SC   SYC 1984
## 13046                                           Seychelles    SC   SYC 1985
## 13047                                           Seychelles    SC   SYC 1986
## 13048                                           Seychelles    SC   SYC 1987
## 13049                                           Seychelles    SC   SYC 1988
## 13050                                           Seychelles    SC   SYC 1989
## 13051                                           Seychelles    SC   SYC 1990
## 13052                                           Seychelles    SC   SYC 1991
## 13053                                           Seychelles    SC   SYC 1992
## 13054                                           Seychelles    SC   SYC 1993
## 13055                                           Seychelles    SC   SYC 1994
## 13056                                           Seychelles    SC   SYC 1995
## 13057                                           Seychelles    SC   SYC 1996
## 13058                                           Seychelles    SC   SYC 1997
## 13059                                           Seychelles    SC   SYC 1998
## 13060                                           Seychelles    SC   SYC 1999
## 13061                                           Seychelles    SC   SYC 2000
## 13062                                           Seychelles    SC   SYC 2001
## 13063                                           Seychelles    SC   SYC 2002
## 13064                                           Seychelles    SC   SYC 2003
## 13065                                           Seychelles    SC   SYC 2004
## 13066                                           Seychelles    SC   SYC 2005
## 13067                                           Seychelles    SC   SYC 2006
## 13068                                           Seychelles    SC   SYC 2007
## 13069                                           Seychelles    SC   SYC 2008
## 13070                                           Seychelles    SC   SYC 2009
## 13071                                           Seychelles    SC   SYC 2010
## 13072                                           Seychelles    SC   SYC 2011
## 13073                                           Seychelles    SC   SYC 2012
## 13074                                           Seychelles    SC   SYC 2013
## 13075                                           Seychelles    SC   SYC 2014
## 13076                                           Seychelles    SC   SYC 2015
## 13077                                           Seychelles    SC   SYC 2016
## 13078                                           Seychelles    SC   SYC 2017
## 13079                                           Seychelles    SC   SYC 2018
## 13080                                           Seychelles    SC   SYC 2019
## 13081                                           Seychelles    SC   SYC 2020
## 13082                                           Seychelles    SC   SYC 2021
## 13083                                         Sierra Leone    SL   SLE 1960
## 13084                                         Sierra Leone    SL   SLE 1961
## 13085                                         Sierra Leone    SL   SLE 1962
## 13086                                         Sierra Leone    SL   SLE 1963
## 13087                                         Sierra Leone    SL   SLE 1964
## 13088                                         Sierra Leone    SL   SLE 1965
## 13089                                         Sierra Leone    SL   SLE 1966
## 13090                                         Sierra Leone    SL   SLE 1967
## 13091                                         Sierra Leone    SL   SLE 1968
## 13092                                         Sierra Leone    SL   SLE 1969
## 13093                                         Sierra Leone    SL   SLE 1970
## 13094                                         Sierra Leone    SL   SLE 1971
## 13095                                         Sierra Leone    SL   SLE 1972
## 13096                                         Sierra Leone    SL   SLE 1973
## 13097                                         Sierra Leone    SL   SLE 1974
## 13098                                         Sierra Leone    SL   SLE 1975
## 13099                                         Sierra Leone    SL   SLE 1976
## 13100                                         Sierra Leone    SL   SLE 1977
## 13101                                         Sierra Leone    SL   SLE 1978
## 13102                                         Sierra Leone    SL   SLE 1979
## 13103                                         Sierra Leone    SL   SLE 1980
## 13104                                         Sierra Leone    SL   SLE 1981
## 13105                                         Sierra Leone    SL   SLE 1982
## 13106                                         Sierra Leone    SL   SLE 1983
## 13107                                         Sierra Leone    SL   SLE 1984
## 13108                                         Sierra Leone    SL   SLE 1985
## 13109                                         Sierra Leone    SL   SLE 1986
## 13110                                         Sierra Leone    SL   SLE 1987
## 13111                                         Sierra Leone    SL   SLE 1988
## 13112                                         Sierra Leone    SL   SLE 1989
## 13113                                         Sierra Leone    SL   SLE 1990
## 13114                                         Sierra Leone    SL   SLE 1991
## 13115                                         Sierra Leone    SL   SLE 1992
## 13116                                         Sierra Leone    SL   SLE 1993
## 13117                                         Sierra Leone    SL   SLE 1994
## 13118                                         Sierra Leone    SL   SLE 1995
## 13119                                         Sierra Leone    SL   SLE 1996
## 13120                                         Sierra Leone    SL   SLE 1997
## 13121                                         Sierra Leone    SL   SLE 1998
## 13122                                         Sierra Leone    SL   SLE 1999
## 13123                                         Sierra Leone    SL   SLE 2000
## 13124                                         Sierra Leone    SL   SLE 2001
## 13125                                         Sierra Leone    SL   SLE 2002
## 13126                                         Sierra Leone    SL   SLE 2003
## 13127                                         Sierra Leone    SL   SLE 2004
## 13128                                         Sierra Leone    SL   SLE 2005
## 13129                                         Sierra Leone    SL   SLE 2006
## 13130                                         Sierra Leone    SL   SLE 2007
## 13131                                         Sierra Leone    SL   SLE 2008
## 13132                                         Sierra Leone    SL   SLE 2009
## 13133                                         Sierra Leone    SL   SLE 2010
## 13134                                         Sierra Leone    SL   SLE 2011
## 13135                                         Sierra Leone    SL   SLE 2012
## 13136                                         Sierra Leone    SL   SLE 2013
## 13137                                         Sierra Leone    SL   SLE 2014
## 13138                                         Sierra Leone    SL   SLE 2015
## 13139                                         Sierra Leone    SL   SLE 2016
## 13140                                         Sierra Leone    SL   SLE 2017
## 13141                                         Sierra Leone    SL   SLE 2018
## 13142                                         Sierra Leone    SL   SLE 2019
## 13143                                         Sierra Leone    SL   SLE 2020
## 13144                                         Sierra Leone    SL   SLE 2021
## 13145                                            Singapore    SG   SGP 1960
## 13146                                            Singapore    SG   SGP 1961
## 13147                                            Singapore    SG   SGP 1962
## 13148                                            Singapore    SG   SGP 1963
## 13149                                            Singapore    SG   SGP 1964
## 13150                                            Singapore    SG   SGP 1965
## 13151                                            Singapore    SG   SGP 1966
## 13152                                            Singapore    SG   SGP 1967
## 13153                                            Singapore    SG   SGP 1968
## 13154                                            Singapore    SG   SGP 1969
## 13155                                            Singapore    SG   SGP 1970
## 13156                                            Singapore    SG   SGP 1971
## 13157                                            Singapore    SG   SGP 1972
## 13158                                            Singapore    SG   SGP 1973
## 13159                                            Singapore    SG   SGP 1974
## 13160                                            Singapore    SG   SGP 1975
## 13161                                            Singapore    SG   SGP 1976
## 13162                                            Singapore    SG   SGP 1977
## 13163                                            Singapore    SG   SGP 1978
## 13164                                            Singapore    SG   SGP 1979
## 13165                                            Singapore    SG   SGP 1980
## 13166                                            Singapore    SG   SGP 1981
## 13167                                            Singapore    SG   SGP 1982
## 13168                                            Singapore    SG   SGP 1983
## 13169                                            Singapore    SG   SGP 1984
## 13170                                            Singapore    SG   SGP 1985
## 13171                                            Singapore    SG   SGP 1986
## 13172                                            Singapore    SG   SGP 1987
## 13173                                            Singapore    SG   SGP 1988
## 13174                                            Singapore    SG   SGP 1989
## 13175                                            Singapore    SG   SGP 1990
## 13176                                            Singapore    SG   SGP 1991
## 13177                                            Singapore    SG   SGP 1992
## 13178                                            Singapore    SG   SGP 1993
## 13179                                            Singapore    SG   SGP 1994
## 13180                                            Singapore    SG   SGP 1995
## 13181                                            Singapore    SG   SGP 1996
## 13182                                            Singapore    SG   SGP 1997
## 13183                                            Singapore    SG   SGP 1998
## 13184                                            Singapore    SG   SGP 1999
## 13185                                            Singapore    SG   SGP 2000
## 13186                                            Singapore    SG   SGP 2001
## 13187                                            Singapore    SG   SGP 2002
## 13188                                            Singapore    SG   SGP 2003
## 13189                                            Singapore    SG   SGP 2004
## 13190                                            Singapore    SG   SGP 2005
## 13191                                            Singapore    SG   SGP 2006
## 13192                                            Singapore    SG   SGP 2007
## 13193                                            Singapore    SG   SGP 2008
## 13194                                            Singapore    SG   SGP 2009
## 13195                                            Singapore    SG   SGP 2010
## 13196                                            Singapore    SG   SGP 2011
## 13197                                            Singapore    SG   SGP 2012
## 13198                                            Singapore    SG   SGP 2013
## 13199                                            Singapore    SG   SGP 2014
## 13200                                            Singapore    SG   SGP 2015
## 13201                                            Singapore    SG   SGP 2016
## 13202                                            Singapore    SG   SGP 2017
## 13203                                            Singapore    SG   SGP 2018
## 13204                                            Singapore    SG   SGP 2019
## 13205                                            Singapore    SG   SGP 2020
## 13206                                            Singapore    SG   SGP 2021
## 13207                            Sint Maarten (Dutch part)    SX   SXM 1960
## 13208                            Sint Maarten (Dutch part)    SX   SXM 1961
## 13209                            Sint Maarten (Dutch part)    SX   SXM 1962
## 13210                            Sint Maarten (Dutch part)    SX   SXM 1963
## 13211                            Sint Maarten (Dutch part)    SX   SXM 1964
## 13212                            Sint Maarten (Dutch part)    SX   SXM 1965
## 13213                            Sint Maarten (Dutch part)    SX   SXM 1966
## 13214                            Sint Maarten (Dutch part)    SX   SXM 1967
## 13215                            Sint Maarten (Dutch part)    SX   SXM 1968
## 13216                            Sint Maarten (Dutch part)    SX   SXM 1969
## 13217                            Sint Maarten (Dutch part)    SX   SXM 1970
## 13218                            Sint Maarten (Dutch part)    SX   SXM 1971
## 13219                            Sint Maarten (Dutch part)    SX   SXM 1972
## 13220                            Sint Maarten (Dutch part)    SX   SXM 1973
## 13221                            Sint Maarten (Dutch part)    SX   SXM 1974
## 13222                            Sint Maarten (Dutch part)    SX   SXM 1975
## 13223                            Sint Maarten (Dutch part)    SX   SXM 1976
## 13224                            Sint Maarten (Dutch part)    SX   SXM 1977
## 13225                            Sint Maarten (Dutch part)    SX   SXM 1978
## 13226                            Sint Maarten (Dutch part)    SX   SXM 1979
## 13227                            Sint Maarten (Dutch part)    SX   SXM 1980
## 13228                            Sint Maarten (Dutch part)    SX   SXM 1981
## 13229                            Sint Maarten (Dutch part)    SX   SXM 1982
## 13230                            Sint Maarten (Dutch part)    SX   SXM 1983
## 13231                            Sint Maarten (Dutch part)    SX   SXM 1984
## 13232                            Sint Maarten (Dutch part)    SX   SXM 1985
## 13233                            Sint Maarten (Dutch part)    SX   SXM 1986
## 13234                            Sint Maarten (Dutch part)    SX   SXM 1987
## 13235                            Sint Maarten (Dutch part)    SX   SXM 1988
## 13236                            Sint Maarten (Dutch part)    SX   SXM 1989
## 13237                            Sint Maarten (Dutch part)    SX   SXM 1990
## 13238                            Sint Maarten (Dutch part)    SX   SXM 1991
## 13239                            Sint Maarten (Dutch part)    SX   SXM 1992
## 13240                            Sint Maarten (Dutch part)    SX   SXM 1993
## 13241                            Sint Maarten (Dutch part)    SX   SXM 1994
## 13242                            Sint Maarten (Dutch part)    SX   SXM 1995
## 13243                            Sint Maarten (Dutch part)    SX   SXM 1996
## 13244                            Sint Maarten (Dutch part)    SX   SXM 1997
## 13245                            Sint Maarten (Dutch part)    SX   SXM 1998
## 13246                            Sint Maarten (Dutch part)    SX   SXM 1999
## 13247                            Sint Maarten (Dutch part)    SX   SXM 2000
## 13248                            Sint Maarten (Dutch part)    SX   SXM 2001
## 13249                            Sint Maarten (Dutch part)    SX   SXM 2002
## 13250                            Sint Maarten (Dutch part)    SX   SXM 2003
## 13251                            Sint Maarten (Dutch part)    SX   SXM 2004
## 13252                            Sint Maarten (Dutch part)    SX   SXM 2005
## 13253                            Sint Maarten (Dutch part)    SX   SXM 2006
## 13254                            Sint Maarten (Dutch part)    SX   SXM 2007
## 13255                            Sint Maarten (Dutch part)    SX   SXM 2008
## 13256                            Sint Maarten (Dutch part)    SX   SXM 2009
## 13257                            Sint Maarten (Dutch part)    SX   SXM 2010
## 13258                            Sint Maarten (Dutch part)    SX   SXM 2011
## 13259                            Sint Maarten (Dutch part)    SX   SXM 2012
## 13260                            Sint Maarten (Dutch part)    SX   SXM 2013
## 13261                            Sint Maarten (Dutch part)    SX   SXM 2014
## 13262                            Sint Maarten (Dutch part)    SX   SXM 2015
## 13263                            Sint Maarten (Dutch part)    SX   SXM 2016
## 13264                            Sint Maarten (Dutch part)    SX   SXM 2017
## 13265                            Sint Maarten (Dutch part)    SX   SXM 2018
## 13266                            Sint Maarten (Dutch part)    SX   SXM 2019
## 13267                            Sint Maarten (Dutch part)    SX   SXM 2020
## 13268                            Sint Maarten (Dutch part)    SX   SXM 2021
## 13269                                      Slovak Republic    SK   SVK 1960
## 13270                                      Slovak Republic    SK   SVK 1961
## 13271                                      Slovak Republic    SK   SVK 1962
## 13272                                      Slovak Republic    SK   SVK 1963
## 13273                                      Slovak Republic    SK   SVK 1964
## 13274                                      Slovak Republic    SK   SVK 1965
## 13275                                      Slovak Republic    SK   SVK 1966
## 13276                                      Slovak Republic    SK   SVK 1967
## 13277                                      Slovak Republic    SK   SVK 1968
## 13278                                      Slovak Republic    SK   SVK 1969
## 13279                                      Slovak Republic    SK   SVK 1970
## 13280                                      Slovak Republic    SK   SVK 1971
## 13281                                      Slovak Republic    SK   SVK 1972
## 13282                                      Slovak Republic    SK   SVK 1973
## 13283                                      Slovak Republic    SK   SVK 1974
## 13284                                      Slovak Republic    SK   SVK 1975
## 13285                                      Slovak Republic    SK   SVK 1976
## 13286                                      Slovak Republic    SK   SVK 1977
## 13287                                      Slovak Republic    SK   SVK 1978
## 13288                                      Slovak Republic    SK   SVK 1979
## 13289                                      Slovak Republic    SK   SVK 1980
## 13290                                      Slovak Republic    SK   SVK 1981
## 13291                                      Slovak Republic    SK   SVK 1982
## 13292                                      Slovak Republic    SK   SVK 1983
## 13293                                      Slovak Republic    SK   SVK 1984
## 13294                                      Slovak Republic    SK   SVK 1985
## 13295                                      Slovak Republic    SK   SVK 1986
## 13296                                      Slovak Republic    SK   SVK 1987
## 13297                                      Slovak Republic    SK   SVK 1988
## 13298                                      Slovak Republic    SK   SVK 1989
## 13299                                      Slovak Republic    SK   SVK 1990
## 13300                                      Slovak Republic    SK   SVK 1991
## 13301                                      Slovak Republic    SK   SVK 1992
## 13302                                      Slovak Republic    SK   SVK 1993
## 13303                                      Slovak Republic    SK   SVK 1994
## 13304                                      Slovak Republic    SK   SVK 1995
## 13305                                      Slovak Republic    SK   SVK 1996
## 13306                                      Slovak Republic    SK   SVK 1997
## 13307                                      Slovak Republic    SK   SVK 1998
## 13308                                      Slovak Republic    SK   SVK 1999
## 13309                                      Slovak Republic    SK   SVK 2000
## 13310                                      Slovak Republic    SK   SVK 2001
## 13311                                      Slovak Republic    SK   SVK 2002
## 13312                                      Slovak Republic    SK   SVK 2003
## 13313                                      Slovak Republic    SK   SVK 2004
## 13314                                      Slovak Republic    SK   SVK 2005
## 13315                                      Slovak Republic    SK   SVK 2006
## 13316                                      Slovak Republic    SK   SVK 2007
## 13317                                      Slovak Republic    SK   SVK 2008
## 13318                                      Slovak Republic    SK   SVK 2009
## 13319                                      Slovak Republic    SK   SVK 2010
## 13320                                      Slovak Republic    SK   SVK 2011
## 13321                                      Slovak Republic    SK   SVK 2012
## 13322                                      Slovak Republic    SK   SVK 2013
## 13323                                      Slovak Republic    SK   SVK 2014
## 13324                                      Slovak Republic    SK   SVK 2015
## 13325                                      Slovak Republic    SK   SVK 2016
## 13326                                      Slovak Republic    SK   SVK 2017
## 13327                                      Slovak Republic    SK   SVK 2018
## 13328                                      Slovak Republic    SK   SVK 2019
## 13329                                      Slovak Republic    SK   SVK 2020
## 13330                                      Slovak Republic    SK   SVK 2021
## 13331                                             Slovenia    SI   SVN 1960
## 13332                                             Slovenia    SI   SVN 1961
## 13333                                             Slovenia    SI   SVN 1962
## 13334                                             Slovenia    SI   SVN 1963
## 13335                                             Slovenia    SI   SVN 1964
## 13336                                             Slovenia    SI   SVN 1965
## 13337                                             Slovenia    SI   SVN 1966
## 13338                                             Slovenia    SI   SVN 1967
## 13339                                             Slovenia    SI   SVN 1968
## 13340                                             Slovenia    SI   SVN 1969
## 13341                                             Slovenia    SI   SVN 1970
## 13342                                             Slovenia    SI   SVN 1971
## 13343                                             Slovenia    SI   SVN 1972
## 13344                                             Slovenia    SI   SVN 1973
## 13345                                             Slovenia    SI   SVN 1974
## 13346                                             Slovenia    SI   SVN 1975
## 13347                                             Slovenia    SI   SVN 1976
## 13348                                             Slovenia    SI   SVN 1977
## 13349                                             Slovenia    SI   SVN 1978
## 13350                                             Slovenia    SI   SVN 1979
## 13351                                             Slovenia    SI   SVN 1980
## 13352                                             Slovenia    SI   SVN 1981
## 13353                                             Slovenia    SI   SVN 1982
## 13354                                             Slovenia    SI   SVN 1983
## 13355                                             Slovenia    SI   SVN 1984
## 13356                                             Slovenia    SI   SVN 1985
## 13357                                             Slovenia    SI   SVN 1986
## 13358                                             Slovenia    SI   SVN 1987
## 13359                                             Slovenia    SI   SVN 1988
## 13360                                             Slovenia    SI   SVN 1989
## 13361                                             Slovenia    SI   SVN 1990
## 13362                                             Slovenia    SI   SVN 1991
## 13363                                             Slovenia    SI   SVN 1992
## 13364                                             Slovenia    SI   SVN 1993
## 13365                                             Slovenia    SI   SVN 1994
## 13366                                             Slovenia    SI   SVN 1995
## 13367                                             Slovenia    SI   SVN 1996
## 13368                                             Slovenia    SI   SVN 1997
## 13369                                             Slovenia    SI   SVN 1998
## 13370                                             Slovenia    SI   SVN 1999
## 13371                                             Slovenia    SI   SVN 2000
## 13372                                             Slovenia    SI   SVN 2001
## 13373                                             Slovenia    SI   SVN 2002
## 13374                                             Slovenia    SI   SVN 2003
## 13375                                             Slovenia    SI   SVN 2004
## 13376                                             Slovenia    SI   SVN 2005
## 13377                                             Slovenia    SI   SVN 2006
## 13378                                             Slovenia    SI   SVN 2007
## 13379                                             Slovenia    SI   SVN 2008
## 13380                                             Slovenia    SI   SVN 2009
## 13381                                             Slovenia    SI   SVN 2010
## 13382                                             Slovenia    SI   SVN 2011
## 13383                                             Slovenia    SI   SVN 2012
## 13384                                             Slovenia    SI   SVN 2013
## 13385                                             Slovenia    SI   SVN 2014
## 13386                                             Slovenia    SI   SVN 2015
## 13387                                             Slovenia    SI   SVN 2016
## 13388                                             Slovenia    SI   SVN 2017
## 13389                                             Slovenia    SI   SVN 2018
## 13390                                             Slovenia    SI   SVN 2019
## 13391                                             Slovenia    SI   SVN 2020
## 13392                                             Slovenia    SI   SVN 2021
## 13393                                         Small states    S1   SST 1960
## 13394                                         Small states    S1   SST 1961
## 13395                                         Small states    S1   SST 1962
## 13396                                         Small states    S1   SST 1963
## 13397                                         Small states    S1   SST 1964
## 13398                                         Small states    S1   SST 1965
## 13399                                         Small states    S1   SST 1966
## 13400                                         Small states    S1   SST 1967
## 13401                                         Small states    S1   SST 1968
## 13402                                         Small states    S1   SST 1969
## 13403                                         Small states    S1   SST 1970
## 13404                                         Small states    S1   SST 1971
## 13405                                         Small states    S1   SST 1972
## 13406                                         Small states    S1   SST 1973
## 13407                                         Small states    S1   SST 1974
## 13408                                         Small states    S1   SST 1975
## 13409                                         Small states    S1   SST 1976
## 13410                                         Small states    S1   SST 1977
## 13411                                         Small states    S1   SST 1978
## 13412                                         Small states    S1   SST 1979
## 13413                                         Small states    S1   SST 1980
## 13414                                         Small states    S1   SST 1981
## 13415                                         Small states    S1   SST 1982
## 13416                                         Small states    S1   SST 1983
## 13417                                         Small states    S1   SST 1984
## 13418                                         Small states    S1   SST 1985
## 13419                                         Small states    S1   SST 1986
## 13420                                         Small states    S1   SST 1987
## 13421                                         Small states    S1   SST 1988
## 13422                                         Small states    S1   SST 1989
## 13423                                         Small states    S1   SST 1990
## 13424                                         Small states    S1   SST 1991
## 13425                                         Small states    S1   SST 1992
## 13426                                         Small states    S1   SST 1993
## 13427                                         Small states    S1   SST 1994
## 13428                                         Small states    S1   SST 1995
## 13429                                         Small states    S1   SST 1996
## 13430                                         Small states    S1   SST 1997
## 13431                                         Small states    S1   SST 1998
## 13432                                         Small states    S1   SST 1999
## 13433                                         Small states    S1   SST 2000
## 13434                                         Small states    S1   SST 2001
## 13435                                         Small states    S1   SST 2002
## 13436                                         Small states    S1   SST 2003
## 13437                                         Small states    S1   SST 2004
## 13438                                         Small states    S1   SST 2005
## 13439                                         Small states    S1   SST 2006
## 13440                                         Small states    S1   SST 2007
## 13441                                         Small states    S1   SST 2008
## 13442                                         Small states    S1   SST 2009
## 13443                                         Small states    S1   SST 2010
## 13444                                         Small states    S1   SST 2011
## 13445                                         Small states    S1   SST 2012
## 13446                                         Small states    S1   SST 2013
## 13447                                         Small states    S1   SST 2014
## 13448                                         Small states    S1   SST 2015
## 13449                                         Small states    S1   SST 2016
## 13450                                         Small states    S1   SST 2017
## 13451                                         Small states    S1   SST 2018
## 13452                                         Small states    S1   SST 2019
## 13453                                         Small states    S1   SST 2020
## 13454                                         Small states    S1   SST 2021
## 13455                                      Solomon Islands    SB   SLB 1960
## 13456                                      Solomon Islands    SB   SLB 1961
## 13457                                      Solomon Islands    SB   SLB 1962
## 13458                                      Solomon Islands    SB   SLB 1963
## 13459                                      Solomon Islands    SB   SLB 1964
## 13460                                      Solomon Islands    SB   SLB 1965
## 13461                                      Solomon Islands    SB   SLB 1966
## 13462                                      Solomon Islands    SB   SLB 1967
## 13463                                      Solomon Islands    SB   SLB 1968
## 13464                                      Solomon Islands    SB   SLB 1969
## 13465                                      Solomon Islands    SB   SLB 1970
## 13466                                      Solomon Islands    SB   SLB 1971
## 13467                                      Solomon Islands    SB   SLB 1972
## 13468                                      Solomon Islands    SB   SLB 1973
## 13469                                      Solomon Islands    SB   SLB 1974
## 13470                                      Solomon Islands    SB   SLB 1975
## 13471                                      Solomon Islands    SB   SLB 1976
## 13472                                      Solomon Islands    SB   SLB 1977
## 13473                                      Solomon Islands    SB   SLB 1978
## 13474                                      Solomon Islands    SB   SLB 1979
## 13475                                      Solomon Islands    SB   SLB 1980
## 13476                                      Solomon Islands    SB   SLB 1981
## 13477                                      Solomon Islands    SB   SLB 1982
## 13478                                      Solomon Islands    SB   SLB 1983
## 13479                                      Solomon Islands    SB   SLB 1984
## 13480                                      Solomon Islands    SB   SLB 1985
## 13481                                      Solomon Islands    SB   SLB 1986
## 13482                                      Solomon Islands    SB   SLB 1987
## 13483                                      Solomon Islands    SB   SLB 1988
## 13484                                      Solomon Islands    SB   SLB 1989
## 13485                                      Solomon Islands    SB   SLB 1990
## 13486                                      Solomon Islands    SB   SLB 1991
## 13487                                      Solomon Islands    SB   SLB 1992
## 13488                                      Solomon Islands    SB   SLB 1993
## 13489                                      Solomon Islands    SB   SLB 1994
## 13490                                      Solomon Islands    SB   SLB 1995
## 13491                                      Solomon Islands    SB   SLB 1996
## 13492                                      Solomon Islands    SB   SLB 1997
## 13493                                      Solomon Islands    SB   SLB 1998
## 13494                                      Solomon Islands    SB   SLB 1999
## 13495                                      Solomon Islands    SB   SLB 2000
## 13496                                      Solomon Islands    SB   SLB 2001
## 13497                                      Solomon Islands    SB   SLB 2002
## 13498                                      Solomon Islands    SB   SLB 2003
## 13499                                      Solomon Islands    SB   SLB 2004
## 13500                                      Solomon Islands    SB   SLB 2005
## 13501                                      Solomon Islands    SB   SLB 2006
## 13502                                      Solomon Islands    SB   SLB 2007
## 13503                                      Solomon Islands    SB   SLB 2008
## 13504                                      Solomon Islands    SB   SLB 2009
## 13505                                      Solomon Islands    SB   SLB 2010
## 13506                                      Solomon Islands    SB   SLB 2011
## 13507                                      Solomon Islands    SB   SLB 2012
## 13508                                      Solomon Islands    SB   SLB 2013
## 13509                                      Solomon Islands    SB   SLB 2014
## 13510                                      Solomon Islands    SB   SLB 2015
## 13511                                      Solomon Islands    SB   SLB 2016
## 13512                                      Solomon Islands    SB   SLB 2017
## 13513                                      Solomon Islands    SB   SLB 2018
## 13514                                      Solomon Islands    SB   SLB 2019
## 13515                                      Solomon Islands    SB   SLB 2020
## 13516                                      Solomon Islands    SB   SLB 2021
## 13517                                              Somalia    SO   SOM 1960
## 13518                                              Somalia    SO   SOM 1961
## 13519                                              Somalia    SO   SOM 1962
## 13520                                              Somalia    SO   SOM 1963
## 13521                                              Somalia    SO   SOM 1964
## 13522                                              Somalia    SO   SOM 1965
## 13523                                              Somalia    SO   SOM 1966
## 13524                                              Somalia    SO   SOM 1967
## 13525                                              Somalia    SO   SOM 1968
## 13526                                              Somalia    SO   SOM 1969
## 13527                                              Somalia    SO   SOM 1970
## 13528                                              Somalia    SO   SOM 1971
## 13529                                              Somalia    SO   SOM 1972
## 13530                                              Somalia    SO   SOM 1973
## 13531                                              Somalia    SO   SOM 1974
## 13532                                              Somalia    SO   SOM 1975
## 13533                                              Somalia    SO   SOM 1976
## 13534                                              Somalia    SO   SOM 1977
## 13535                                              Somalia    SO   SOM 1978
## 13536                                              Somalia    SO   SOM 1979
## 13537                                              Somalia    SO   SOM 1980
## 13538                                              Somalia    SO   SOM 1981
## 13539                                              Somalia    SO   SOM 1982
## 13540                                              Somalia    SO   SOM 1983
## 13541                                              Somalia    SO   SOM 1984
## 13542                                              Somalia    SO   SOM 1985
## 13543                                              Somalia    SO   SOM 1986
## 13544                                              Somalia    SO   SOM 1987
## 13545                                              Somalia    SO   SOM 1988
## 13546                                              Somalia    SO   SOM 1989
## 13547                                              Somalia    SO   SOM 1990
## 13548                                              Somalia    SO   SOM 1991
## 13549                                              Somalia    SO   SOM 1992
## 13550                                              Somalia    SO   SOM 1993
## 13551                                              Somalia    SO   SOM 1994
## 13552                                              Somalia    SO   SOM 1995
## 13553                                              Somalia    SO   SOM 1996
## 13554                                              Somalia    SO   SOM 1997
## 13555                                              Somalia    SO   SOM 1998
## 13556                                              Somalia    SO   SOM 1999
## 13557                                              Somalia    SO   SOM 2000
## 13558                                              Somalia    SO   SOM 2001
## 13559                                              Somalia    SO   SOM 2002
## 13560                                              Somalia    SO   SOM 2003
## 13561                                              Somalia    SO   SOM 2004
## 13562                                              Somalia    SO   SOM 2005
## 13563                                              Somalia    SO   SOM 2006
## 13564                                              Somalia    SO   SOM 2007
## 13565                                              Somalia    SO   SOM 2008
## 13566                                              Somalia    SO   SOM 2009
## 13567                                              Somalia    SO   SOM 2010
## 13568                                              Somalia    SO   SOM 2011
## 13569                                              Somalia    SO   SOM 2012
## 13570                                              Somalia    SO   SOM 2013
## 13571                                              Somalia    SO   SOM 2014
## 13572                                              Somalia    SO   SOM 2015
## 13573                                              Somalia    SO   SOM 2016
## 13574                                              Somalia    SO   SOM 2017
## 13575                                              Somalia    SO   SOM 2018
## 13576                                              Somalia    SO   SOM 2019
## 13577                                              Somalia    SO   SOM 2020
## 13578                                              Somalia    SO   SOM 2021
## 13579                                         South Africa    ZA   ZAF 1960
## 13580                                         South Africa    ZA   ZAF 1961
## 13581                                         South Africa    ZA   ZAF 1962
## 13582                                         South Africa    ZA   ZAF 1963
## 13583                                         South Africa    ZA   ZAF 1964
## 13584                                         South Africa    ZA   ZAF 1965
## 13585                                         South Africa    ZA   ZAF 1966
## 13586                                         South Africa    ZA   ZAF 1967
## 13587                                         South Africa    ZA   ZAF 1968
## 13588                                         South Africa    ZA   ZAF 1969
## 13589                                         South Africa    ZA   ZAF 1970
## 13590                                         South Africa    ZA   ZAF 1971
## 13591                                         South Africa    ZA   ZAF 1972
## 13592                                         South Africa    ZA   ZAF 1973
## 13593                                         South Africa    ZA   ZAF 1974
## 13594                                         South Africa    ZA   ZAF 1975
## 13595                                         South Africa    ZA   ZAF 1976
## 13596                                         South Africa    ZA   ZAF 1977
## 13597                                         South Africa    ZA   ZAF 1978
## 13598                                         South Africa    ZA   ZAF 1979
## 13599                                         South Africa    ZA   ZAF 1980
## 13600                                         South Africa    ZA   ZAF 1981
## 13601                                         South Africa    ZA   ZAF 1982
## 13602                                         South Africa    ZA   ZAF 1983
## 13603                                         South Africa    ZA   ZAF 1984
## 13604                                         South Africa    ZA   ZAF 1985
## 13605                                         South Africa    ZA   ZAF 1986
## 13606                                         South Africa    ZA   ZAF 1987
## 13607                                         South Africa    ZA   ZAF 1988
## 13608                                         South Africa    ZA   ZAF 1989
## 13609                                         South Africa    ZA   ZAF 1990
## 13610                                         South Africa    ZA   ZAF 1991
## 13611                                         South Africa    ZA   ZAF 1992
## 13612                                         South Africa    ZA   ZAF 1993
## 13613                                         South Africa    ZA   ZAF 1994
## 13614                                         South Africa    ZA   ZAF 1995
## 13615                                         South Africa    ZA   ZAF 1996
## 13616                                         South Africa    ZA   ZAF 1997
## 13617                                         South Africa    ZA   ZAF 1998
## 13618                                         South Africa    ZA   ZAF 1999
## 13619                                         South Africa    ZA   ZAF 2000
## 13620                                         South Africa    ZA   ZAF 2001
## 13621                                         South Africa    ZA   ZAF 2002
## 13622                                         South Africa    ZA   ZAF 2003
## 13623                                         South Africa    ZA   ZAF 2004
## 13624                                         South Africa    ZA   ZAF 2005
## 13625                                         South Africa    ZA   ZAF 2006
## 13626                                         South Africa    ZA   ZAF 2007
## 13627                                         South Africa    ZA   ZAF 2008
## 13628                                         South Africa    ZA   ZAF 2009
## 13629                                         South Africa    ZA   ZAF 2010
## 13630                                         South Africa    ZA   ZAF 2011
## 13631                                         South Africa    ZA   ZAF 2012
## 13632                                         South Africa    ZA   ZAF 2013
## 13633                                         South Africa    ZA   ZAF 2014
## 13634                                         South Africa    ZA   ZAF 2015
## 13635                                         South Africa    ZA   ZAF 2016
## 13636                                         South Africa    ZA   ZAF 2017
## 13637                                         South Africa    ZA   ZAF 2018
## 13638                                         South Africa    ZA   ZAF 2019
## 13639                                         South Africa    ZA   ZAF 2020
## 13640                                         South Africa    ZA   ZAF 2021
## 13641                                           South Asia    8S   SAS 1960
## 13642                                           South Asia    8S   SAS 1961
## 13643                                           South Asia    8S   SAS 1962
## 13644                                           South Asia    8S   SAS 1963
## 13645                                           South Asia    8S   SAS 1964
## 13646                                           South Asia    8S   SAS 1965
## 13647                                           South Asia    8S   SAS 1966
## 13648                                           South Asia    8S   SAS 1967
## 13649                                           South Asia    8S   SAS 1968
## 13650                                           South Asia    8S   SAS 1969
## 13651                                           South Asia    8S   SAS 1970
## 13652                                           South Asia    8S   SAS 1971
## 13653                                           South Asia    8S   SAS 1972
## 13654                                           South Asia    8S   SAS 1973
## 13655                                           South Asia    8S   SAS 1974
## 13656                                           South Asia    8S   SAS 1975
## 13657                                           South Asia    8S   SAS 1976
## 13658                                           South Asia    8S   SAS 1977
## 13659                                           South Asia    8S   SAS 1978
## 13660                                           South Asia    8S   SAS 1979
## 13661                                           South Asia    8S   SAS 1980
## 13662                                           South Asia    8S   SAS 1981
## 13663                                           South Asia    8S   SAS 1982
## 13664                                           South Asia    8S   SAS 1983
## 13665                                           South Asia    8S   SAS 1984
## 13666                                           South Asia    8S   SAS 1985
## 13667                                           South Asia    8S   SAS 1986
## 13668                                           South Asia    8S   SAS 1987
## 13669                                           South Asia    8S   SAS 1988
## 13670                                           South Asia    8S   SAS 1989
## 13671                                           South Asia    8S   SAS 1990
## 13672                                           South Asia    8S   SAS 1991
## 13673                                           South Asia    8S   SAS 1992
## 13674                                           South Asia    8S   SAS 1993
## 13675                                           South Asia    8S   SAS 1994
## 13676                                           South Asia    8S   SAS 1995
## 13677                                           South Asia    8S   SAS 1996
## 13678                                           South Asia    8S   SAS 1997
## 13679                                           South Asia    8S   SAS 1998
## 13680                                           South Asia    8S   SAS 1999
## 13681                                           South Asia    8S   SAS 2000
## 13682                                           South Asia    8S   SAS 2001
## 13683                                           South Asia    8S   SAS 2002
## 13684                                           South Asia    8S   SAS 2003
## 13685                                           South Asia    8S   SAS 2004
## 13686                                           South Asia    8S   SAS 2005
## 13687                                           South Asia    8S   SAS 2006
## 13688                                           South Asia    8S   SAS 2007
## 13689                                           South Asia    8S   SAS 2008
## 13690                                           South Asia    8S   SAS 2009
## 13691                                           South Asia    8S   SAS 2010
## 13692                                           South Asia    8S   SAS 2011
## 13693                                           South Asia    8S   SAS 2012
## 13694                                           South Asia    8S   SAS 2013
## 13695                                           South Asia    8S   SAS 2014
## 13696                                           South Asia    8S   SAS 2015
## 13697                                           South Asia    8S   SAS 2016
## 13698                                           South Asia    8S   SAS 2017
## 13699                                           South Asia    8S   SAS 2018
## 13700                                           South Asia    8S   SAS 2019
## 13701                                           South Asia    8S   SAS 2020
## 13702                                           South Asia    8S   SAS 2021
## 13703                              South Asia (IDA & IBRD)    T5   TSA 1960
## 13704                              South Asia (IDA & IBRD)    T5   TSA 1961
## 13705                              South Asia (IDA & IBRD)    T5   TSA 1962
## 13706                              South Asia (IDA & IBRD)    T5   TSA 1963
## 13707                              South Asia (IDA & IBRD)    T5   TSA 1964
## 13708                              South Asia (IDA & IBRD)    T5   TSA 1965
## 13709                              South Asia (IDA & IBRD)    T5   TSA 1966
## 13710                              South Asia (IDA & IBRD)    T5   TSA 1967
## 13711                              South Asia (IDA & IBRD)    T5   TSA 1968
## 13712                              South Asia (IDA & IBRD)    T5   TSA 1969
## 13713                              South Asia (IDA & IBRD)    T5   TSA 1970
## 13714                              South Asia (IDA & IBRD)    T5   TSA 1971
## 13715                              South Asia (IDA & IBRD)    T5   TSA 1972
## 13716                              South Asia (IDA & IBRD)    T5   TSA 1973
## 13717                              South Asia (IDA & IBRD)    T5   TSA 1974
## 13718                              South Asia (IDA & IBRD)    T5   TSA 1975
## 13719                              South Asia (IDA & IBRD)    T5   TSA 1976
## 13720                              South Asia (IDA & IBRD)    T5   TSA 1977
## 13721                              South Asia (IDA & IBRD)    T5   TSA 1978
## 13722                              South Asia (IDA & IBRD)    T5   TSA 1979
## 13723                              South Asia (IDA & IBRD)    T5   TSA 1980
## 13724                              South Asia (IDA & IBRD)    T5   TSA 1981
## 13725                              South Asia (IDA & IBRD)    T5   TSA 1982
## 13726                              South Asia (IDA & IBRD)    T5   TSA 1983
## 13727                              South Asia (IDA & IBRD)    T5   TSA 1984
## 13728                              South Asia (IDA & IBRD)    T5   TSA 1985
## 13729                              South Asia (IDA & IBRD)    T5   TSA 1986
## 13730                              South Asia (IDA & IBRD)    T5   TSA 1987
## 13731                              South Asia (IDA & IBRD)    T5   TSA 1988
## 13732                              South Asia (IDA & IBRD)    T5   TSA 1989
## 13733                              South Asia (IDA & IBRD)    T5   TSA 1990
## 13734                              South Asia (IDA & IBRD)    T5   TSA 1991
## 13735                              South Asia (IDA & IBRD)    T5   TSA 1992
## 13736                              South Asia (IDA & IBRD)    T5   TSA 1993
## 13737                              South Asia (IDA & IBRD)    T5   TSA 1994
## 13738                              South Asia (IDA & IBRD)    T5   TSA 1995
## 13739                              South Asia (IDA & IBRD)    T5   TSA 1996
## 13740                              South Asia (IDA & IBRD)    T5   TSA 1997
## 13741                              South Asia (IDA & IBRD)    T5   TSA 1998
## 13742                              South Asia (IDA & IBRD)    T5   TSA 1999
## 13743                              South Asia (IDA & IBRD)    T5   TSA 2000
## 13744                              South Asia (IDA & IBRD)    T5   TSA 2001
## 13745                              South Asia (IDA & IBRD)    T5   TSA 2002
## 13746                              South Asia (IDA & IBRD)    T5   TSA 2003
## 13747                              South Asia (IDA & IBRD)    T5   TSA 2004
## 13748                              South Asia (IDA & IBRD)    T5   TSA 2005
## 13749                              South Asia (IDA & IBRD)    T5   TSA 2006
## 13750                              South Asia (IDA & IBRD)    T5   TSA 2007
## 13751                              South Asia (IDA & IBRD)    T5   TSA 2008
## 13752                              South Asia (IDA & IBRD)    T5   TSA 2009
## 13753                              South Asia (IDA & IBRD)    T5   TSA 2010
## 13754                              South Asia (IDA & IBRD)    T5   TSA 2011
## 13755                              South Asia (IDA & IBRD)    T5   TSA 2012
## 13756                              South Asia (IDA & IBRD)    T5   TSA 2013
## 13757                              South Asia (IDA & IBRD)    T5   TSA 2014
## 13758                              South Asia (IDA & IBRD)    T5   TSA 2015
## 13759                              South Asia (IDA & IBRD)    T5   TSA 2016
## 13760                              South Asia (IDA & IBRD)    T5   TSA 2017
## 13761                              South Asia (IDA & IBRD)    T5   TSA 2018
## 13762                              South Asia (IDA & IBRD)    T5   TSA 2019
## 13763                              South Asia (IDA & IBRD)    T5   TSA 2020
## 13764                              South Asia (IDA & IBRD)    T5   TSA 2021
## 13765                                          South Sudan    SS   SSD 1960
## 13766                                          South Sudan    SS   SSD 1961
## 13767                                          South Sudan    SS   SSD 1962
## 13768                                          South Sudan    SS   SSD 1963
## 13769                                          South Sudan    SS   SSD 1964
## 13770                                          South Sudan    SS   SSD 1965
## 13771                                          South Sudan    SS   SSD 1966
## 13772                                          South Sudan    SS   SSD 1967
## 13773                                          South Sudan    SS   SSD 1968
## 13774                                          South Sudan    SS   SSD 1969
## 13775                                          South Sudan    SS   SSD 1970
## 13776                                          South Sudan    SS   SSD 1971
## 13777                                          South Sudan    SS   SSD 1972
## 13778                                          South Sudan    SS   SSD 1973
## 13779                                          South Sudan    SS   SSD 1974
## 13780                                          South Sudan    SS   SSD 1975
## 13781                                          South Sudan    SS   SSD 1976
## 13782                                          South Sudan    SS   SSD 1977
## 13783                                          South Sudan    SS   SSD 1978
## 13784                                          South Sudan    SS   SSD 1979
## 13785                                          South Sudan    SS   SSD 1980
## 13786                                          South Sudan    SS   SSD 1981
## 13787                                          South Sudan    SS   SSD 1982
## 13788                                          South Sudan    SS   SSD 1983
## 13789                                          South Sudan    SS   SSD 1984
## 13790                                          South Sudan    SS   SSD 1985
## 13791                                          South Sudan    SS   SSD 1986
## 13792                                          South Sudan    SS   SSD 1987
## 13793                                          South Sudan    SS   SSD 1988
## 13794                                          South Sudan    SS   SSD 1989
## 13795                                          South Sudan    SS   SSD 1990
## 13796                                          South Sudan    SS   SSD 1991
## 13797                                          South Sudan    SS   SSD 1992
## 13798                                          South Sudan    SS   SSD 1993
## 13799                                          South Sudan    SS   SSD 1994
## 13800                                          South Sudan    SS   SSD 1995
## 13801                                          South Sudan    SS   SSD 1996
## 13802                                          South Sudan    SS   SSD 1997
## 13803                                          South Sudan    SS   SSD 1998
## 13804                                          South Sudan    SS   SSD 1999
## 13805                                          South Sudan    SS   SSD 2000
## 13806                                          South Sudan    SS   SSD 2001
## 13807                                          South Sudan    SS   SSD 2002
## 13808                                          South Sudan    SS   SSD 2003
## 13809                                          South Sudan    SS   SSD 2004
## 13810                                          South Sudan    SS   SSD 2005
## 13811                                          South Sudan    SS   SSD 2006
## 13812                                          South Sudan    SS   SSD 2007
## 13813                                          South Sudan    SS   SSD 2008
## 13814                                          South Sudan    SS   SSD 2009
## 13815                                          South Sudan    SS   SSD 2010
## 13816                                          South Sudan    SS   SSD 2011
## 13817                                          South Sudan    SS   SSD 2012
## 13818                                          South Sudan    SS   SSD 2013
## 13819                                          South Sudan    SS   SSD 2014
## 13820                                          South Sudan    SS   SSD 2015
## 13821                                          South Sudan    SS   SSD 2016
## 13822                                          South Sudan    SS   SSD 2017
## 13823                                          South Sudan    SS   SSD 2018
## 13824                                          South Sudan    SS   SSD 2019
## 13825                                          South Sudan    SS   SSD 2020
## 13826                                          South Sudan    SS   SSD 2021
## 13827                                                Spain    ES   ESP 1960
## 13828                                                Spain    ES   ESP 1961
## 13829                                                Spain    ES   ESP 1962
## 13830                                                Spain    ES   ESP 1963
## 13831                                                Spain    ES   ESP 1964
## 13832                                                Spain    ES   ESP 1965
## 13833                                                Spain    ES   ESP 1966
## 13834                                                Spain    ES   ESP 1967
## 13835                                                Spain    ES   ESP 1968
## 13836                                                Spain    ES   ESP 1969
## 13837                                                Spain    ES   ESP 1970
## 13838                                                Spain    ES   ESP 1971
## 13839                                                Spain    ES   ESP 1972
## 13840                                                Spain    ES   ESP 1973
## 13841                                                Spain    ES   ESP 1974
## 13842                                                Spain    ES   ESP 1975
## 13843                                                Spain    ES   ESP 1976
## 13844                                                Spain    ES   ESP 1977
## 13845                                                Spain    ES   ESP 1978
## 13846                                                Spain    ES   ESP 1979
## 13847                                                Spain    ES   ESP 1980
## 13848                                                Spain    ES   ESP 1981
## 13849                                                Spain    ES   ESP 1982
## 13850                                                Spain    ES   ESP 1983
## 13851                                                Spain    ES   ESP 1984
## 13852                                                Spain    ES   ESP 1985
## 13853                                                Spain    ES   ESP 1986
## 13854                                                Spain    ES   ESP 1987
## 13855                                                Spain    ES   ESP 1988
## 13856                                                Spain    ES   ESP 1989
## 13857                                                Spain    ES   ESP 1990
## 13858                                                Spain    ES   ESP 1991
## 13859                                                Spain    ES   ESP 1992
## 13860                                                Spain    ES   ESP 1993
## 13861                                                Spain    ES   ESP 1994
## 13862                                                Spain    ES   ESP 1995
## 13863                                                Spain    ES   ESP 1996
## 13864                                                Spain    ES   ESP 1997
## 13865                                                Spain    ES   ESP 1998
## 13866                                                Spain    ES   ESP 1999
## 13867                                                Spain    ES   ESP 2000
## 13868                                                Spain    ES   ESP 2001
## 13869                                                Spain    ES   ESP 2002
## 13870                                                Spain    ES   ESP 2003
## 13871                                                Spain    ES   ESP 2004
## 13872                                                Spain    ES   ESP 2005
## 13873                                                Spain    ES   ESP 2006
## 13874                                                Spain    ES   ESP 2007
## 13875                                                Spain    ES   ESP 2008
## 13876                                                Spain    ES   ESP 2009
## 13877                                                Spain    ES   ESP 2010
## 13878                                                Spain    ES   ESP 2011
## 13879                                                Spain    ES   ESP 2012
## 13880                                                Spain    ES   ESP 2013
## 13881                                                Spain    ES   ESP 2014
## 13882                                                Spain    ES   ESP 2015
## 13883                                                Spain    ES   ESP 2016
## 13884                                                Spain    ES   ESP 2017
## 13885                                                Spain    ES   ESP 2018
## 13886                                                Spain    ES   ESP 2019
## 13887                                                Spain    ES   ESP 2020
## 13888                                                Spain    ES   ESP 2021
## 13889                                            Sri Lanka    LK   LKA 1960
## 13890                                            Sri Lanka    LK   LKA 1961
## 13891                                            Sri Lanka    LK   LKA 1962
## 13892                                            Sri Lanka    LK   LKA 1963
## 13893                                            Sri Lanka    LK   LKA 1964
## 13894                                            Sri Lanka    LK   LKA 1965
## 13895                                            Sri Lanka    LK   LKA 1966
## 13896                                            Sri Lanka    LK   LKA 1967
## 13897                                            Sri Lanka    LK   LKA 1968
## 13898                                            Sri Lanka    LK   LKA 1969
## 13899                                            Sri Lanka    LK   LKA 1970
## 13900                                            Sri Lanka    LK   LKA 1971
## 13901                                            Sri Lanka    LK   LKA 1972
## 13902                                            Sri Lanka    LK   LKA 1973
## 13903                                            Sri Lanka    LK   LKA 1974
## 13904                                            Sri Lanka    LK   LKA 1975
## 13905                                            Sri Lanka    LK   LKA 1976
## 13906                                            Sri Lanka    LK   LKA 1977
## 13907                                            Sri Lanka    LK   LKA 1978
## 13908                                            Sri Lanka    LK   LKA 1979
## 13909                                            Sri Lanka    LK   LKA 1980
## 13910                                            Sri Lanka    LK   LKA 1981
## 13911                                            Sri Lanka    LK   LKA 1982
## 13912                                            Sri Lanka    LK   LKA 1983
## 13913                                            Sri Lanka    LK   LKA 1984
## 13914                                            Sri Lanka    LK   LKA 1985
## 13915                                            Sri Lanka    LK   LKA 1986
## 13916                                            Sri Lanka    LK   LKA 1987
## 13917                                            Sri Lanka    LK   LKA 1988
## 13918                                            Sri Lanka    LK   LKA 1989
## 13919                                            Sri Lanka    LK   LKA 1990
## 13920                                            Sri Lanka    LK   LKA 1991
## 13921                                            Sri Lanka    LK   LKA 1992
## 13922                                            Sri Lanka    LK   LKA 1993
## 13923                                            Sri Lanka    LK   LKA 1994
## 13924                                            Sri Lanka    LK   LKA 1995
## 13925                                            Sri Lanka    LK   LKA 1996
## 13926                                            Sri Lanka    LK   LKA 1997
## 13927                                            Sri Lanka    LK   LKA 1998
## 13928                                            Sri Lanka    LK   LKA 1999
## 13929                                            Sri Lanka    LK   LKA 2000
## 13930                                            Sri Lanka    LK   LKA 2001
## 13931                                            Sri Lanka    LK   LKA 2002
## 13932                                            Sri Lanka    LK   LKA 2003
## 13933                                            Sri Lanka    LK   LKA 2004
## 13934                                            Sri Lanka    LK   LKA 2005
## 13935                                            Sri Lanka    LK   LKA 2006
## 13936                                            Sri Lanka    LK   LKA 2007
## 13937                                            Sri Lanka    LK   LKA 2008
## 13938                                            Sri Lanka    LK   LKA 2009
## 13939                                            Sri Lanka    LK   LKA 2010
## 13940                                            Sri Lanka    LK   LKA 2011
## 13941                                            Sri Lanka    LK   LKA 2012
## 13942                                            Sri Lanka    LK   LKA 2013
## 13943                                            Sri Lanka    LK   LKA 2014
## 13944                                            Sri Lanka    LK   LKA 2015
## 13945                                            Sri Lanka    LK   LKA 2016
## 13946                                            Sri Lanka    LK   LKA 2017
## 13947                                            Sri Lanka    LK   LKA 2018
## 13948                                            Sri Lanka    LK   LKA 2019
## 13949                                            Sri Lanka    LK   LKA 2020
## 13950                                            Sri Lanka    LK   LKA 2021
## 13951                                  St. Kitts and Nevis    KN   KNA 1960
## 13952                                  St. Kitts and Nevis    KN   KNA 1961
## 13953                                  St. Kitts and Nevis    KN   KNA 1962
## 13954                                  St. Kitts and Nevis    KN   KNA 1963
## 13955                                  St. Kitts and Nevis    KN   KNA 1964
## 13956                                  St. Kitts and Nevis    KN   KNA 1965
## 13957                                  St. Kitts and Nevis    KN   KNA 1966
## 13958                                  St. Kitts and Nevis    KN   KNA 1967
## 13959                                  St. Kitts and Nevis    KN   KNA 1968
## 13960                                  St. Kitts and Nevis    KN   KNA 1969
## 13961                                  St. Kitts and Nevis    KN   KNA 1970
## 13962                                  St. Kitts and Nevis    KN   KNA 1971
## 13963                                  St. Kitts and Nevis    KN   KNA 1972
## 13964                                  St. Kitts and Nevis    KN   KNA 1973
## 13965                                  St. Kitts and Nevis    KN   KNA 1974
## 13966                                  St. Kitts and Nevis    KN   KNA 1975
## 13967                                  St. Kitts and Nevis    KN   KNA 1976
## 13968                                  St. Kitts and Nevis    KN   KNA 1977
## 13969                                  St. Kitts and Nevis    KN   KNA 1978
## 13970                                  St. Kitts and Nevis    KN   KNA 1979
## 13971                                  St. Kitts and Nevis    KN   KNA 1980
## 13972                                  St. Kitts and Nevis    KN   KNA 1981
## 13973                                  St. Kitts and Nevis    KN   KNA 1982
## 13974                                  St. Kitts and Nevis    KN   KNA 1983
## 13975                                  St. Kitts and Nevis    KN   KNA 1984
## 13976                                  St. Kitts and Nevis    KN   KNA 1985
## 13977                                  St. Kitts and Nevis    KN   KNA 1986
## 13978                                  St. Kitts and Nevis    KN   KNA 1987
## 13979                                  St. Kitts and Nevis    KN   KNA 1988
## 13980                                  St. Kitts and Nevis    KN   KNA 1989
## 13981                                  St. Kitts and Nevis    KN   KNA 1990
## 13982                                  St. Kitts and Nevis    KN   KNA 1991
## 13983                                  St. Kitts and Nevis    KN   KNA 1992
## 13984                                  St. Kitts and Nevis    KN   KNA 1993
## 13985                                  St. Kitts and Nevis    KN   KNA 1994
## 13986                                  St. Kitts and Nevis    KN   KNA 1995
## 13987                                  St. Kitts and Nevis    KN   KNA 1996
## 13988                                  St. Kitts and Nevis    KN   KNA 1997
## 13989                                  St. Kitts and Nevis    KN   KNA 1998
## 13990                                  St. Kitts and Nevis    KN   KNA 1999
## 13991                                  St. Kitts and Nevis    KN   KNA 2000
## 13992                                  St. Kitts and Nevis    KN   KNA 2001
## 13993                                  St. Kitts and Nevis    KN   KNA 2002
## 13994                                  St. Kitts and Nevis    KN   KNA 2003
## 13995                                  St. Kitts and Nevis    KN   KNA 2004
## 13996                                  St. Kitts and Nevis    KN   KNA 2005
## 13997                                  St. Kitts and Nevis    KN   KNA 2006
## 13998                                  St. Kitts and Nevis    KN   KNA 2007
## 13999                                  St. Kitts and Nevis    KN   KNA 2008
## 14000                                  St. Kitts and Nevis    KN   KNA 2009
## 14001                                  St. Kitts and Nevis    KN   KNA 2010
## 14002                                  St. Kitts and Nevis    KN   KNA 2011
## 14003                                  St. Kitts and Nevis    KN   KNA 2012
## 14004                                  St. Kitts and Nevis    KN   KNA 2013
## 14005                                  St. Kitts and Nevis    KN   KNA 2014
## 14006                                  St. Kitts and Nevis    KN   KNA 2015
## 14007                                  St. Kitts and Nevis    KN   KNA 2016
## 14008                                  St. Kitts and Nevis    KN   KNA 2017
## 14009                                  St. Kitts and Nevis    KN   KNA 2018
## 14010                                  St. Kitts and Nevis    KN   KNA 2019
## 14011                                  St. Kitts and Nevis    KN   KNA 2020
## 14012                                  St. Kitts and Nevis    KN   KNA 2021
## 14013                                            St. Lucia    LC   LCA 1960
## 14014                                            St. Lucia    LC   LCA 1961
## 14015                                            St. Lucia    LC   LCA 1962
## 14016                                            St. Lucia    LC   LCA 1963
## 14017                                            St. Lucia    LC   LCA 1964
## 14018                                            St. Lucia    LC   LCA 1965
## 14019                                            St. Lucia    LC   LCA 1966
## 14020                                            St. Lucia    LC   LCA 1967
## 14021                                            St. Lucia    LC   LCA 1968
## 14022                                            St. Lucia    LC   LCA 1969
## 14023                                            St. Lucia    LC   LCA 1970
## 14024                                            St. Lucia    LC   LCA 1971
## 14025                                            St. Lucia    LC   LCA 1972
## 14026                                            St. Lucia    LC   LCA 1973
## 14027                                            St. Lucia    LC   LCA 1974
## 14028                                            St. Lucia    LC   LCA 1975
## 14029                                            St. Lucia    LC   LCA 1976
## 14030                                            St. Lucia    LC   LCA 1977
## 14031                                            St. Lucia    LC   LCA 1978
## 14032                                            St. Lucia    LC   LCA 1979
## 14033                                            St. Lucia    LC   LCA 1980
## 14034                                            St. Lucia    LC   LCA 1981
## 14035                                            St. Lucia    LC   LCA 1982
## 14036                                            St. Lucia    LC   LCA 1983
## 14037                                            St. Lucia    LC   LCA 1984
## 14038                                            St. Lucia    LC   LCA 1985
## 14039                                            St. Lucia    LC   LCA 1986
## 14040                                            St. Lucia    LC   LCA 1987
## 14041                                            St. Lucia    LC   LCA 1988
## 14042                                            St. Lucia    LC   LCA 1989
## 14043                                            St. Lucia    LC   LCA 1990
## 14044                                            St. Lucia    LC   LCA 1991
## 14045                                            St. Lucia    LC   LCA 1992
## 14046                                            St. Lucia    LC   LCA 1993
## 14047                                            St. Lucia    LC   LCA 1994
## 14048                                            St. Lucia    LC   LCA 1995
## 14049                                            St. Lucia    LC   LCA 1996
## 14050                                            St. Lucia    LC   LCA 1997
## 14051                                            St. Lucia    LC   LCA 1998
## 14052                                            St. Lucia    LC   LCA 1999
## 14053                                            St. Lucia    LC   LCA 2000
## 14054                                            St. Lucia    LC   LCA 2001
## 14055                                            St. Lucia    LC   LCA 2002
## 14056                                            St. Lucia    LC   LCA 2003
## 14057                                            St. Lucia    LC   LCA 2004
## 14058                                            St. Lucia    LC   LCA 2005
## 14059                                            St. Lucia    LC   LCA 2006
## 14060                                            St. Lucia    LC   LCA 2007
## 14061                                            St. Lucia    LC   LCA 2008
## 14062                                            St. Lucia    LC   LCA 2009
## 14063                                            St. Lucia    LC   LCA 2010
## 14064                                            St. Lucia    LC   LCA 2011
## 14065                                            St. Lucia    LC   LCA 2012
## 14066                                            St. Lucia    LC   LCA 2013
## 14067                                            St. Lucia    LC   LCA 2014
## 14068                                            St. Lucia    LC   LCA 2015
## 14069                                            St. Lucia    LC   LCA 2016
## 14070                                            St. Lucia    LC   LCA 2017
## 14071                                            St. Lucia    LC   LCA 2018
## 14072                                            St. Lucia    LC   LCA 2019
## 14073                                            St. Lucia    LC   LCA 2020
## 14074                                            St. Lucia    LC   LCA 2021
## 14075                             St. Martin (French part)    MF   MAF 1960
## 14076                             St. Martin (French part)    MF   MAF 1961
## 14077                             St. Martin (French part)    MF   MAF 1962
## 14078                             St. Martin (French part)    MF   MAF 1963
## 14079                             St. Martin (French part)    MF   MAF 1964
## 14080                             St. Martin (French part)    MF   MAF 1965
## 14081                             St. Martin (French part)    MF   MAF 1966
## 14082                             St. Martin (French part)    MF   MAF 1967
## 14083                             St. Martin (French part)    MF   MAF 1968
## 14084                             St. Martin (French part)    MF   MAF 1969
## 14085                             St. Martin (French part)    MF   MAF 1970
## 14086                             St. Martin (French part)    MF   MAF 1971
## 14087                             St. Martin (French part)    MF   MAF 1972
## 14088                             St. Martin (French part)    MF   MAF 1973
## 14089                             St. Martin (French part)    MF   MAF 1974
## 14090                             St. Martin (French part)    MF   MAF 1975
## 14091                             St. Martin (French part)    MF   MAF 1976
## 14092                             St. Martin (French part)    MF   MAF 1977
## 14093                             St. Martin (French part)    MF   MAF 1978
## 14094                             St. Martin (French part)    MF   MAF 1979
## 14095                             St. Martin (French part)    MF   MAF 1980
## 14096                             St. Martin (French part)    MF   MAF 1981
## 14097                             St. Martin (French part)    MF   MAF 1982
## 14098                             St. Martin (French part)    MF   MAF 1983
## 14099                             St. Martin (French part)    MF   MAF 1984
## 14100                             St. Martin (French part)    MF   MAF 1985
## 14101                             St. Martin (French part)    MF   MAF 1986
## 14102                             St. Martin (French part)    MF   MAF 1987
## 14103                             St. Martin (French part)    MF   MAF 1988
## 14104                             St. Martin (French part)    MF   MAF 1989
## 14105                             St. Martin (French part)    MF   MAF 1990
## 14106                             St. Martin (French part)    MF   MAF 1991
## 14107                             St. Martin (French part)    MF   MAF 1992
## 14108                             St. Martin (French part)    MF   MAF 1993
## 14109                             St. Martin (French part)    MF   MAF 1994
## 14110                             St. Martin (French part)    MF   MAF 1995
## 14111                             St. Martin (French part)    MF   MAF 1996
## 14112                             St. Martin (French part)    MF   MAF 1997
## 14113                             St. Martin (French part)    MF   MAF 1998
## 14114                             St. Martin (French part)    MF   MAF 1999
## 14115                             St. Martin (French part)    MF   MAF 2000
## 14116                             St. Martin (French part)    MF   MAF 2001
## 14117                             St. Martin (French part)    MF   MAF 2002
## 14118                             St. Martin (French part)    MF   MAF 2003
## 14119                             St. Martin (French part)    MF   MAF 2004
## 14120                             St. Martin (French part)    MF   MAF 2005
## 14121                             St. Martin (French part)    MF   MAF 2006
## 14122                             St. Martin (French part)    MF   MAF 2007
## 14123                             St. Martin (French part)    MF   MAF 2008
## 14124                             St. Martin (French part)    MF   MAF 2009
## 14125                             St. Martin (French part)    MF   MAF 2010
## 14126                             St. Martin (French part)    MF   MAF 2011
## 14127                             St. Martin (French part)    MF   MAF 2012
## 14128                             St. Martin (French part)    MF   MAF 2013
## 14129                             St. Martin (French part)    MF   MAF 2014
## 14130                             St. Martin (French part)    MF   MAF 2015
## 14131                             St. Martin (French part)    MF   MAF 2016
## 14132                             St. Martin (French part)    MF   MAF 2017
## 14133                             St. Martin (French part)    MF   MAF 2018
## 14134                             St. Martin (French part)    MF   MAF 2019
## 14135                             St. Martin (French part)    MF   MAF 2020
## 14136                             St. Martin (French part)    MF   MAF 2021
## 14137                       St. Vincent and the Grenadines    VC   VCT 1960
## 14138                       St. Vincent and the Grenadines    VC   VCT 1961
## 14139                       St. Vincent and the Grenadines    VC   VCT 1962
## 14140                       St. Vincent and the Grenadines    VC   VCT 1963
## 14141                       St. Vincent and the Grenadines    VC   VCT 1964
## 14142                       St. Vincent and the Grenadines    VC   VCT 1965
## 14143                       St. Vincent and the Grenadines    VC   VCT 1966
## 14144                       St. Vincent and the Grenadines    VC   VCT 1967
## 14145                       St. Vincent and the Grenadines    VC   VCT 1968
## 14146                       St. Vincent and the Grenadines    VC   VCT 1969
## 14147                       St. Vincent and the Grenadines    VC   VCT 1970
## 14148                       St. Vincent and the Grenadines    VC   VCT 1971
## 14149                       St. Vincent and the Grenadines    VC   VCT 1972
## 14150                       St. Vincent and the Grenadines    VC   VCT 1973
## 14151                       St. Vincent and the Grenadines    VC   VCT 1974
## 14152                       St. Vincent and the Grenadines    VC   VCT 1975
## 14153                       St. Vincent and the Grenadines    VC   VCT 1976
## 14154                       St. Vincent and the Grenadines    VC   VCT 1977
## 14155                       St. Vincent and the Grenadines    VC   VCT 1978
## 14156                       St. Vincent and the Grenadines    VC   VCT 1979
## 14157                       St. Vincent and the Grenadines    VC   VCT 1980
## 14158                       St. Vincent and the Grenadines    VC   VCT 1981
## 14159                       St. Vincent and the Grenadines    VC   VCT 1982
## 14160                       St. Vincent and the Grenadines    VC   VCT 1983
## 14161                       St. Vincent and the Grenadines    VC   VCT 1984
## 14162                       St. Vincent and the Grenadines    VC   VCT 1985
## 14163                       St. Vincent and the Grenadines    VC   VCT 1986
## 14164                       St. Vincent and the Grenadines    VC   VCT 1987
## 14165                       St. Vincent and the Grenadines    VC   VCT 1988
## 14166                       St. Vincent and the Grenadines    VC   VCT 1989
## 14167                       St. Vincent and the Grenadines    VC   VCT 1990
## 14168                       St. Vincent and the Grenadines    VC   VCT 1991
## 14169                       St. Vincent and the Grenadines    VC   VCT 1992
## 14170                       St. Vincent and the Grenadines    VC   VCT 1993
## 14171                       St. Vincent and the Grenadines    VC   VCT 1994
## 14172                       St. Vincent and the Grenadines    VC   VCT 1995
## 14173                       St. Vincent and the Grenadines    VC   VCT 1996
## 14174                       St. Vincent and the Grenadines    VC   VCT 1997
## 14175                       St. Vincent and the Grenadines    VC   VCT 1998
## 14176                       St. Vincent and the Grenadines    VC   VCT 1999
## 14177                       St. Vincent and the Grenadines    VC   VCT 2000
## 14178                       St. Vincent and the Grenadines    VC   VCT 2001
## 14179                       St. Vincent and the Grenadines    VC   VCT 2002
## 14180                       St. Vincent and the Grenadines    VC   VCT 2003
## 14181                       St. Vincent and the Grenadines    VC   VCT 2004
## 14182                       St. Vincent and the Grenadines    VC   VCT 2005
## 14183                       St. Vincent and the Grenadines    VC   VCT 2006
## 14184                       St. Vincent and the Grenadines    VC   VCT 2007
## 14185                       St. Vincent and the Grenadines    VC   VCT 2008
## 14186                       St. Vincent and the Grenadines    VC   VCT 2009
## 14187                       St. Vincent and the Grenadines    VC   VCT 2010
## 14188                       St. Vincent and the Grenadines    VC   VCT 2011
## 14189                       St. Vincent and the Grenadines    VC   VCT 2012
## 14190                       St. Vincent and the Grenadines    VC   VCT 2013
## 14191                       St. Vincent and the Grenadines    VC   VCT 2014
## 14192                       St. Vincent and the Grenadines    VC   VCT 2015
## 14193                       St. Vincent and the Grenadines    VC   VCT 2016
## 14194                       St. Vincent and the Grenadines    VC   VCT 2017
## 14195                       St. Vincent and the Grenadines    VC   VCT 2018
## 14196                       St. Vincent and the Grenadines    VC   VCT 2019
## 14197                       St. Vincent and the Grenadines    VC   VCT 2020
## 14198                       St. Vincent and the Grenadines    VC   VCT 2021
## 14199                                   Sub-Saharan Africa    ZG   SSF 1960
## 14200                                   Sub-Saharan Africa    ZG   SSF 1961
## 14201                                   Sub-Saharan Africa    ZG   SSF 1962
## 14202                                   Sub-Saharan Africa    ZG   SSF 1963
## 14203                                   Sub-Saharan Africa    ZG   SSF 1964
## 14204                                   Sub-Saharan Africa    ZG   SSF 1965
## 14205                                   Sub-Saharan Africa    ZG   SSF 1966
## 14206                                   Sub-Saharan Africa    ZG   SSF 1967
## 14207                                   Sub-Saharan Africa    ZG   SSF 1968
## 14208                                   Sub-Saharan Africa    ZG   SSF 1969
## 14209                                   Sub-Saharan Africa    ZG   SSF 1970
## 14210                                   Sub-Saharan Africa    ZG   SSF 1971
## 14211                                   Sub-Saharan Africa    ZG   SSF 1972
## 14212                                   Sub-Saharan Africa    ZG   SSF 1973
## 14213                                   Sub-Saharan Africa    ZG   SSF 1974
## 14214                                   Sub-Saharan Africa    ZG   SSF 1975
## 14215                                   Sub-Saharan Africa    ZG   SSF 1976
## 14216                                   Sub-Saharan Africa    ZG   SSF 1977
## 14217                                   Sub-Saharan Africa    ZG   SSF 1978
## 14218                                   Sub-Saharan Africa    ZG   SSF 1979
## 14219                                   Sub-Saharan Africa    ZG   SSF 1980
## 14220                                   Sub-Saharan Africa    ZG   SSF 1981
## 14221                                   Sub-Saharan Africa    ZG   SSF 1982
## 14222                                   Sub-Saharan Africa    ZG   SSF 1983
## 14223                                   Sub-Saharan Africa    ZG   SSF 1984
## 14224                                   Sub-Saharan Africa    ZG   SSF 1985
## 14225                                   Sub-Saharan Africa    ZG   SSF 1986
## 14226                                   Sub-Saharan Africa    ZG   SSF 1987
## 14227                                   Sub-Saharan Africa    ZG   SSF 1988
## 14228                                   Sub-Saharan Africa    ZG   SSF 1989
## 14229                                   Sub-Saharan Africa    ZG   SSF 1990
## 14230                                   Sub-Saharan Africa    ZG   SSF 1991
## 14231                                   Sub-Saharan Africa    ZG   SSF 1992
## 14232                                   Sub-Saharan Africa    ZG   SSF 1993
## 14233                                   Sub-Saharan Africa    ZG   SSF 1994
## 14234                                   Sub-Saharan Africa    ZG   SSF 1995
## 14235                                   Sub-Saharan Africa    ZG   SSF 1996
## 14236                                   Sub-Saharan Africa    ZG   SSF 1997
## 14237                                   Sub-Saharan Africa    ZG   SSF 1998
## 14238                                   Sub-Saharan Africa    ZG   SSF 1999
## 14239                                   Sub-Saharan Africa    ZG   SSF 2000
## 14240                                   Sub-Saharan Africa    ZG   SSF 2001
## 14241                                   Sub-Saharan Africa    ZG   SSF 2002
## 14242                                   Sub-Saharan Africa    ZG   SSF 2003
## 14243                                   Sub-Saharan Africa    ZG   SSF 2004
## 14244                                   Sub-Saharan Africa    ZG   SSF 2005
## 14245                                   Sub-Saharan Africa    ZG   SSF 2006
## 14246                                   Sub-Saharan Africa    ZG   SSF 2007
## 14247                                   Sub-Saharan Africa    ZG   SSF 2008
## 14248                                   Sub-Saharan Africa    ZG   SSF 2009
## 14249                                   Sub-Saharan Africa    ZG   SSF 2010
## 14250                                   Sub-Saharan Africa    ZG   SSF 2011
## 14251                                   Sub-Saharan Africa    ZG   SSF 2012
## 14252                                   Sub-Saharan Africa    ZG   SSF 2013
## 14253                                   Sub-Saharan Africa    ZG   SSF 2014
## 14254                                   Sub-Saharan Africa    ZG   SSF 2015
## 14255                                   Sub-Saharan Africa    ZG   SSF 2016
## 14256                                   Sub-Saharan Africa    ZG   SSF 2017
## 14257                                   Sub-Saharan Africa    ZG   SSF 2018
## 14258                                   Sub-Saharan Africa    ZG   SSF 2019
## 14259                                   Sub-Saharan Africa    ZG   SSF 2020
## 14260                                   Sub-Saharan Africa    ZG   SSF 2021
## 14261           Sub-Saharan Africa (excluding high income)    ZF   SSA 1960
## 14262           Sub-Saharan Africa (excluding high income)    ZF   SSA 1961
## 14263           Sub-Saharan Africa (excluding high income)    ZF   SSA 1962
## 14264           Sub-Saharan Africa (excluding high income)    ZF   SSA 1963
## 14265           Sub-Saharan Africa (excluding high income)    ZF   SSA 1964
## 14266           Sub-Saharan Africa (excluding high income)    ZF   SSA 1965
## 14267           Sub-Saharan Africa (excluding high income)    ZF   SSA 1966
## 14268           Sub-Saharan Africa (excluding high income)    ZF   SSA 1967
## 14269           Sub-Saharan Africa (excluding high income)    ZF   SSA 1968
## 14270           Sub-Saharan Africa (excluding high income)    ZF   SSA 1969
## 14271           Sub-Saharan Africa (excluding high income)    ZF   SSA 1970
## 14272           Sub-Saharan Africa (excluding high income)    ZF   SSA 1971
## 14273           Sub-Saharan Africa (excluding high income)    ZF   SSA 1972
## 14274           Sub-Saharan Africa (excluding high income)    ZF   SSA 1973
## 14275           Sub-Saharan Africa (excluding high income)    ZF   SSA 1974
## 14276           Sub-Saharan Africa (excluding high income)    ZF   SSA 1975
## 14277           Sub-Saharan Africa (excluding high income)    ZF   SSA 1976
## 14278           Sub-Saharan Africa (excluding high income)    ZF   SSA 1977
## 14279           Sub-Saharan Africa (excluding high income)    ZF   SSA 1978
## 14280           Sub-Saharan Africa (excluding high income)    ZF   SSA 1979
## 14281           Sub-Saharan Africa (excluding high income)    ZF   SSA 1980
## 14282           Sub-Saharan Africa (excluding high income)    ZF   SSA 1981
## 14283           Sub-Saharan Africa (excluding high income)    ZF   SSA 1982
## 14284           Sub-Saharan Africa (excluding high income)    ZF   SSA 1983
## 14285           Sub-Saharan Africa (excluding high income)    ZF   SSA 1984
##        lifeExp        pop   gdpPercap
## 1     32.44600    8996967          NA
## 2     32.96200    9169406          NA
## 3     33.47100    9351442          NA
## 4     33.97100    9543200          NA
## 5     34.46300    9744772          NA
## 6     34.94800    9956318          NA
## 7     35.43000   10174840          NA
## 8     35.91400   10399936          NA
## 9     36.40300   10637064          NA
## 10    36.90000   10893772          NA
## 11    37.40900   11173654          NA
## 12    37.93000   11475450          NA
## 13    38.46100   11791222          NA
## 14    39.00300   12108963          NA
## 15    39.55800   12412960          NA
## 16    40.12800   12689164          NA
## 17    40.71500   12943093          NA
## 18    41.32000   13171294          NA
## 19    41.94400   13341199          NA
## 20    42.58500   13411060          NA
## 21    43.24400   13356500          NA
## 22    43.92300   13171679          NA
## 23    44.61700   12882518          NA
## 24    45.32400   12537732          NA
## 25    46.04000   12204306          NA
## 26    46.76100   11938204          NA
## 27    47.48600   11736177          NA
## 28    48.21100   11604538          NA
## 29    48.93000   11618008          NA
## 30    49.64000   11868873          NA
## 31    50.33100   12412311          NA
## 32    50.99900   13299016          NA
## 33    51.64100   14485543          NA
## 34    52.25600   15816601          NA
## 35    52.84200   17075728          NA
## 36    53.39800   18110662          NA
## 37    53.92400   18853444          NA
## 38    54.42400   19357126          NA
## 39    54.90600   19737770          NA
## 40    55.37600   20170847          NA
## 41    55.84100   20779957          NA
## 42    56.30800   21606992          NA
## 43    56.78400   22600774    319.8471
## 44    57.27100   23680871    332.2200
## 45    57.77200   24726689    322.6680
## 46    58.29000   25654274    345.9258
## 47    58.82600   26433058    353.7206
## 48    59.37500   27100542    392.7105
## 49    59.93000   27722281    398.9711
## 50    60.48400   28394806    472.8423
## 51    61.02800   29185511    526.1037
## 52    61.55300   30117411    511.9985
## 53    62.05400   31161378    557.9497
## 54    62.52500   32269592    568.9645
## 55    62.96600   33370804    565.1793
## 56    63.37700   34413603    556.0072
## 57    63.76300   35383028    552.9969
## 58    64.13000   36296111    553.3551
## 59    64.48600   37171922    546.7430
## 60    64.83300   38041757    555.1390
## 61    65.17300   38928341    529.7412
## 62          NA   39835428          NA
## 63    42.71605  130836765   1175.7353
## 64    43.16694  134159786   1149.3606
## 65    43.60399  137614644   1209.9305
## 66    44.02562  141202036   1240.0882
## 67    44.43272  144920186   1263.6101
## 68    44.82692  148769974   1296.4906
## 69    45.21305  152752671   1312.0850
## 70    45.59429  156876454   1344.7552
## 71    45.97406  161156430   1361.7142
## 72    46.35240  165611760   1395.0444
## 73    46.72880  170257189   1420.7694
## 74    47.10287  175100167   1455.6812
## 75    47.47117  180141148   1445.3727
## 76    47.82940  185376550   1466.8759
## 77    48.17500  190800796   1509.0984
## 78    48.50331  196409937   1491.3640
## 79    48.81084  202205766   1489.8486
## 80    49.09785  208193045   1464.8120
## 81    49.36633  214368393   1437.3183
## 82    49.62000  220740384   1434.8515
## 83    49.87069  227305945   1468.9210
## 84    50.11589  234058404   1488.3235
## 85    50.36346  240999134   1452.8100
## 86    50.61038  248146290   1413.1155
## 87    50.84833  255530063   1413.5308
## 88    51.05806  263161451   1366.3952
## 89    51.21428  271050065   1356.9575
## 90    51.29978  279184536   1373.1796
## 91    51.30860  287524258   1386.6545
## 92    51.25176  296024639   1385.8630
## 93    51.15411  304648010   1346.1004
## 94    51.04841  313394693   1309.9094
## 95    50.95726  322270073   1248.6235
## 96    50.89025  331265579   1209.9519
## 97    50.84186  340379934   1201.4085
## 98    50.80848  349605660   1219.8938
## 99    50.79616  358953595   1252.7195
## 100   50.82061  368440591   1274.4565
## 101   50.89761  378098393   1264.8553
## 102   51.04419  387977990   1265.1452
## 103   51.27613  398113044   1274.2504
## 104   51.60646  408522129   1287.2158
## 105   52.04315  419223717   1303.1937
## 106   52.58585  430246635   1308.9207
## 107   53.22891  441630149   1345.4233
## 108   53.96655  453404076   1390.6454
## 109   54.79171  465581372   1443.0440
## 110   55.68234  478166911   1497.8568
## 111   56.60980  491173160   1521.5296
## 112   57.54877  504604672   1492.3036
## 113   58.47070  518468229   1527.2297
## 114   59.35359  532760424   1540.9664
## 115   60.18556  547482863   1513.3697
## 116   60.95336  562601578   1534.5577
## 117   61.64737  578075373   1552.9870
## 118   62.25929  593871847   1556.3165
## 119   62.78768  609978946   1548.8131
## 120   63.24626  626392880   1546.7956
## 121   63.64899  643090131   1544.0780
## 122   64.00521  660046272   1534.8901
## 123   64.32570  677243299   1452.7303
## 124         NA  694665117   1477.2493
## 125   37.20538   96396419   1087.6399
## 126   37.63255   98407221   1085.1126
## 127   38.05261  100506960   1102.4994
## 128   38.46375  102691339   1157.5209
## 129   38.86707  104953470   1193.6896
## 130   39.26484  107289875   1214.9844
## 131   39.66276  109701811   1167.0360
## 132   40.06641  112195950   1032.1586
## 133   40.48283  114781116   1023.7001
## 134   40.91422  117468741   1155.2404
## 135   41.36512  120269044   1330.4162
## 136   41.83721  123184308   1439.3126
## 137   42.32704  126218502   1448.9047
## 138   42.82908  129384954   1472.9998
## 139   43.33922  132699537   1583.4160
## 140   43.85504  136173544   1509.6255
## 141   44.37397  139813171   1596.4613
## 142   44.89223  143615715   1627.6446
## 143   45.40268  147571063   1549.2626
## 144   45.89748  151663853   1586.3064
## 145   46.36610  155882270   1574.1754
## 146   46.79829  160223588   1425.3480
## 147   47.18862  164689764   1340.2363
## 148   47.53399  169279422   1218.7008
## 149   47.83054  173991851   1192.3263
## 150   48.07938  178826553   1224.4947
## 151   48.28458  183785612   1208.3095
## 152   48.45413  188868567   1192.8205
## 153   48.59742  194070079   1217.0848
## 154   48.71923  199382783   1211.5714
## 155   48.81700  204803865   1256.9107
## 156   48.88593  210332267   1237.5945
## 157   48.92342  215976366   1237.7215
## 158   48.93371  221754806   1191.4801
## 159   48.92551  227692136   1156.9333
## 160   48.90994  233807627   1148.3840
## 161   48.89988  240114179   1169.9849
## 162   48.90913  246613750   1187.3887
## 163   48.95534  253302310   1196.5717
## 164   49.05264  260170348   1181.5388
## 165   49.21971  267214544   1193.3549
## 166   49.47514  274433894   1222.5315
## 167   49.81693  281842480   1308.2395
## 168   50.23943  289469530   1344.0622
## 169   50.73342  297353098   1413.2780
## 170   51.28349  305520588   1455.9409
## 171   51.86820  313985474   1492.8292
## 172   52.46396  322741656   1532.6545
## 173   53.04950  331772330   1584.5557
## 174   53.61209  341050537   1638.1663
## 175   54.14431  350556886   1704.6199
## 176   54.65000  360285439   1739.0052
## 177   55.13894  370243017   1779.2668
## 178   55.61899  380437896   1837.2858
## 179   56.08827  390882979   1894.1827
## 180   56.54201  401586651   1894.3221
## 181   56.97476  412551299   1846.3329
## 182   57.38236  423769930   1839.1134
## 183   57.76235  435229381   1843.5547
## 184   58.11572  446911598   1852.8617
## 185   58.44595  458803476   1788.6472
## 186         NA  470898870   1810.9278
## 187   62.28300    1608800          NA
## 188   63.30100    1659800          NA
## 189   64.19000    1711319          NA
## 190   64.91400    1762621          NA
## 191   65.46300    1814135          NA
## 192   65.85000    1864791          NA
## 193   66.11000    1914573          NA
## 194   66.30400    1965598          NA
## 195   66.48700    2022272          NA
## 196   66.68900    2081695          NA
## 197   66.93500    2135479          NA
## 198   67.23700    2187853          NA
## 199   67.58200    2243126          NA
## 200   67.95300    2296752          NA
## 201   68.34300    2350124          NA
## 202   68.73600    2404831          NA
## 203   69.11000    2458526          NA
## 204   69.44800    2513546          NA
## 205   69.74200    2566266          NA
## 206   69.99100    2617832          NA
## 207   70.20800    2671997   1740.5054
## 208   70.41600    2726056   1804.0103
## 209   70.63500    2784278   1818.3673
## 210   70.87600    2843960   1799.8781
## 211   71.13400    2904429   1740.3472
## 212   71.38800    2964762   1735.2899
## 213   71.60500    3022635   1798.0146
## 214   71.76000    3083605   1748.5783
## 215   71.84300    3142336   1691.5305
## 216   71.86000    3227943   1808.6456
## 217   71.83600    3286542   1606.2960
## 218   71.80300    3266790   1163.4913
## 219   71.80200    3247039   1086.4385
## 220   71.86000    3227287   1197.5806
## 221   71.99200    3207536   1305.0007
## 222   72.20500    3187784   1488.0205
## 223   72.49500    3168033   1633.5516
## 224   72.83800    3148281   1464.2976
## 225   73.20800    3128530   1603.6472
## 226   73.58700    3108778   1821.8727
## 227   73.95500    3089027   1960.8819
## 228   74.28800    3060173   2143.5263
## 229   74.57900    3051010   2247.4975
## 230   74.82800    3039616   2380.6440
## 231   75.03900    3026939   2522.4487
## 232   75.22800    3011487   2675.5079
## 233   75.42300    2992547   2851.3670
## 234   75.64600    2970017   3044.8958
## 235   75.91200    2947314   3298.4780
## 236   76.22100    2927519   3432.1700
## 237   76.56200    2913021   3577.1134
## 238   76.91400    2905195   3678.0467
## 239   77.25200    2900401   3736.3391
## 240   77.55400    2895092   3780.6982
## 241   77.81300    2889104   3855.7597
## 242   78.02500    2880703   3952.8025
## 243   78.19400    2876101   4090.3717
## 244   78.33300    2873457   4249.8037
## 245   78.45800    2866376   4431.5392
## 246   78.57300    2854191   4543.3865
## 247   78.68600    2837849   4410.4552
## 248         NA    2811666   4831.8687
## 249   46.14100   11057864   2170.3127
## 250   46.59900   11336336   1828.9728
## 251   47.05600   11619828   1433.1006
## 252   47.50900   11912800   1877.5130
## 253   47.95800   12221675   1936.9280
## 254   48.39400   12550880   2003.1929
## 255   48.81100   12902626   1854.9538
## 256   49.21000   13275020   1973.3474
## 257   49.59700   13663581   2124.2186
## 258   49.98200   14061724   2238.1427
## 259   50.37200   14464992   2368.5747
## 260   50.77300   14872253   2042.6634
## 261   51.20100   15285992   2532.3928
## 262   51.67600   15709831   2558.0302
## 263   52.21800   16149018   2674.9704
## 264   52.86600   16607706   2732.3244
## 265   53.66100   17085799   2878.6100
## 266   54.60900   17582899   2944.3211
## 267   55.70000   18102266   3123.3766
## 268   56.90900   18647801   3258.7312
## 269   58.19800   19221659   3186.4372
## 270   59.51900   19824297   3182.2599
## 271   60.81300   20452901   3281.8609
## 272   62.02900   21101875   3352.6997
## 273   63.13000   21763578   3432.8064
## 274   64.08700   22431507   3453.8216
## 275   64.88400   23102386   3366.9389
## 276   65.54500   23774287   3248.8812
## 277   66.09700   24443472   3128.3375
## 278   66.55400   25106192   3179.7733
## 279   66.93800   25758872   3123.9977
## 280   67.27000   26400468   3011.4999
## 281   67.57500   27028330   2994.4913
## 282   67.87700   27635517   2867.1959
## 283   68.19400   28213777   2783.1550
## 284   68.54000   28757788   2834.2652
## 285   68.91900   29266415   2899.1932
## 286   69.32300   29742980   2884.1202
## 287   69.74500   30192750   2986.0557
## 288   70.18300   30623406   3038.2729
## 289   70.64000   31042238   3111.1762
## 290   71.11600   31451513   3162.8115
## 291   71.60500   31855110   3297.6128
## 292   72.10100   32264159   3490.2232
## 293   72.59400   32692153   3592.6453
## 294   73.07200   33149720   3752.0962
## 295   73.52100   33641007   3760.1554
## 296   73.93600   34166976   3828.1485
## 297   74.31100   34730604   3856.4077
## 298   74.64400   35333882   3851.2138
## 299   74.93800   35977451   3918.4864
## 300   75.19900   36661438   3956.8958
## 301   75.43600   37383899   4012.3615
## 302   75.66100   38140135   4042.9236
## 303   75.87800   38923688   4112.0760
## 304   76.09000   39728020   4177.8895
## 305   76.29800   40551398   4224.0373
## 306   76.49900   41389174   4192.3377
## 307   76.69300   42228415   4154.2190
## 308   76.88000   43053054   4115.3955
## 309   77.06300   43851043   3834.4390
## 310         NA   44616626   3913.6529
## 311         NA      20127          NA
## 312         NA      20605          NA
## 313         NA      21246          NA
## 314         NA      22029          NA
## 315         NA      22850          NA
## 316         NA      23675          NA
## 317         NA      24473          NA
## 318         NA      25235          NA
## 319         NA      25980          NA
## 320         NA      26698          NA
## 321         NA      27362          NA
## 322         NA      27982          NA
## 323         NA      28564          NA
## 324         NA      29103          NA
## 325         NA      29595          NA
## 326         NA      30045          NA
## 327         NA      30455          NA
## 328         NA      30834          NA
## 329         NA      31262          NA
## 330         NA      31842          NA
## 331         NA      32648          NA
## 332         NA      33697          NA
## 333         NA      34969          NA
## 334         NA      36413          NA
## 335         NA      37946          NA
## 336         NA      39521          NA
## 337         NA      41114          NA
## 338         NA      42741          NA
## 339         NA      44346          NA
## 340         NA      45894          NA
## 341         NA      47351          NA
## 342         NA      48682          NA
## 343         NA      49900          NA
## 344         NA      51025          NA
## 345         NA      52099          NA
## 346         NA      53158          NA
## 347         NA      54209          NA
## 348         NA      55227          NA
## 349         NA      56180          NA
## 350         NA      57049          NA
## 351         NA      57816          NA
## 352         NA      58496          NA
## 353         NA      59077  12609.3685
## 354         NA      59495  12641.6679
## 355         NA      59684  12653.2818
## 356         NA      59557  12628.5077
## 357         NA      59109  12202.7374
## 358         NA      58367  12586.7160
## 359         NA      57490  12439.1497
## 360         NA      56675  12092.2765
## 361         NA      56084  12256.3429
## 362         NA      55755  12328.6653
## 363         NA      55669  11812.4591
## 364         NA      55717  11507.2257
## 365         NA      55791  11694.5454
## 366         NA      55806  12059.6352
## 367         NA      55739  11871.3595
## 368         NA      55617  11066.0602
## 369         NA      55461  11393.6057
## 370         NA      55312  11368.5696
## 371         NA      55197  11839.0105
## 372         NA      55103          NA
## 373         NA      13410          NA
## 374         NA      14378          NA
## 375         NA      15379          NA
## 376         NA      16407          NA
## 377         NA      17466          NA
## 378         NA      18542          NA
## 379         NA      19646          NA
## 380         NA      20760          NA
## 381         NA      21886          NA
## 382         NA      23053          NA
## 383         NA      24275  35391.2140
## 384         NA      25571  35159.6061
## 385         NA      26885  36166.5570
## 386         NA      28232  37123.4096
## 387         NA      29515  37504.8905
## 388         NA      30705  36246.8271
## 389         NA      31782  36175.4646
## 390         NA      32769  36081.8008
## 391         NA      33744  35551.8767
## 392         NA      34825  34462.6295
## 393         NA      36063  34014.6234
## 394         NA      37498  32669.5914
## 395         NA      39115  31709.4219
## 396         NA      40854  30897.0741
## 397         NA      42706  30084.6863
## 398         NA      44593  29480.4634
## 399         NA      46520  29178.6586
## 400         NA      48459  29564.9384
## 401         NA      50433  29854.9187
## 402         NA      52452  30091.3687
## 403         NA      54508  30051.2970
## 404         NA      56666  29642.8291
## 405         NA      58882  28792.3124
## 406         NA      60974  27517.6580
## 407         NA      62676  27408.3889
## 408         NA      63860  27641.9961
## 409         NA      64363  28701.2086
## 410         NA      64318  31325.6417
## 411         NA      64140  32416.1429
## 412         NA      64368  33625.3772
## 413         NA      65390  34267.7182
## 414         NA      67344  35975.0224
## 415         NA      70048  36158.7299
## 416         NA      73180  37620.3548
## 417         NA      76250  39043.1137
## 418         NA      78871  39783.0866
## 419         NA      80995  40602.6987
## 420         NA      82682  40392.0317
## 421         NA      83860  37610.7102
## 422         NA      84461  35362.8369
## 423         NA      84454  34667.3089
## 424         NA      83748  34956.7349
## 425         NA      82427  33750.1908
## 426         NA      80770  33220.6938
## 427         NA      79213  34722.0298
## 428         NA      77993  35770.9187
## 429         NA      77295  37432.9112
## 430         NA      76997  37707.8332
## 431         NA      77008  38301.4504
## 432         NA      77146  39003.5392
## 433         NA      77265  34588.0537
## 434         NA      77354  37640.1263
## 435   37.52400    5454938          NA
## 436   37.81100    5531451          NA
## 437   38.11300    5608499          NA
## 438   38.43000    5679409          NA
## 439   38.76000    5734995          NA
## 440   39.10200    5770573          NA
## 441   39.45400    5781305          NA
## 442   39.81300    5774440          NA
## 443   40.17800    5771973          NA
## 444   40.54600    5803677          NA
## 445   40.91400    5890360          NA
## 446   41.28200    6041239          NA
## 447   41.65000    6248965          NA
## 448   42.01600    6497283          NA
## 449   42.37400    6761623          NA
## 450   42.72100    7023994          NA
## 451   43.05300    7279630          NA
## 452   43.36700    7533814          NA
## 453   43.66000    7790774          NA
## 454   43.93100    8058112          NA
## 455   44.17800    8341290   2653.4729
## 456   44.40400    8640478   2448.8828
## 457   44.61100    8952971   2363.4074
## 458   44.79900    9278104   2376.3710
## 459   44.96600    9614756   2430.7545
## 460   45.10700    9961993   2428.1386
## 461   45.21300   10320116   2411.8512
## 462   45.28300   10689247   2423.6323
## 463   45.31700   11068051   2484.1414
## 464   45.32400   11454784   2401.2716
## 465   45.30600   11848385   2241.4077
## 466   45.27100   12248901   2189.6118
## 467   45.23000   12657361   1995.2414
## 468   45.20100   13075044   1468.2628
## 469   45.20100   13503753   1440.6904
## 470   45.24600   13945205   1604.3461
## 471   45.35000   14400722   1764.0233
## 472   45.51900   14871572   1832.4296
## 473   45.76300   15359600   1857.4376
## 474   46.09300   15866871   1837.2788
## 475   46.52200   16395477   1832.3557
## 476   47.05900   16945753   1847.4202
## 477   47.70200   17519418   2031.1233
## 478   48.44000   18121477   2022.3551
## 479   49.26300   18758138   2167.6472
## 480   50.16500   19433604   2406.7783
## 481   51.14300   20149905   2589.3217
## 482   52.17700   20905360   2845.4064
## 483   53.24300   21695636   3048.0156
## 484   54.31100   22514275   2962.4468
## 485   55.35000   23356247   2994.4380
## 486   56.33000   24220660   2987.7679
## 487   57.23600   25107925   3128.3247
## 488   58.05400   26015786   3168.6053
## 489   58.77600   26941773   3207.1781
## 490   59.39800   27884380   3127.8906
## 491   59.92500   28842482   2945.9681
## 492   60.37900   29816769   2845.4317
## 493   60.78200   30809787   2717.4741
## 494   61.14700   31825299   2612.3470
## 495   61.48700   32866268   2390.4781
## 496         NA   33933611   2331.4954
## 497   61.96800      54132          NA
## 498   62.52300      55005          NA
## 499   63.04900      55849          NA
## 500   63.54000      56701          NA
## 501   63.99200      57641          NA
## 502   64.40100      58699          NA
## 503   64.76200      59912          NA
## 504   65.08100      61240          NA
## 505   65.36300      62523          NA
## 506   65.61600      63553          NA
## 507   65.84700      64184          NA
## 508   66.06600      64354          NA
## 509   66.28000      64134          NA
## 510   66.49800      63649          NA
## 511   66.72700      63108          NA
## 512   66.97500      62671          NA
## 513   67.24400      62353          NA
## 514   67.53300      62162   5570.4320
## 515   67.83700      62038   5826.2412
## 516   68.15400      61948   6306.1351
## 517   68.48200      61861   6830.3986
## 518   68.81800      61789   7099.2353
## 519   69.15600      61780   7094.3045
## 520   69.49100      61779   7474.9651
## 521   69.82000      61784   8234.1286
## 522   70.13700      61785   8863.3849
## 523   70.44000      61754   9887.0879
## 524   70.72800      61713  10549.2467
## 525   71.00400      61758  11091.1203
## 526   71.26700      62007  11626.7788
## 527   71.52000      62533  11876.1994
## 528   71.76500      63363  11975.7403
## 529   72.00600      64459  11908.4932
## 530   72.24700      65777  12286.0333
## 531   72.48900      67201  12828.6104
## 532   72.73200      68672  12006.5186
## 533   72.97700      70176  12525.1679
## 534   73.22200      71707  12928.4418
## 535   73.46500      73219  13260.4943
## 536   73.70500      74674  13484.1865
## 537   73.94000      76007  14069.5148
## 538   74.17100      77212  13220.0448
## 539   74.39500      78298  13170.6260
## 540   74.61300      79311  13792.5009
## 541   74.82100      80347  14399.8207
## 542   75.01900      81462  15122.1856
## 543   75.20400      82715  16785.7470
## 544   75.37600      84029  18062.4657
## 545   75.53500      85394  17771.1932
## 546   75.68300      86743  15401.9686
## 547   75.82300      88030  13986.8409
## 548   75.95600      89250  13525.4449
## 549   76.08700      90407  13802.7075
## 550   76.21800      91510  13554.4014
## 551   76.34900      92562  13908.9916
## 552   76.48300      93571  14285.3298
## 553   76.61700      94520  14919.2060
## 554   76.75200      95425  15242.3731
## 555   76.88500      96282  16146.5927
## 556   77.01600      97115  16786.4474
## 557   77.14600      97928  13285.6447
## 558         NA      98728  13872.5822
## 559   46.54691   92197715          NA
## 560   47.14162   94724540          NA
## 561   47.73178   97334438          NA
## 562   48.32043  100034191          NA
## 563   48.91002  102832792          NA
## 564   49.49648  105736428          NA
## 565   50.07295  108758634          NA
## 566   50.63441  111899335          NA
## 567   51.18210  115136161          NA
## 568   51.72202  118437193          NA
## 569   52.26421  121785630          NA
## 570   52.82293  125164720          NA
## 571   53.40689  128598743          NA
## 572   54.01586  132161302          NA
## 573   54.64287  135952270          NA
## 574   55.27799  140040580   4057.2454
## 575   55.90961  144453278   4552.6175
## 576   56.52808  149161836   4765.6558
## 577   57.13390  154111160   4585.6763
## 578   57.73486  159218539   4926.0734
## 579   58.34502  164420771   5201.4690
## 580   58.97736  169698978   5210.5421
## 581   59.63600  175061794   4631.5414
## 582   60.31628  180505967   4212.7227
## 583   61.00376  186035280   4140.6767
## 584   61.67682  191650328   3938.2793
## 585   62.31412  197338140   3996.6258
## 586   62.90135  203084958   3880.4220
## 587   63.42969  208889669   3992.0174
## 588   63.89898  214753965   3966.7263
## 589   64.35158  222653371   4287.5620
## 590   64.73634  228731671   4274.2966
## 591   65.04385  232956364   4414.6321
## 592   65.41491  239243294   4434.6500
## 593   65.78565  245449429   4464.8854
## 594   66.19610  253107302   4461.2518
## 595   66.55410  259000937   4565.3656
## 596   66.89714  264822167   4676.4500
## 597   67.21809  270575777   4812.0308
## 598   67.51769  276393809   4796.7989
## 599   67.80059  282344141   5002.8173
## 600   68.07252  288432153   4981.0741
## 601   68.34025  294665202   4908.9391
## 602   68.61051  301113869   5037.7877
## 603   68.88619  307862846   5363.6378
## 604   69.16468  314965776   5532.0994
## 605   69.43946  322452764   5732.2290
## 606   69.70156  330290752   5852.0977
## 607   69.94217  338395936   6029.5848
## 608   70.15756  346629179   5910.7934
## 609   70.34992  354890097   6047.6162
## 610   70.52876  363156846   6101.6453
## 611   70.70380  371437642   6268.3527
## 612   70.88222  379696477   6289.2469
## 613   71.06427  387899835   6300.8314
## 614   71.24957  396028301   6359.9006
## 615   71.43655  404042892   6431.6762
## 616   71.62267  411942825   6386.7222
## 617   71.80708  419851989   6414.5397
## 618   71.98971  427870273   6394.1795
## 619   72.17076  436080728   5956.8778
## 620         NA  444517783   6050.1186
## 621   65.05500   20481781   7362.5341
## 622   65.17600   20817270   7637.0667
## 623   65.26900   21153042   7451.8034
## 624   65.34800   21488916   6945.9571
## 625   65.42600   21824427   7532.0045
## 626   65.51800   22159644   8202.1125
## 627   65.64000   22494031   8026.8762
## 628   65.79600   22828872   8161.6021
## 629   65.98900   23168268   8429.8689
## 630   66.21900   23517613   9108.4969
## 631   66.48300   23880564   9243.2566
## 632   66.77400   24259564   9613.6769
## 633   67.07800   24653172   9614.2379
## 634   67.38300   25056475   9725.4670
## 635   67.68600   25462305  10100.0685
## 636   67.98500   25865775   9939.6966
## 637   68.28300   26264681   9591.1720
## 638   68.58500   26661397  10103.6274
## 639   68.89100   27061041   9505.8562
## 640   69.19700   27471046  10321.2391
## 641   69.49600   27896532  10318.1830
## 642   69.77700   28338514   9630.1152
## 643   70.03300   28794550   9407.8746
## 644   70.26200   29262049   9660.1921
## 645   70.46600   29737097   9655.1836
## 646   70.65000   30216284   9009.0017
## 647   70.82500   30698964   9412.9948
## 648   71.00100   31184411   9517.1086
## 649   71.18600   31668939   9269.3558
## 650   71.38400   32148137   8477.6729
## 651   71.59400   32618648   8149.2406
## 652   71.81300   33079002   8769.7504
## 653   72.03200   33529320   9338.6995
## 654   72.24600   33970103   9974.0044
## 655   72.45300   34402669  10423.3789
## 656   72.65100   34828168  10003.0917
## 657   72.84300   35246376  10430.6825
## 658   73.02900   35657438  11146.7210
## 659   73.21300   36063451  11445.5649
## 660   73.39600   36467218  10935.6446
## 661   73.57600   36870796  10730.6082
## 662   73.75500   37275644  10146.1068
## 663   73.93200   37681743   8943.3080
## 664   74.10700   38087866   9629.8441
## 665   74.28000   38491970  10389.1513
## 666   74.45100   38892924  11192.1796
## 667   74.62000   39289876  11970.6554
## 668   74.78700   39684303  12919.2354
## 669   74.95200   40080159  13310.6237
## 670   75.11600   40482786  12398.2836
## 671   75.27800   40788453  13551.3392
## 672   75.43900   41261490  14200.2699
## 673   75.59800   41733271  13895.6337
## 674   75.75600   42202935  14071.5087
## 675   75.91300   42669500  13567.9484
## 676   76.06800   43131966  13789.0604
## 677   76.22100   43590368  13360.2118
## 678   76.37200   44044811  13595.0374
## 679   76.52000   44494502  13105.3972
## 680   76.66700   44938712  12712.9707
## 681   76.81300   45376763  11344.4057
## 682         NA   45808747  12390.8087
## 683   65.97200    1874119          NA
## 684   66.40300    1941498          NA
## 685   66.83800    2009524          NA
## 686   67.27700    2077584          NA
## 687   67.71600    2145004          NA
## 688   68.15300    2211316          NA
## 689   68.58800    2276038          NA
## 690   69.01600    2339133          NA
## 691   69.42700    2401142          NA
## 692   69.80900    2462938          NA
## 693   70.14400    2525067          NA
## 694   70.41200    2587716          NA
## 695   70.60500    2650484          NA
## 696   70.72300    2712780          NA
## 697   70.77500    2773750          NA
## 698   70.78300    2832752          NA
## 699   70.78300    2889583          NA
## 700   70.79800    2944375          NA
## 701   70.83800    2997419          NA
## 702   70.89700    3049107          NA
## 703   70.93700    3099759          NA
## 704   70.91000    3148096          NA
## 705   70.77600    3193696          NA
## 706   70.51900    3238592          NA
## 707   70.15000    3285593          NA
## 708   69.69800    3335935          NA
## 709   69.20500    3392264          NA
## 710   68.73200    3451947          NA
## 711   68.33200    3504667          NA
## 712   68.03800    3536473          NA
## 713   67.87900    3538164   1650.5106
## 714   67.87000    3505249   1471.0862
## 715   67.99000    3442820    871.6972
## 716   68.21800    3363111    813.8298
## 717   68.53800    3283664    878.5302
## 718   68.93800    3217349    958.5062
## 719   69.40400    3168213   1030.4639
## 720   69.91200    3133081   1076.6250
## 721   70.43400    3108691   1164.2822
## 722   70.94400    3089020   1210.3624
## 723   71.40900    3069597   1289.8843
## 724   71.80000    3050686   1422.4767
## 725   72.11200    3033976   1619.1122
## 726   72.34800    3017938   1855.5968
## 727   72.51300    3000715   2062.2032
## 728   72.62600    2981262   2364.1759
## 729   72.71600    2958301   2697.0190
## 730   72.81500    2932615   3093.3693
## 731   72.94600    2907615   3335.2442
## 732   73.11800    2888094   2884.3395
## 733   73.33100    2877314   2958.8390
## 734   73.57200    2876536   3098.7423
## 735   73.82000    2884239   3312.9800
## 736   74.05600    2897593   3406.5361
## 737   74.27300    2912403   3511.2251
## 738   74.46700    2925559   3607.2893
## 739   74.64000    2936147   3601.4697
## 740   74.79700    2944789   3860.2181
## 741   74.94500    2951741   4051.3850
## 742   75.08700    2957728   4350.4662
## 743   75.22400    2963234   4021.0463
## 744         NA    2968128   4243.2379
## 745   65.66200      54208          NA
## 746   66.07400      55434          NA
## 747   66.44400      56234          NA
## 748   66.78700      56699          NA
## 749   67.11300      57029          NA
## 750   67.43500      57357          NA
## 751   67.76200      57702          NA
## 752   68.09500      58044          NA
## 753   68.43600      58377          NA
## 754   68.78400      58734          NA
## 755   69.14000      59070          NA
## 756   69.49800      59442          NA
## 757   69.85100      59849          NA
## 758   70.19100      60236          NA
## 759   70.51900      60527          NA
## 760   70.83300      60653          NA
## 761   71.14000      60586          NA
## 762   71.44100      60366          NA
## 763   71.73600      60102          NA
## 764   72.02300      59972          NA
## 765   72.29300      60097          NA
## 766   72.53800      60561          NA
## 767   72.75100      61341          NA
## 768   72.92900      62213          NA
## 769   73.07100      62826          NA
## 770   73.18100      63024          NA
## 771   73.26200      62645  15685.4677
## 772   73.32500      61838  18445.0562
## 773   73.37800      61072  22159.3018
## 774   73.42500      61033  24863.0671
## 775   73.46800      62152  25382.6194
## 776   73.50900      64623  26355.9613
## 777   73.54400      68240  26427.1629
## 778   73.57300      72495  26693.9204
## 779   73.59800      76705  27298.5555
## 780   73.62200      80324  26732.6236
## 781   73.64600      83211  26111.1313
## 782   73.67100      85450  27218.7610
## 783   73.70000      87280  27178.8908
## 784   73.73800      89009  26980.8907
## 785   73.78700      90866  28442.5161
## 786   73.85300      92892  28989.5852
## 787   73.93700      94992  28077.1931
## 788   74.03800      97016  27799.5774
## 789   74.15600      98744  29301.7636
## 790   74.28700     100028  28814.2916
## 791   74.42900     100830  28910.6607
## 792   74.57600     101226  29689.3416
## 793   74.72500     101362  30193.1098
## 794   74.87200     101452  26641.8166
## 795   75.01700     101665  25859.5109
## 796   75.15800     102050  26629.2995
## 797   75.29900     102565  26221.2595
## 798   75.44100     103165  27744.9321
## 799   75.58300     103776  27575.9303
## 800   75.72500     104339  28399.0501
## 801   75.86800     104865  28854.7133
## 802   76.01000     105361  30293.3515
## 803   76.15200     105846  30536.6672
## 804   76.29300     106310  29769.2939
## 805   76.43400     106766  23026.3329
## 806         NA     107195          NA
## 807   70.81707   10276477  19953.2063
## 808   70.97317   10483000  20045.8437
## 809   70.94244   10742000  19815.7496
## 810   70.91171   10950000  20647.4859
## 811   70.88098   11167000  21659.1521
## 812   70.85024   11388000  22509.0974
## 813   70.81951   11651000  22525.0520
## 814   70.86927   11799000  23644.6005
## 815   70.91902   12009000  24414.7801
## 816   70.96878   12263000  25593.1264
## 817   71.01854   12507000  26894.5065
## 818   71.06829   12937000  27040.5103
## 819   71.45756   13177000  27585.7828
## 820   71.84683   13380000  27878.8169
## 821   72.23610   13723000  28297.9448
## 822   72.62537   13893000  28325.0161
## 823   73.01463   14033000  28769.1030
## 824   73.34439   14192000  29468.8425
## 825   73.67415   14358000  29388.5744
## 826   74.00390   14514000  30250.3701
## 827   74.33366   14692000  30790.9685
## 828   74.66341   14927000  31318.0837
## 829   74.90488   15178000  31823.6227
## 830   75.14634   15369000  30729.8076
## 831   75.38780   15544000  31780.2585
## 832   75.62927   15758000  32995.1381
## 833   75.87073   16018400  33767.1612
## 834   76.15171   16263900  34104.8306
## 835   76.43268   16532200  35478.4268
## 836   76.71366   16814400  36231.0162
## 837   76.99463   17065100  36974.4509
## 838   77.27561   17284000  36361.9423
## 839   77.37805   17495000  36072.0398
## 840   77.87805   17667000  37161.6791
## 841   77.87805   17855000  38234.0299
## 842   77.82927   18072000  39223.1608
## 843   78.07805   18311000  40203.3023
## 844   78.48049   18517000  41309.8260
## 845   78.63171   18711000  42767.7940
## 846   78.93171   18926000  44369.2728
## 847   79.23415   19153000  45558.7531
## 848   79.63415   19413000  45864.7680
## 849   79.93659   19651400  47127.2781
## 850   80.23902   19895400  47997.1371
## 851   80.49024   20127400  49439.1223
## 852   80.84146   20394800  50332.8748
## 853   81.04146   20697900  50948.2250
## 854   81.29268   20827600  52538.9756
## 855   81.39512   21249200  53338.6028
## 856   81.54390   21691700  53225.9510
## 857   81.69512   22031750  53542.8337
## 858   81.89512   22340024  54108.1111
## 859   82.04634   22733465  55254.6062
## 860   82.14878   23128129  55723.9482
## 861   82.30000   23475686  56305.9791
## 862   82.40000   23815995  56707.0221
## 863   82.44878   24190907  57358.7828
## 864   82.50000   24601860  57695.5713
## 865   82.74878   24982688  58447.2527
## 866   82.90000   25365745  58781.0467
## 867   83.20000   25693267  58029.5155
## 868         NA   25739256  58780.3331
## 869   68.58561    7047539  12051.1512
## 870   69.57732    7086299  12648.9747
## 871   69.30951    7129864  12904.6699
## 872   69.44366    7175811  13352.6511
## 873   69.92195    7223801  14076.2762
## 874   69.72220    7270889  14471.8213
## 875   70.04585    7322066  15181.5888
## 876   69.91780    7376998  15521.8096
## 877   70.05756    7415403  16132.0095
## 878   69.83317    7441055  17085.3300
## 879   69.91463    7467086  18101.9919
## 880   70.11463    7500482  18943.1811
## 881   70.46341    7544201  20002.5561
## 882   71.01463    7586115  20864.8475
## 883   71.01220    7599038  21650.4868
## 884   71.11463    7578903  21629.0463
## 885   71.56585    7565525  22659.3178
## 886   71.91463    7568430  23801.2675
## 887   72.01220    7562305  23770.3662
## 888   72.31220    7549425  25086.4002
## 889   72.46341    7549433  25520.7406
## 890   72.81220    7568710  25419.0096
## 891   72.96098    7574140  25911.6609
## 892   73.01220    7561910  26725.1907
## 893   73.61220    7561434  26740.5772
## 894   73.81463    7564985  27395.8726
## 895   74.31707    7569794  28008.5546
## 896   74.76829    7574586  28370.7179
## 897   75.21707    7585317  29264.3236
## 898   75.26585    7619567  30265.1932
## 899   75.56829    7677850  31340.6813
## 900   75.61707    7754891  32097.2411
## 901   75.81707    7840709  32410.5398
## 902   76.06829    7905633  32313.7119
## 903   76.41951    7936118  32962.8174
## 904   76.66829    7948278  33790.4850
## 905   76.87073    7959017  34537.7396
## 906   77.31951    7968041  35220.8877
## 907   77.67073    7976789  36442.2882
## 908   77.87561    7992324  37664.9433
## 909   78.12683    8011566  38842.8905
## 910   78.57561    8042293  39184.8086
## 911   78.67805    8081957  39636.4826
## 912   78.63171    8121423  39815.2220
## 913   79.18049    8171966  40651.2266
## 914   79.33171    8227829  41281.2708
## 915   79.88049    8268641  42496.3511
## 916   80.18049    8295487  43937.7129
## 917   80.43171    8321496  44440.0559
## 918   80.33171    8343323  42655.1921
## 919   80.58049    8363404  43334.5090
## 920   80.98293    8391643  44451.0002
## 921   80.93659    8429991  44549.8817
## 922   81.13659    8479823  44299.3782
## 923   81.49024    8546356  44245.1687
## 924   81.19024    8642699  44195.8176
## 925   81.64146    8736668  44590.2516
## 926   81.64390    8797566  45281.7234
## 927   81.69268    8840521  46188.9665
## 928   81.89512    8879920  46669.7512
## 929   81.19268    8916864  43346.4318
## 930         NA    8956279  45090.7589
## 931   61.03400    3895398          NA
## 932   61.25600    4030325          NA
## 933   61.46900    4171428          NA
## 934   61.67900    4315127          NA
## 935   61.88900    4456691          NA
## 936   62.10400    4592601          NA
## 937   62.32200    4721528          NA
## 938   62.53900    4843872          NA
## 939   62.75000    4960237          NA
## 940   62.95300    5071930          NA
## 941   63.14100    5180032          NA
## 942   63.31000    5284518          NA
## 943   63.45700    5385266          NA
## 944   63.58200    5483088          NA
## 945   63.68700    5579071          NA
## 946   63.77600    5674129          NA
## 947   63.85200    5768730          NA
## 948   63.92100    5863138          NA
## 949   63.99200    5957927          NA
## 950   64.06900    6053635          NA
## 951   64.16100    6150735          NA
## 952   64.28000    6249312          NA
## 953   64.42500    6349555          NA
## 954   64.58700    6452067          NA
## 955   64.75900    6557581          NA
## 956   64.91300    6666447          NA
## 957   65.01600    6778631          NA
## 958   65.05300    6893486          NA
## 959   65.02100    7010027          NA
## 960   64.93500    7126877          NA
## 961   64.82700    7175200   2820.7410
## 962   64.74500    7271300   2763.9769
## 963   64.73100    7382050   2107.2227
## 964   64.81000    7494800   1596.0766
## 965   64.99100    7596550   1264.4828
## 966   65.25600    7684850   1102.4592
## 967   65.57300    7763000   1105.5484
## 968   65.89900    7838250   1158.4410
## 969   66.20700    7913000   1262.2475
## 970   66.49100    7982750   1343.8087
## 971   66.76300    8048600   1480.7567
## 972   67.05400    8111200   1614.7921
## 973   67.39100    8171950   1754.0736
## 974   67.79100    8234100   1918.5436
## 975   68.24900    8306500   2077.8123
## 976   68.74700    8391850   2631.7590
## 977   69.25900    8484550   3501.0418
## 978   69.75200    8581300   4326.9616
## 979   70.20100    8763400   4692.9122
## 980   70.59700    8947243   5023.7908
## 981   70.93800    9054332   5215.0209
## 982   71.23400    9173082   5152.6575
## 983   71.50600    9295784   5194.7384
## 984   71.76800    9416801   5425.9053
## 985   72.02200    9535079   5505.9882
## 986   72.26600    9649341   5500.3104
## 987   72.49300    9757812   5270.5530
## 988   72.69300    9854033   5229.5261
## 989   72.86400    9939771   5262.1838
## 990   73.00500   10024283   5348.2653
## 991   73.12300   10093121   5083.3816
## 992         NA   10145212   5340.4904
## 993   64.74000     109532  20106.9500
## 994   64.88500     115119  21171.8460
## 995   65.01100     121092  22231.2435
## 996   65.12100     127340  23365.2899
## 997   65.21900     133705  24589.9026
## 998   65.31000     140060  25921.4976
## 999   65.40200     146381  27052.1940
## 1000  65.49900     152621  28436.4900
## 1001  65.60700     158648  29660.0685
## 1002  65.73000     164265  31218.7235
## 1003  65.87000     169376  28566.1574
## 1004  66.03100     173894  28276.5296
## 1005  66.20900     177863  26678.6834
## 1006  66.39700     181519  28119.6085
## 1007  66.59300     185105  22954.8992
## 1008  66.78500     188895  19164.4666
## 1009  66.96200     192903  19739.3474
## 1010  67.11800     197100  21087.6653
## 1011  67.25300     201482  23554.1310
## 1012  67.37200     205991  29060.6614
## 1013  67.48800     210589  30272.5096
## 1014  67.61500     215321  26875.5435
## 1015  67.76900     220182  28042.8252
## 1016  67.96200     225095  28417.4513
## 1017  68.19600     229913  31764.6310
## 1018  68.47400     234579  32636.2613
## 1019  68.79300     239020  32605.4554
## 1020  69.13900     243265  32992.6219
## 1021  69.49600     247451  33183.6451
## 1022  69.85400     251738  34812.8973
## 1023  70.19900     256227  33657.0237
## 1024  70.51800     261007  31658.9511
## 1025  70.80700     266028  29873.1414
## 1026  71.06100     271065  29408.2737
## 1027  71.27600     275849  29808.2328
## 1028  71.45100     280179  30632.6214
## 1029  71.58900     283980  31499.0727
## 1030  71.69800     287363  33268.5450
## 1031  71.78600     290600  31416.3742
## 1032  71.85800     294063  34833.2935
## 1033  71.91400     298045  35793.9117
## 1034  71.95400     302618  36178.4613
## 1035  71.97700     307657  36548.3894
## 1036  71.98600     313123  35456.2898
## 1037  71.98800     318893  35122.0730
## 1038  71.98700     324848  35648.8530
## 1039  71.98800     331032  35863.3661
## 1040  71.99800     337387  35696.9205
## 1041  72.02200     343680  34229.0539
## 1042  72.06700     349600  32244.2966
## 1043  72.14400     354936  32248.1300
## 1044  72.26300     359583  32026.6263
## 1045  72.42400     363581  32652.2081
## 1046  72.62000     367162  31407.9349
## 1047  72.84700     370625  31689.2478
## 1048  73.08800     374200  31699.3586
## 1049  73.32900     377923  31117.8857
## 1050  73.55400     381749  31745.6450
## 1051  73.75200     385635  32001.1557
## 1052  73.91800     389486  32285.5424
## 1053  74.05300     393248  24359.0036
## 1054        NA     396914  27445.1408
## 1055  51.86900     162429          NA
## 1056  53.23500     167899          NA
## 1057  54.59000     173140          NA
## 1058  55.91100     178142          NA
## 1059  57.18200     182888          NA
## 1060  58.38800     187432          NA
## 1061  59.52400     191785          NA
## 1062  60.59600     196060          NA
## 1063  61.60900     200652          NA
## 1064  62.56000     206037          NA
## 1065  63.44900     212607          NA
## 1066  64.27500     220311          NA
## 1067  65.04200     229151          NA
## 1068  65.75700     239527          NA
## 1069  66.42100     251908          NA
## 1070  67.04000     266540          NA
## 1071  67.61600     283746          NA
## 1072  68.15200     303169          NA
## 1073  68.65100     323468          NA
## 1074  69.11700     342804          NA
## 1075  69.55000     359897  21450.5528
## 1076  69.95100     374120  19537.9587
## 1077  70.31700     385953  17507.8734
## 1078  70.65100     396451  18131.0725
## 1079  70.95700     407233  18534.2249
## 1080  71.23700     419428  17139.0701
## 1081  71.49600     433478  16779.7366
## 1082  71.73600     448981  17885.0193
## 1083  71.96200     465198  18469.8463
## 1084  72.17800     481081  17925.0720
## 1085  72.39000     495927  18160.1694
## 1086  72.59800     509762  19651.3379
## 1087  72.80300     523082  20432.1239
## 1088  73.00600     536212  22497.0364
## 1089  73.20900     549590  21894.5445
## 1090  73.41300     563698  22185.4956
## 1091  73.61900     578661  22500.0710
## 1092  73.82600     594927  22561.7924
## 1093  74.03300     613697  22919.3940
## 1094  74.23900     636540  23047.0707
## 1095  74.44000     664610  23243.5909
## 1096  74.63500     697550  22697.6169
## 1097  74.82200     735140  22258.1949
## 1098  74.99900     778708  22335.9324
## 1099  75.16700     829846  22422.6899
## 1100  75.32600     889157  22343.5374
## 1101  75.47800     958423  22069.2804
## 1102  75.62500    1035924  22111.6801
## 1103  75.77000    1114645  21833.4120
## 1104  75.91300    1185075  21057.4208
## 1105  76.05700    1240864  20982.3405
## 1106  76.20000    1278153  20774.2449
## 1107  76.34200    1299942  21187.5419
## 1108  76.48400    1315029  22078.9905
## 1109  76.62400    1336073  22676.6259
## 1110  76.76200    1371853  22634.0856
## 1111  76.89900    1425793  22552.6846
## 1112  77.03200    1494077  22445.4526
## 1113  77.16300    1569440  21818.7423
## 1114  77.29200    1641164  21317.3365
## 1115  77.41900    1701583  19545.5786
## 1116        NA    1748295  19446.6843
## 1117  45.37900   48013505    463.3574
## 1118  45.97000   49362834    477.9952
## 1119  46.55700   50752150    490.2620
## 1120  47.12600   52202008    474.4725
## 1121  47.64900   53741721    511.3578
## 1122  48.05000   55385114    504.1547
## 1123  48.23600   57157651    501.0596
## 1124  48.17600   59034250    476.0313
## 1125  47.88800   60918452    505.0833
## 1126  47.43200   62679765    496.8835
## 1127  46.94200   64232486    512.1212
## 1128  46.58900   65531635    474.4632
## 1129  46.50700   66625706    401.4605
## 1130  46.77300   67637541    408.6063
## 1131  47.39600   68742222    440.6036
## 1132  48.31300   70066310    414.6048
## 1133  49.40200   71652386    428.3799
## 1134  50.49800   73463593    428.9870
## 1135  51.47300   75450033    447.2395
## 1136  52.27700   77529040    456.1454
## 1137  52.90000   79639498    447.6949
## 1138  53.37600   81767516    467.5867
## 1139  53.79400   83932132    465.2501
## 1140  54.22500   86142490    470.9053
## 1141  54.69300   88416529    480.8311
## 1142  55.21000   90764180    484.0480
## 1143  55.77200   93187593    491.1358
## 1144  56.35900   95671159    496.4329
## 1145  56.95800   98186350    495.4038
## 1146  57.57100  100695496    496.7616
## 1147  58.21000  103171957    512.0966
## 1148  58.89100  105599125    517.7637
## 1149  59.61800  107983708    533.8880
## 1150  60.38800  110350641    547.0514
## 1151  61.19000  112737684    556.2989
## 1152  62.00200  115169933    572.4385
## 1153  62.79800  117649927    585.7169
## 1154  63.55300  120160571    599.2275
## 1155  64.25000  122682818    617.2923
## 1156  64.88100  125189655    633.1827
## 1157  65.44700  127657862    653.8086
## 1158  65.95600  130088709    674.1670
## 1159  66.43000  132478077    687.3833
## 1160  66.88600  134791598    707.6051
## 1161  67.33100  136986429    732.7488
## 1162  67.77300  139035505    769.1360
## 1163  68.21300  140921154    809.4736
## 1164  68.64800  142660381    856.0459
## 1165  69.07200  144304164    897.1890
## 1166  69.48500  145924795    931.9865
## 1167  69.88100  147575433    972.9097
## 1168  70.25600  149273134   1024.0220
## 1169  70.60600  151005733   1078.2875
## 1170  70.93000  152761413   1129.9935
## 1171  71.23100  154517385   1184.8633
## 1172  71.51400  156256287   1248.4533
## 1173  71.78500  157977151   1322.6948
## 1174  72.05200  159685421   1394.7814
## 1175  72.32000  161376713   1481.1834
## 1176  72.59100  163046173   1581.5675
## 1177  72.86800  164689383   1619.7759
## 1178        NA  166303494   1715.3548
## 1179  64.47200     230985          NA
## 1180  65.19800     231718          NA
## 1181  65.83100     232623          NA
## 1182  66.38100     233632          NA
## 1183  66.86000     234588          NA
## 1184  67.27500     235415          NA
## 1185  67.62800     236084          NA
## 1186  67.92800     236661          NA
## 1187  68.18700     237241          NA
## 1188  68.42100     237963          NA
## 1189  68.65000     238895          NA
## 1190  68.89000     240093          NA
## 1191  69.14900     241523          NA
## 1192  69.43600     243076          NA
## 1193  69.75600     244643  11666.6782
## 1194  70.11300     246158  11374.5720
## 1195  70.50900     247584  11802.1571
## 1196  70.93100     248931  12165.8269
## 1197  71.36400     250200  12694.4332
## 1198  71.80000     251347  13633.9035
## 1199  72.22200     252388  14171.4293
## 1200  72.61800     253296  13852.3716
## 1201  72.98000     254078  13132.9301
## 1202  73.30300     254791  13161.8243
## 1203  73.58500     255493  13598.2334
## 1204  73.82500     256260  13706.4274
## 1205  74.02900     257117  14358.0093
## 1206  74.20600     258012  14678.9247
## 1207  74.37200     258970  15137.2723
## 1208  74.53400     259961  15622.4318
## 1209  74.70400     260933  15049.4351
## 1210  74.89200     261912  14408.4618
## 1211  75.10100     262890  13537.7062
## 1212  75.33200     263869  13594.4438
## 1213  75.58300     264893  13814.1896
## 1214  75.85200     265955  14036.1339
## 1215  76.13100     267047  14534.5992
## 1216  76.41000     268183  15159.0684
## 1217  76.68000     269334  15657.0712
## 1218  76.93300     270455  15644.3548
## 1219  77.16200     271511  16276.5366
## 1220  77.36200     272494  15834.1936
## 1221  77.53400     273423  15904.6494
## 1222  77.68200     274331  16196.8644
## 1223  77.80800     275283  16368.6955
## 1224  77.91500     276320  16952.2925
## 1225  78.00900     277475  17913.6595
## 1226  78.09700     278701  18205.4033
## 1227  78.18400     279946  18240.4529
## 1228  78.27200     281107  17253.6389
## 1229  78.36400     282131  16784.4206
## 1230  78.45600     282987  16618.5592
## 1231  78.54700     283698  16505.1853
## 1232  78.63300     284294  16232.1870
## 1233  78.71700     284825  16187.7870
## 1234  78.80100     285327  16558.8648
## 1235  78.88800     285798  16950.3243
## 1236  78.98100     286229  17002.0271
## 1237  79.08100     286640  16803.2646
## 1238  79.19000     287021  16678.5495
## 1239  79.30800     287371  14329.1899
## 1240        NA     287708  14512.7794
## 1241  67.70810    8198000          NA
## 1242  68.21266    8271216          NA
## 1243  68.63583    8351928          NA
## 1244  68.99207    8437232          NA
## 1245  69.28993    8524224          NA
## 1246  69.53741    8610000          NA
## 1247  69.73461    8696496          NA
## 1248  69.88166    8785648          NA
## 1249  69.98263    8874552          NA
## 1250  70.04515    8960304          NA
## 1251  70.07924    9040000          NA
## 1252  70.09300    9115576          NA
## 1253  70.09241    9188968          NA
## 1254  70.08244    9257272          NA
## 1255  70.06807    9317584          NA
## 1256  70.04827    9367000          NA
## 1257  70.01590    9411000          NA
## 1258  69.96741    9463000          NA
## 1259  69.90632    9525000          NA
## 1260  69.84163    9584000          NA
## 1261  69.80202    9643000          NA
## 1262  69.81917    9710000          NA
## 1263  69.90822    9776000          NA
## 1264  70.06466    9843000          NA
## 1265  70.27193    9910000          NA
## 1266  70.99268    9975000          NA
## 1267  71.54951   10043000          NA
## 1268  70.99024   10111000          NA
## 1269  71.34146   10140000          NA
## 1270  71.48293   10170000          NA
## 1271  70.83659   10189348   2890.5242
## 1272  70.37805   10194050   2854.5208
## 1273  70.02195   10216470   2574.8239
## 1274  68.97073   10239050   2373.8905
## 1275  68.76829   10226955   2098.6243
## 1276  68.46098   10193831   1886.4774
## 1277  68.51220   10159569   1945.8389
## 1278  68.46098   10117433   2176.6924
## 1279  68.40732   10071963   2370.1865
## 1280  67.90732   10026738   2461.8269
## 1281  68.91220    9979610   2616.9130
## 1282  68.50732    9928549   2754.6645
## 1283  68.05610    9865548   2912.1234
## 1284  68.55366    9796749   3139.1210
## 1285  68.95610    9730146   3522.4899
## 1286  68.85122    9663915   3880.0144
## 1287  69.40488    9604924   4294.2287
## 1288  70.20732    9560953   4684.9803
## 1289  70.45610    9527985   5180.7123
## 1290  70.40732    9504583   5203.8549
## 1291  70.40488    9483836   5621.9372
## 1292  70.55366    9461643   5938.2207
## 1293  71.96585    9446836   6047.8711
## 1294  72.47073    9443211   6110.9047
## 1295  72.97073    9448515   6212.9128
## 1296  73.62439    9461076   5967.0522
## 1297  73.82683    9469379   5811.1979
## 1298  74.12927    9458989   5964.8929
## 1299  74.17561    9438785   6165.9093
## 1300  74.22683    9419758   6264.8610
## 1301  74.22683    9379952   6234.8243
## 1302        NA    9340314   6418.2376
## 1303  69.70195    9153489  11734.3062
## 1304  70.52098    9183948  12277.6347
## 1305  70.21951    9220578  12866.2288
## 1306  70.05146    9289770  13326.1133
## 1307  70.75512    9378113  14118.9023
## 1308  70.62537    9463667  14489.4451
## 1309  70.70634    9527807  14846.0973
## 1310  71.01293    9580991  15334.7679
## 1311  70.69317    9618756  15915.1957
## 1312  70.76488    9646032  16922.3544
## 1313  70.97195    9655549  17849.4947
## 1314  71.06049    9673162  18527.1487
## 1315  71.40512    9711115  19432.0310
## 1316  71.63537    9741720  20607.1809
## 1317  71.98585    9772419  21480.2613
## 1318  71.97122    9800700  20997.2068
## 1319  72.11976    9818227  22144.5236
## 1320  72.77390    9830358  22255.6844
## 1321  72.69805    9839534  22866.8232
## 1322  73.19366    9848382  23381.1272
## 1323  73.20707    9859242  24393.2982
## 1324  73.62171    9858982  24325.8133
## 1325  73.88805    9856303  24477.1999
## 1326  73.86902    9855520  24555.4810
## 1327  74.40488    9855372  25161.4910
## 1328  74.52024    9858308  25569.4893
## 1329  74.73171    9861823  26026.2805
## 1330  75.36585    9870234  26603.9281
## 1331  75.56585    9901664  27772.0520
## 1332  75.63268    9937697  28631.3191
## 1333  76.05195    9967379  29441.6621
## 1334  76.19220   10004486  29870.1478
## 1335  76.35122   10045158  30204.5638
## 1336  76.34537   10084475  29797.4063
## 1337  76.69171   10115603  30664.3079
## 1338  76.84073   10136811  31329.8921
## 1339  77.18732   10156637  31681.9364
## 1340  77.37073   10181245  32804.3605
## 1341  77.47317   10203008  33376.5748
## 1342  77.61951   10226419  34479.9064
## 1343  77.72195   10251250  35674.7913
## 1344  77.97317   10286570  35943.2380
## 1345  78.07561   10332785  36393.2418
## 1346  78.12927   10376133  36617.3804
## 1347  78.87805   10421137  37761.2813
## 1348  78.98049   10478617  38426.0519
## 1349  79.38049   10547958  39147.7636
## 1350  79.78293   10625700  40290.2278
## 1351  79.68049   10709973  40151.8499
## 1352  80.03415   10796493  39025.2208
## 1353  80.18293   10895586  39777.9253
## 1354  80.58537   11038264  39929.0951
## 1355  80.38537   11106932  39975.5736
## 1356  80.58780   11159407  39970.3175
## 1357  81.28780   11209057  40421.4208
## 1358  80.99268   11274196  41008.2967
## 1359  81.43902   11331422  41318.0196
## 1360  81.49268   11375158  41825.7628
## 1361  81.59512   11427054  42403.5336
## 1362  81.99512   11488980  43065.5151
## 1363  80.79512   11544241  40424.6388
## 1364        NA   11587882  42787.2952
## 1365  59.98100      92068   1194.3015
## 1366  60.53100      94700   1217.9128
## 1367  61.09200      97392   1242.1898
## 1368  61.66300     100165   1267.6645
## 1369  62.24100     103069   1293.5436
## 1370  62.82300     106120   1318.2986
## 1371  63.40200     109348   1340.4192
## 1372  63.97100     112707   1364.3645
## 1373  64.52500     116065   1422.4983
## 1374  65.05800     119269   1454.9716
## 1375  65.56600     122184   1488.5414
## 1376  66.04700     124795   1515.1025
## 1377  66.50400     127152   1638.9651
## 1378  66.93900     129294   1698.0751
## 1379  67.35400     131305   1898.8004
## 1380  67.75100     133264   1938.1055
## 1381  68.13500     135143   1910.5083
## 1382  68.50900     136990   2007.1939
## 1383  68.87400     138975   2135.2400
## 1384  69.22900     141302   2257.9395
## 1385  69.57700     144142   2510.8663
## 1386  69.92100     147572   2480.3123
## 1387  70.25700     151486   2413.6250
## 1388  70.57500     155820   2296.2025
## 1389  70.86500     160341   2275.4643
## 1390  71.11000     164918   2234.7129
## 1391  71.29400     169569   2272.0797
## 1392  71.40500     174333   2447.2398
## 1393  71.43700     179023   2616.3813
## 1394  71.38600     183471   2885.0697
## 1395  71.24200     187554   3145.2250
## 1396  70.99600     191136   3440.0941
## 1397  70.66200     194324   3791.6697
## 1398  70.26800     197625   3962.3183
## 1399  69.84500     201679   3888.8218
## 1400  69.43900     206962   3813.9772
## 1401  69.10000     213660   3747.2107
## 1402  68.85800     221575   3741.4354
## 1403  68.73400     230248   3735.1801
## 1404  68.73400     238979   3914.6429
## 1405  68.84700     247310   4275.2734
## 1406  69.04000     255068   4352.8694
## 1407  69.27200     262387   4448.1690
## 1408  69.51100     269428   4736.3473
## 1409  69.74900     276516   4829.5450
## 1410  69.99800     283798   4809.0534
## 1411  70.28600     291338   4898.0933
## 1412  70.63600     299031   4827.7500
## 1413  71.05900     306822   4834.7901
## 1414  71.54100     314655   4728.5675
## 1415  72.05700     322465   4767.5293
## 1416  72.57000     330236   4729.9901
## 1417  73.04400     338001   4733.5467
## 1418  73.45200     345707   4667.1792
## 1419  73.78200     353366   4769.9140
## 1420  74.03400     360926   4805.1969
## 1421  74.21900     368399   4699.2724
## 1422  74.36500     375775   4705.0966
## 1423  74.49600     383071   4709.8559
## 1424  74.62300     390351   4712.8401
## 1425  74.75400     397621   3851.6982
## 1426        NA     404915   4151.2104
## 1427  37.27100    2431617    679.0217
## 1428  37.72700    2465865    690.6246
## 1429  38.18800    2502897    657.0928
## 1430  38.65500    2542864    677.3573
## 1431  39.13000    2585961    710.3672
## 1432  39.61500    2632361    734.7887
## 1433  40.10900    2682159    746.9336
## 1434  40.61000    2735308    740.3185
## 1435  41.11700    2791588    753.2653
## 1436  41.63000    2850657    758.8828
## 1437  42.15200    2912338    758.3926
## 1438  42.68400    2976575    730.9189
## 1439  43.22900    3043563    760.7693
## 1440  43.78100    3113681    771.1977
## 1441  44.33700    3187413    778.5152
## 1442  44.88200    3265167    722.7728
## 1443  45.39900    3347169    711.3009
## 1444  45.88300    3433445    727.9854
## 1445  46.33500    3523933    718.1942
## 1446  46.76400    3618519    745.1334
## 1447  47.19000    3717161    774.5521
## 1448  47.64300    3820126    828.6980
## 1449  48.14500    3927717    824.0122
## 1450  48.71000    4039940    766.2911
## 1451  49.33900    4156819    803.8021
## 1452  50.03400    4278502    839.7489
## 1453  50.79000    4404504    833.4363
## 1454  51.58100    4535262    797.2660
## 1455  52.37200    4672844    800.1418
## 1456  53.13200    4820020    753.5700
## 1457  53.81200    4978489    795.0717
## 1458  54.36600    5149496    801.1509
## 1459  54.77600    5331805    796.6429
## 1460  55.04200    5521761    814.1313
## 1461  55.17400    5714215    802.6062
## 1462  55.20300    5905552    823.5493
## 1463  55.17000    6094272    832.5564
## 1464  55.13300    6281644    854.0429
## 1465  55.13900    6470275    861.9871
## 1466  55.21800    6664102    881.6194
## 1467  55.39100    6865946    905.8263
## 1468  55.66800    7076728    925.7161
## 1469  56.02500    7295400    939.6617
## 1470  56.43600    7520556    942.9186
## 1471  56.88700    7750003    955.5342
## 1472  57.35500    7982223    943.6293
## 1473  57.81700    8216893    952.8312
## 1474  58.25500    8454790    981.4557
## 1475  58.65400    8696915   1000.8515
## 1476  59.00900    8944713    995.6942
## 1477  59.31800    9199254    988.6108
## 1478  59.59000    9460829    989.7674
## 1479  59.84200    9729254   1008.7663
## 1480  60.09200   10004594   1051.5519
## 1481  60.34500   10286839   1087.7200
## 1482  60.60800   10575962   1076.7967
## 1483  60.88500   10872072   1082.4513
## 1484  61.17400   11175192   1112.8171
## 1485  61.47000   11485035   1155.3132
## 1486  61.77100   11801151   1201.5614
## 1487  62.07700   12123198   1214.6596
## 1488        NA   12451031   1260.7346
## 1489        NA      44400  37935.8868
## 1490        NA      45500  38751.2332
## 1491        NA      46600  39527.7963
## 1492        NA      47700  39029.4477
## 1493        NA      48900  42301.4324
## 1494  68.89780      50100  43253.5439
## 1495        NA      51000  48593.3905
## 1496        NA      52000  53985.6405
## 1497        NA      53000  54082.1391
## 1498        NA      54000  54904.6943
## 1499  70.29000      55000  57309.1584
## 1500        NA      54600  59713.4403
## 1501        NA      54200  61244.5370
## 1502        NA      53800  62615.3153
## 1503        NA      53400  63637.7154
## 1504        NA      53000  66534.0406
## 1505        NA      53200  72208.7316
## 1506        NA      53400  76180.8013
## 1507        NA      53600  76999.1578
## 1508        NA      53800  78360.6870
## 1509  72.30463      54670  83239.5346
## 1510        NA      55050  84633.1605
## 1511        NA      55449  79583.1340
## 1512        NA      55930  80483.7350
## 1513        NA      56423  80164.5663
## 1514        NA      56898  77902.6542
## 1515        NA      57382  82395.2732
## 1516        NA      57849  84794.9969
## 1517        NA      58347  87481.3788
## 1518        NA      58841  87131.9494
## 1519        NA      59326  86436.2343
## 1520  74.02951      59021  83812.1328
## 1521        NA      58595  84371.0357
## 1522        NA      58910  86444.6782
## 1523        NA      59320  86361.9528
## 1524        NA      59746  89518.2776
## 1525        NA      60129  91261.1515
## 1526        NA      60497  94878.4922
## 1527        NA      60943  97857.3233
## 1528        NA      61285 100602.9275
## 1529  77.88537      61833 109001.5860
## 1530  77.88537      62504 115619.4747
## 1531  78.08780      62912 113172.1206
## 1532  78.33415      63325 116268.8169
## 1533  78.48537      63740 118193.1487
## 1534  78.68537      64154 119396.4494
## 1535  78.88780      64523 125294.9594
## 1536  78.93415      64888 128757.8807
## 1537  79.23659      65273 125610.0334
## 1538  79.38844      65636 117886.7380
## 1539  79.28854      65124 115839.7960
## 1540  81.15268      64564 112471.3475
## 1541  81.67780      64798 106119.7950
## 1542  80.57244      65001 105492.4807
## 1543  80.79732      65138 101374.4698
## 1544  81.01220      65237 102005.6256
## 1545  81.22707      64554 102407.3944
## 1546  81.44195      63873 107237.0318
## 1547  81.65171      63918 106697.7375
## 1548  81.86659      63911 107036.2393
## 1549  82.05610      63893  99728.6431
## 1550        NA      63867 101617.5573
## 1551  34.52600     223284          NA
## 1552  34.88900     228849          NA
## 1553  35.29000     234552          NA
## 1554  35.73400     240529          NA
## 1555  36.22000     246961          NA
## 1556  36.74500     253993          NA
## 1557  37.30300     261664          NA
## 1558  37.88200     269944          NA
## 1559  38.46900     278731          NA
## 1560  39.05700     287886          NA
## 1561  39.63500     297307          NA
## 1562  40.19400     306957          NA
## 1563  40.73500     316822          NA
## 1564  41.26300     326986          NA
## 1565  41.78400     337491          NA
## 1566  42.31100     348395          NA
## 1567  42.86100     359721          NA
## 1568  43.44700     371424          NA
## 1569  44.07700     383324          NA
## 1570  44.75100     395192          NA
## 1571  45.46400     406883    401.7388
## 1572  46.20400     418107    450.0755
## 1573  46.95400     428938    453.8014
## 1574  47.70200     439823    488.7350
## 1575  48.44200     451471    497.8210
## 1576  49.17300     464264    503.6056
## 1577  49.90100     478683    544.0795
## 1578  50.63200     494313    679.9561
## 1579  51.37200     509532    691.0946
## 1580  52.12200     522173    723.9676
## 1581  52.87800     530801    786.1482
## 1582  53.63300     534637    777.3242
## 1583  54.38400     534525    813.2584
## 1584  55.13100     532590    832.4261
## 1585  55.87800     531905    874.7688
## 1586  56.63600     534629    931.8786
## 1587  57.41800     541471    971.3088
## 1588  58.23600     551713   1004.5050
## 1589  59.08900     564378   1040.0369
## 1590  59.97400     577886   1096.8215
## 1591  60.88400     591014   1108.4398
## 1592  61.80800     603643   1175.8568
## 1593  62.72800     616025   1278.8778
## 1594  63.62400     627840   1352.9790
## 1595  64.48300     638809   1409.6480
## 1596  65.28900     648744   1489.2118
## 1597  66.03100     657404   1572.4621
## 1598  66.70900     664873   1840.2716
## 1599  67.32500     671611   1909.2459
## 1600  67.88200     678329   2017.9035
## 1601  68.38400     685502   2235.3227
## 1602  68.84000     693297   2386.6211
## 1603  69.26300     701582   2479.1517
## 1604  69.66200     710235   2500.8645
## 1605  70.04600     719053   2612.8863
## 1606  70.41900     727885   2752.6302
## 1607  70.78100     736706   2940.7000
## 1608  71.12900     745563   3040.9370
## 1609  71.46000     754396   3097.1484
## 1610  71.77700     763094   3238.0605
## 1611  72.08000     771612   2879.6386
## 1612        NA     779900          NA
## 1613  41.82000    3656961   1292.8056
## 1614  42.15000    3728954   1294.3351
## 1615  42.49000    3802996   1339.9392
## 1616  42.84000    3879191   1402.9152
## 1617  43.19900    3957759   1429.4708
## 1618  43.56800    4038865   1469.5908
## 1619  43.94700    4122517   1543.0107
## 1620  44.33700    4208683   1606.8997
## 1621  44.73700    4297522   1707.9079
## 1622  45.14700    4389248   1747.0329
## 1623  45.56800    4484004   1799.5711
## 1624  45.99900    4581752   1850.3531
## 1625  46.44100    4682392   1954.8409
## 1626  46.89300    4785916   2022.3205
## 1627  47.35500    4892294   2036.5020
## 1628  47.82800    5001413   2137.7110
## 1629  48.31200    5113458   2187.3545
## 1630  48.80600    5228253   2245.6781
## 1631  49.31000    5344946   2241.7400
## 1632  49.82400    5462413   2196.4573
## 1633  50.34900    5579932   2120.7018
## 1634  50.88300    5697098   2082.8125
## 1635  51.42700    5814344   1960.4304
## 1636  51.98000    5932812   1843.6233
## 1637  52.54300    6054126   1803.0550
## 1638  53.11500    6179460   1736.8716
## 1639  53.69500    6309129   1657.3881
## 1640  54.28400    6442824   1662.9779
## 1641  54.88100    6580318   1675.6038
## 1642  55.48600    6721117   1702.6792
## 1643  56.09900    6864839   1744.3120
## 1644  56.72100    7011456   1797.7802
## 1645  57.35100    7160917   1789.2400
## 1646  57.98900    7312857   1826.8656
## 1647  58.63100    7466792   1872.7099
## 1648  59.27600    7622334   1920.3180
## 1649  59.92200    7779268   1963.6408
## 1650  60.56600    7937453   2019.8516
## 1651  61.20400    8096761   2079.6967
## 1652  61.83500    8257066   2048.0265
## 1653  62.45200    8418270   2059.1853
## 1654  63.05400    8580244   2054.3309
## 1655  63.64000    8742822   2066.2417
## 1656  64.21000    8905820   2083.4219
## 1657  64.76600    9069044   2131.3071
## 1658  65.31200    9232301   2186.1867
## 1659  65.85300    9395449   2251.2750
## 1660  66.39500    9558438   2313.8912
## 1661  66.93700    9721457   2414.9734
## 1662  67.47600    9884790   2454.8003
## 1663  68.00700   10048597   2514.4348
## 1664  68.52100   10212951   2602.7185
## 1665  69.01000   10377677   2692.6075
## 1666  69.46800   10542375   2830.6735
## 1667  69.89100   10706517   2939.4775
## 1668  70.27700   10869732   3035.9717
## 1669  70.62600   11031822   3118.9137
## 1670  70.94500   11192853   3203.0044
## 1671  71.23900   11353140   3291.1564
## 1672  71.51300   11513102   3317.3709
## 1673  71.77100   11673029   2986.0244
## 1674        NA   11832936   3125.5291
## 1675  60.35300    3225664          NA
## 1676  61.01900    3288604          NA
## 1677  61.64600    3353228          NA
## 1678  62.24300    3417573          NA
## 1679  62.81800    3478999          NA
## 1680  63.38100    3535632          NA
## 1681  63.94000    3586630          NA
## 1682  64.49900    3632678          NA
## 1683  65.05900    3675448          NA
## 1684  65.62100    3717476          NA
## 1685  66.18700    3760536          NA
## 1686  66.75600    3805286          NA
## 1687  67.32000    3851153          NA
## 1688  67.86700    3897259          NA
## 1689  68.39000    3942221          NA
## 1690  68.87200    3985107          NA
## 1691  69.29600    4025271          NA
## 1692  69.65700    4063188          NA
## 1693  69.95400    4100355          NA
## 1694  70.19300    4138816          NA
## 1695  70.39900    4179850          NA
## 1696  70.60100    4222479          NA
## 1697  70.82000    4265183          NA
## 1698  71.06100    4307907          NA
## 1699  71.31500    4350566          NA
## 1700  71.53400    4392135          NA
## 1701  71.65000    4435925          NA
## 1702  71.62600    4479516          NA
## 1703  71.46100    4509462          NA
## 1704  71.18400    4507819          NA
## 1705  70.87700    4463422          NA
## 1706  70.64500    4369320          NA
## 1707  70.57700    4233673          NA
## 1708  70.72500    4078940          NA
## 1709  71.09300    3936527    619.1424
## 1710  71.64500    3829049    768.9175
## 1711  72.30700    3764419   1477.8734
## 1712  72.97600    3736070   2001.1782
## 1713  73.56900    3734338   2314.4349
## 1714  74.05000    3743353   2530.5118
## 1715  74.40300    3751176   2847.5925
## 1716  74.63700    3755514   2913.2296
## 1717  74.80300    3759389   3056.5368
## 1718  74.94100    3762179   3172.3830
## 1719  75.06800    3764194   3371.2390
## 1720  75.19800    3765332   3501.5636
## 1721  75.34200    3765422   3691.0502
## 1722  75.49800    3762791   3909.9716
## 1723  75.66500    3754261   4132.1913
## 1724  75.84400    3735945   4027.6914
## 1725  76.03100    3705478   4095.9609
## 1726  76.21900    3661173   4185.3042
## 1727  76.40100    3604972   4215.6199
## 1728  76.56900    3542598   4390.6489
## 1729  76.72300    3482106   4518.4659
## 1730  76.86500    3429362   4729.6901
## 1731  76.99800    3386263   4940.7599
## 1732  77.12800    3351534   5150.2733
## 1733  77.26200    3323929   5387.2697
## 1734  77.40100    3300998   5578.2665
## 1735  77.54500    3280815   5437.5102
## 1736        NA    3263459   5854.6673
## 1737  49.17900     502733    357.5632
## 1738  49.68400     512688    372.8612
## 1739  50.17100     523777    389.2984
## 1740  50.64100     535692    403.1774
## 1741  51.09900     547870    421.1496
## 1742  51.54700     559996    435.9854
## 1743  51.99100     571957    453.9485
## 1744  52.43500     584098    470.8481
## 1745  52.88500     596946    509.3981
## 1746  53.34600     611297    572.6690
## 1747  53.82400     627714    653.1700
## 1748  54.32700     646350    798.1302
## 1749  54.85300     667096    977.1685
## 1750  55.39800     689906   1146.1464
## 1751  55.95700     714701   1203.7207
## 1752  56.52400     741346   1258.4724
## 1753  57.09100     769982   1340.6802
## 1754  57.64900     800532   1444.4143
## 1755  58.18600     832467   1588.0870
## 1756  58.69200     865073   1713.8877
## 1757  59.17400     897860   1849.2419
## 1758  59.64700     930412   1946.3095
## 1759  60.10900     962859   2109.5213
## 1760  60.54300     996124   2307.1467
## 1761  60.91600    1031439   2418.5576
## 1762  61.16700    1069585   2498.4842
## 1763  61.22700    1110948   2602.0567
## 1764  61.05900    1154904   2800.4288
## 1765  60.65100    1200073   3219.2063
## 1766  60.01600    1244484   3509.7311
## 1767  59.19100    1286756   3624.3296
## 1768  58.23200    1326321   3778.4777
## 1769  57.21900    1363541   3782.5504
## 1770  56.22200    1399110   3757.0233
## 1771  55.28400    1434061   3798.4366
## 1772  54.41000    1469173   3968.3207
## 1773  53.57200    1504724   4100.4435
## 1774  52.74900    1540424   4338.9003
## 1775  51.94700    1575827   4260.2389
## 1776  51.21400    1610260   4572.1809
## 1777  50.62900    1643333   4569.2152
## 1778  50.28100    1674674   4494.9388
## 1779  50.23200    1704637   4683.9559
## 1780  50.51800    1734387   4816.5700
## 1781  51.15000    1765533   4859.6290
## 1782  52.13000    1799077   4986.3280
## 1783  53.43500    1835911   5294.9697
## 1784  54.98300    1875458   5612.3278
## 1785  56.67900    1915636   5837.7793
## 1786  58.44700    1953495   5286.5749
## 1787  60.21100    1987106   5642.2200
## 1788  61.91000    2015406   5899.4628
## 1789  63.51100    2039551   6089.3991
## 1790  64.97600    2062551   6704.5368
## 1791  66.26500    2088619   6895.5744
## 1792  67.33800    2120716   6402.9102
## 1793  68.17800    2159925   6729.0656
## 1794  68.81200    2205076   6855.1603
## 1795  69.27500    2254067   6973.0988
## 1796  69.59200    2303703   7051.3465
## 1797  69.79300    2351625   6304.8623
## 1798        NA    2397240   6887.7522
## 1799  54.14300   72179235   2611.0534
## 1800  54.63400   74311338   2754.2463
## 1801  55.13000   76514329   2851.4929
## 1802  55.62700   78772647   2786.3624
## 1803  56.12100   81064572   2799.6419
## 1804  56.61000   83373533   2787.4388
## 1805  57.09100   85696502   2893.5758
## 1806  57.56300   88035815   2934.9877
## 1807  58.02500   90387079   3138.7857
## 1808  58.47500   92746607   3349.5318
## 1809  58.91100   95113265   3605.8705
## 1810  59.33200   97482928   3917.2858
## 1811  59.73900   99859388   4280.6683
## 1812  60.13200  102259497   4764.1180
## 1813  60.51300  104706193   5032.1796
## 1814  60.88400  107216209   5168.2806
## 1815  61.24300  109790943   5564.7634
## 1816  61.59500  112425392   5702.5144
## 1817  61.94200  115121158   5845.7525
## 1818  62.28600  117878412   6094.9209
## 1819  62.63000  120694012   6500.3878
## 1820  62.97600  123570327   6079.2440
## 1821  63.32600  126498322   5987.8205
## 1822  63.68000  129448815   5679.8974
## 1823  64.03900  132383569   5853.8973
## 1824  64.40600  135274083   6178.5239
## 1825  64.78200  138108915   6504.9757
## 1826  65.16500  140891606   6601.5891
## 1827  65.55300  143627505   6471.9527
## 1828  65.94700  146328305   6553.2380
## 1829  66.34300  149003225   6155.6454
## 1830  66.74200  151648007   6110.7191
## 1831  67.14100  154259382   5974.5901
## 1832  67.53900  156849086   6165.3169
## 1833  67.93200  159432717   6420.4074
## 1834  68.31800  162019889   6584.7392
## 1835  68.69500  164614682   6624.1004
## 1836  69.06100  167209046   6742.7117
## 1837  69.41900  169785253   6662.8534
## 1838  69.76900  172318674   6595.6161
## 1839  70.11600  174790339   6787.6690
## 1840  70.46200  177196051   6788.5766
## 1841  70.81300  179537523   6904.6253
## 1842  71.17000  181809244   6896.1372
## 1843  71.53100  184006479   7206.2618
## 1844  71.89600  186127108   7352.2826
## 1845  72.26000  188167353   7560.7020
## 1846  72.61800  190130445   7936.8244
## 1847  72.96600  192030362   8258.6159
## 1848  73.30000  193886505   8169.2624
## 1849  73.61900  195713637   8702.2553
## 1850  73.92100  197514541   8965.6206
## 1851  74.20900  199287292   9056.5804
## 1852  74.48300  201035904   9247.5734
## 1853  74.74500  202763744   9214.9772
## 1854  74.99400  204471759   8813.9898
## 1855  75.23000  206163056   8455.3123
## 1856  75.45600  207833825   8498.2939
## 1857  75.67200  209469320   8582.3386
## 1858  75.88100  211049519   8622.0666
## 1859  76.08400  212559409   8228.7743
## 1860        NA  213993441   8551.2053
## 1861        NA       8053          NA
## 1862        NA       8164          NA
## 1863        NA       8319          NA
## 1864        NA       8469          NA
## 1865        NA       8644          NA
## 1866        NA       8836          NA
## 1867        NA       9022          NA
## 1868        NA       9213          NA
## 1869        NA       9427          NA
## 1870        NA       9621          NA
## 1871        NA       9830          NA
## 1872        NA      10012          NA
## 1873        NA      10210          NA
## 1874        NA      10391          NA
## 1875        NA      10551          NA
## 1876        NA      10697          NA
## 1877        NA      10821          NA
## 1878        NA      10923          NA
## 1879        NA      11041          NA
## 1880        NA      11226          NA
## 1881        NA      11471          NA
## 1882        NA      11821          NA
## 1883        NA      12250          NA
## 1884        NA      12755          NA
## 1885        NA      13317          NA
## 1886        NA      13951          NA
## 1887        NA      14646          NA
## 1888        NA      15390          NA
## 1889        NA      16155          NA
## 1890        NA      16867          NA
## 1891        NA      17489          NA
## 1892        NA      18007          NA
## 1893        NA      18443          NA
## 1894        NA      18783          NA
## 1895        NA      19068          NA
## 1896        NA      19307          NA
## 1897        NA      19508          NA
## 1898        NA      19660          NA
## 1899        NA      19820          NA
## 1900        NA      20026          NA
## 1901        NA      20313          NA
## 1902        NA      20675          NA
## 1903        NA      21128          NA
## 1904        NA      21674          NA
## 1905        NA      22329          NA
## 1906        NA      23106          NA
## 1907        NA      24022          NA
## 1908        NA      25050          NA
## 1909        NA      26096          NA
## 1910        NA      27035          NA
## 1911        NA      27796          NA
## 1912        NA      28326          NA
## 1913        NA      28654          NA
## 1914        NA      28850          NA
## 1915        NA      28985          NA
## 1916        NA      29148          NA
## 1917        NA      29355          NA
## 1918        NA      29567          NA
## 1919        NA      29795          NA
## 1920        NA      30033          NA
## 1921        NA      30237          NA
## 1922        NA      30423          NA
## 1923  54.81000      81707          NA
## 1924  55.81000      85560          NA
## 1925  56.80500      89484          NA
## 1926  57.75600      93540          NA
## 1927  58.63800      97819          NA
## 1928  59.43400     102390          NA
## 1929  60.14700     107274          NA
## 1930  60.80300     112446          NA
## 1931  61.42200     117897          NA
## 1932  62.01300     123596          NA
## 1933  62.58200     129530          NA
## 1934  63.13400     135672          NA
## 1935  63.67100     142015          NA
## 1936  64.19600     148516          NA
## 1937  64.70900     155069  43260.9222
## 1938  65.20900     161635  41651.0900
## 1939  65.69600     168173  48100.4102
## 1940  66.16400     174717  51353.1178
## 1941  66.61000     181201  52870.6152
## 1942  67.03100     187596  62590.5458
## 1943  67.42500     193880  56324.5391
## 1944  67.78600     200027  43769.5125
## 1945  68.11700     206064  44168.2815
## 1946  68.42100     212073  43132.0048
## 1947  68.70000     218176  42176.9817
## 1948  68.96000     224440  40388.6399
## 1949  69.20800     230917  38189.7986
## 1950  69.45000     237565  37866.9093
## 1951  69.69100     244405  37211.0630
## 1952  69.93500     251456  35779.1340
## 1953  70.18500     258714  35154.2312
## 1954  70.43900     266208  35239.4057
## 1955  70.69600     273888  35881.1439
## 1956  70.95100     281684  34994.3426
## 1957  71.20700     289452  35126.3737
## 1958  71.46500     297112  35753.4100
## 1959  71.72700     304620  35875.9246
## 1960  71.99400     311962  34516.2129
## 1961  72.26500     319135  33551.9701
## 1962  72.53800     326214  33825.7126
## 1963  72.80900     333166  34063.6146
## 1964  73.07600     340037  34291.1358
## 1965  73.33200     346777  34926.6281
## 1966  73.57500     353295  35277.8023
## 1967  73.80100     359434  34850.1442
## 1968  74.00600     365112  34441.1226
## 1969  74.18900     370262  35455.6356
## 1970  74.35100     374967  35064.8667
## 1971  74.49400     379418  33981.3370
## 1972  74.62300     383902  32991.8236
## 1973  74.74000     388634  33437.1217
## 1974  74.85200     393687  34244.2069
## 1975  74.96200     398997  34096.9076
## 1976  75.07500     404414  32924.9900
## 1977  75.19300     409778  31678.9373
## 1978  75.31800     414914  31164.0363
## 1979  75.45000     419791  30038.7345
## 1980  75.58500     424481  30101.5288
## 1981  75.72200     428960  29802.7829
## 1982  75.86000     433296  30646.1092
## 1983  75.99800     437483  30696.8771
## 1984        NA     441532  29927.0437
## 1985  69.24756    7867374          NA
## 1986  70.19561    7943118          NA
## 1987  69.49195    8012946          NA
## 1988  70.30927    8078145          NA
## 1989  71.12122    8144340          NA
## 1990  71.29390    8204168          NA
## 1991  71.22341    8258057          NA
## 1992  70.41390    8310226          NA
## 1993  71.22512    8369603          NA
## 1994  70.43000    8434172          NA
## 1995  71.25634    8489574          NA
## 1996  70.87366    8536395          NA
## 1997  70.89951    8576200          NA
## 1998  71.34220    8620967          NA
## 1999  71.20805    8678745          NA
## 2000  71.04976    8720742          NA
## 2001  71.39488    8758599          NA
## 2002  70.81610    8804183          NA
## 2003  71.18463    8814032          NA
## 2004  71.30829    8825940          NA
## 2005  71.15756    8861535   3428.4095
## 2006  71.57195    8891117   3584.4414
## 2007  71.18610    8917457   3657.2878
## 2008  71.38634    8939738   3773.3160
## 2009  71.49976    8960679   3892.3568
## 2010  71.22805    8960547   3996.8648
## 2011  71.73073    8958171   4166.1417
## 2012  71.52683    8971359   4411.8862
## 2013  71.60439    8981446   4889.2563
## 2014  71.72244    8876972   4784.0546
## 2015  71.64146    8718289   4427.0107
## 2016  71.56098    8632367   4093.4767
## 2017  71.49439    8540164   3836.7640
## 2018  71.34683    8472313   3810.2437
## 2019  71.20878    8443591   3892.7111
## 2020  71.05341    8406067   4021.7228
## 2021  70.89732    8362826   4252.9465
## 2022  70.35122    8312068   3674.9318
## 2023  71.06098    8256786   3839.7167
## 2024  71.41220    8210624   3537.1058
## 2025  71.66341    8170172   3717.6770
## 2026  71.76829    8009142   3937.4349
## 2027  71.86585    7837161   4260.1161
## 2028  72.06585    7775327   4518.8782
## 2029  72.56341    7716860   4849.5429
## 2030  72.56098    7658972   5230.9837
## 2031  72.61220    7601022   5629.4199
## 2032  72.66341    7545338   6044.7594
## 2033  72.96341    7492561   6459.6409
## 2034  73.41220    7444443   6288.6774
## 2035  73.51220    7395599   6427.8101
## 2036  74.16341    7348328   6605.0898
## 2037  74.31463    7305888   6693.6124
## 2038  74.86098    7265115   6693.4502
## 2039  74.46585    7223938   6796.6891
## 2040  74.61463    7177991   7074.6810
## 2041  74.81220    7127822   7341.0476
## 2042  74.81463    7075947   7599.1250
## 2043  74.96341    7025037   7859.6780
## 2044  75.11220    6975761   8234.7813
## 2045  73.60732    6934015   7920.9113
## 2046        NA    6899125   8293.5679
## 2047  34.43200    4829289    241.6055
## 2048  34.89700    4894580    248.0226
## 2049  35.36900    4960328    259.7345
## 2050  35.84700    5027811    252.9991
## 2051  36.33100    5098891    255.1672
## 2052  36.81500    5174874    260.8854
## 2053  37.29100    5256360    258.2219
## 2054  37.75400    5343025    276.4476
## 2055  38.20700    5434046    280.1640
## 2056  38.65200    5528172    280.9734
## 2057  39.09500    5624592    276.4800
## 2058  39.54200    5723378    275.5481
## 2059  40.00300    5825174    276.9908
## 2060  40.49300    5930493    273.2942
## 2061  41.02500    6040045    290.5729
## 2062  41.63000    6154554    293.7170
## 2063  42.34300    6274032    312.7148
## 2064  43.16600    6398933    307.7464
## 2065  44.08100    6530820    315.4257
## 2066  45.06000    6671656    320.0823
## 2067  46.04900    6822837    315.4840
## 2068  46.98400    6985166    321.2653
## 2069  47.81000    7158259    343.4740
## 2070  48.48600    7340910    336.0867
## 2071  48.99200    7531239    321.7663
## 2072  49.32300    7727908    340.2861
## 2073  49.49200    7930689    357.9641
## 2074  49.55000    8140080    347.9318
## 2075  49.54500    8356313    358.5714
## 2076  49.50500    8579818    356.7400
## 2077  49.45400    8811033    345.2842
## 2078  49.40900    9050086    366.6537
## 2079  49.37400    9297110    357.7423
## 2080  49.36000    9552473    360.2307
## 2081  49.38000    9816584    355.1484
## 2082  49.44500   10089880    365.2805
## 2083  49.55700   10372734    394.4573
## 2084  49.71300   10665552    407.8607
## 2085  49.91400   10968722    425.5692
## 2086  50.16800   11282696    444.3225
## 2087  50.48900   11607951    440.0284
## 2088  50.89300   11944589    455.9077
## 2089  51.38400   12293097    462.2656
## 2090  51.95600   12654624    484.0971
## 2091  52.60200   13030576    491.1847
## 2092  53.31000   13421935    518.1679
## 2093  54.06300   13829173    534.3567
## 2094  54.84100   14252029    539.8200
## 2095  55.61800   14689725    554.1121
## 2096  56.37700   15141098    553.5167
## 2097  57.09600   15605211    582.4157
## 2098  57.76100   16081915    602.5791
## 2099  58.37400   16571252    622.5197
## 2100  58.93700   17072791    639.2329
## 2101  59.45000   17586029    647.4287
## 2102  59.91900   18110616    653.3273
## 2103  60.35400   18646350    672.3630
## 2104  60.76800   19193236    693.7264
## 2105  61.17400   19751466    718.6426
## 2106  61.57700   20321383    738.2189
## 2107  61.98100   20903278    731.5221
## 2108        NA   21497097    760.4409
## 2109  41.28100    2797925    285.4030
## 2110  41.59200    2852438    241.4665
## 2111  41.90700    2907320    258.3797
## 2112  42.22500    2964416    263.8824
## 2113  42.54000    3026292    274.7020
## 2114  42.83800    3094378    279.3160
## 2115  43.10500    3170496    285.1856
## 2116  43.33200    3253215    316.3489
## 2117  43.52300    3336930    307.4938
## 2118  43.68500    3413909    296.1735
## 2119  43.84100    3479070    352.6043
## 2120  44.02100    3530000    357.0627
## 2121  44.24600    3569655    330.4840
## 2122  44.52800    3605120    349.7761
## 2123  44.86500    3646428    343.3002
## 2124  45.24200    3700879    340.6100
## 2125  45.63000    3770870    360.8393
## 2126  45.99900    3854446    393.5041
## 2127  46.32700    3949264    380.4441
## 2128  46.60800    4051239    377.0426
## 2129  46.85200    4157296    371.0652
## 2130  47.08300    4266520    405.5441
## 2131  47.32400    4379727    390.8993
## 2132  47.58100    4497544    394.8021
## 2133  47.84400    4621096    384.8441
## 2134  48.08000    4750832    418.4433
## 2135  48.24300    4886745    420.0272
## 2136  48.30100    5027143    430.7657
## 2137  48.24400    5168703    440.0463
## 2138  48.08000    5307069    434.3570
## 2139  47.82900    5438959    438.6573
## 2140  47.52200    5564923    450.1510
## 2141  47.21200    5685569    445.0490
## 2142  46.95300    5798054    409.1825
## 2143  46.78600    5898964    386.7793
## 2144  46.75800    5987044    350.9068
## 2145  46.90500    6060110    318.9419
## 2146  47.22600    6122130    310.6911
## 2147  47.70800    6185564    322.1114
## 2148  48.33900    6267132    314.7080
## 2149  49.09100    6378871    306.5459
## 2150  49.93000    6525546    305.8160
## 2151  50.81000    6704118    310.9062
## 2152  51.69000    6909161    297.9877
## 2153  52.54700    7131688    302.6440
## 2154  53.36900    7364857    295.6999
## 2155  54.16300    7607850    301.7527
## 2156  54.94400    7862226    302.0690
## 2157  55.72100    8126104    306.4688
## 2158  56.48800    8397661    307.8655
## 2159  57.22800    8675606    313.2724
## 2160  57.92500    8958406    315.6172
## 2161  58.56800    9245992    319.3983
## 2162  59.14800    9540302    324.7877
## 2163  59.66500    9844301    328.1058
## 2164  60.12300   10160034    305.5111
## 2165  60.52800   10488002    294.1818
## 2166  60.89800   10827010    286.3955
## 2167  61.24700   11175379    281.9347
## 2168  61.58400   11530577    278.2026
## 2169  61.91600   11890781    270.6577
## 2170        NA   12255429    267.3191
## 2171  48.46100     201770          NA
## 2172  48.66000     205321          NA
## 2173  48.94400     210141          NA
## 2174  49.32300     216087          NA
## 2175  49.79700     222949          NA
## 2176  50.34500     230421          NA
## 2177  50.93400     238655          NA
## 2178  51.53200     247522          NA
## 2179  52.11900     256169          NA
## 2180  52.69800     263461          NA
## 2181  53.29800     268633          NA
## 2182  53.97000     271315          NA
## 2183  54.74500     271841          NA
## 2184  55.63100     271068          NA
## 2185  56.60900     270228          NA
## 2186  57.63000     270240          NA
## 2187  58.62600     271345          NA
## 2188  59.53500     273335          NA
## 2189  60.31200     276182          NA
## 2190  60.94100     279729          NA
## 2191  61.42500     283848    606.4455
## 2192  61.79400     288678    646.6953
## 2193  62.10100     294244    652.3860
## 2194  62.39200     300226    700.2617
## 2195  62.68900     306140    712.7151
## 2196  63.00400     311668    760.5748
## 2197  63.33800     316613    770.1942
## 2198  63.67800     321137    792.0648
## 2199  64.01500     325744    827.6898
## 2200  64.34900     331180    860.4913
## 2201  64.67600     337953    849.0827
## 2202  64.99200     346229    840.4243
## 2203  65.29800     355763    907.3612
## 2204  65.59800     366057    958.6388
## 2205  65.89900     376409   1111.1092
## 2206  66.22400     386288   1236.5619
## 2207  66.59600     395533   1344.6864
## 2208  67.02600     404248   1461.9817
## 2209  67.51200     412513   1612.0238
## 2210  68.04100     420456   1759.0645
## 2211  68.58300     428178   1974.0888
## 2212  69.09900     435701   1983.2976
## 2213  69.55700     442955   2053.2537
## 2214  69.93200     449925   2105.8666
## 2215  70.21900     456619   2286.5834
## 2216  70.42400     463034   2410.7738
## 2217  70.56500     469171   2569.1922
## 2218  70.67600     475067   2922.2331
## 2219  70.78600     480846   3079.1205
## 2220  70.91100     486667   3003.6412
## 2221  71.06200     492644   3010.7222
## 2222  71.24300     498858   3091.2230
## 2223  71.44500     505241   3085.1917
## 2224  71.66100     511740   3070.4637
## 2225  71.88600     518276   3050.2723
## 2226  72.11700     524740   3043.0314
## 2227  72.34700     531140   3147.8374
## 2228  72.57000     537499   3225.7518
## 2229  72.78200     543764   3333.0661
## 2230  72.98100     549936   3482.4485
## 2231  73.16600     555988   2935.3210
## 2232        NA     561901   3106.3612
## 2233  41.24200    5722372          NA
## 2234  41.36600    5872968          NA
## 2235  41.52600    6028434          NA
## 2236  41.71000    6183586          NA
## 2237  41.89300    6331443          NA
## 2238  42.08300    6467191          NA
## 2239  42.29800    6585034          NA
## 2240  42.48600    6685961          NA
## 2241  42.55000    6779778          NA
## 2242  42.36900    6880623          NA
## 2243  41.56600    6996576          NA
## 2244  39.69900    7139640          NA
## 2245  36.67600    7302114          NA
## 2246  32.66700    7449233          NA
## 2247  28.04000    7533332          NA
## 2248  23.59500    7524457          NA
## 2249  20.31700    7404687          NA
## 2250  18.90700    7196042          NA
## 2251  19.72500    6957267          NA
## 2252  22.74400    6770393          NA
## 2253  27.53600    6693759          NA
## 2254  33.34200    6749849          NA
## 2255  39.15700    6919803          NA
## 2256  44.17300    7170004          NA
## 2257  48.02500    7447844          NA
## 2258  50.56300    7714894          NA
## 2259  51.91600    7960952          NA
## 2260  52.58700    8198082          NA
## 2261  52.99900    8435909          NA
## 2262  53.30200    8691331          NA
## 2263  53.59500    8975597          NA
## 2264  53.91600    9289298          NA
## 2265  54.22800    9623899          NA
## 2266  54.51400    9970727    579.1964
## 2267  54.82000   10317901    364.8811
## 2268  55.18900   10656145    388.2880
## 2269  55.65300   10982919    398.9533
## 2270  56.21200   11298594    403.3448
## 2271  56.86200   11600510    411.2389
## 2272  57.60400   11886464    452.3382
## 2273  58.43200   12155241    486.5413
## 2274  59.33500   12405411    515.5754
## 2275  60.28300   12637719    539.3939
## 2276  61.24100   12856171    575.3292
## 2277  62.18600   13066475    624.6039
## 2278  63.08800   13273355    696.3394
## 2279  63.92700   13477705    759.6476
## 2280  64.69700   13679953    824.8494
## 2281  65.39400   13883835    867.1215
## 2282  66.01400   14093605    854.9558
## 2283  66.56000   14312205    892.1004
## 2284  67.04300   14541421    940.1118
## 2285  67.48000   14780454    992.5498
## 2286  67.88800   15026330   1048.1325
## 2287  68.27300   15274506   1104.7500
## 2288  68.63700   15521435   1162.9050
## 2289  68.97700   15766290   1224.2204
## 2290  69.28900   16009413   1289.9858
## 2291  69.57000   16249795   1365.8291
## 2292  69.82300   16486542   1441.1792
## 2293  70.05400   16718971   1377.1451
## 2294        NA   16946446   1399.7778
## 2295  41.78500    5176920    932.4713
## 2296  42.25500    5285015    924.2111
## 2297  42.72100    5398730    932.2625
## 2298  43.18200    5518104    946.2303
## 2299  43.63900    5643039    958.1023
## 2300  44.09500    5773538    955.4193
## 2301  44.55500    5909874    976.4535
## 2302  45.02500    6052419    849.4146
## 2303  45.50900    6201410    881.6186
## 2304  46.00800    6357096    902.1817
## 2305  46.52300    6519754    906.8737
## 2306  47.05300    6689659    914.5959
## 2307  47.59300    6867170    914.7770
## 2308  48.13500    7052847    938.3969
## 2309  48.67500    7247284   1011.2482
## 2310  49.20500    7451057   1094.1979
## 2311  49.71900    7664398   1005.2865
## 2312  50.21300    7887571   1111.0596
## 2313  50.68200    8121081   1316.5499
## 2314  51.12300    8365560   1355.2078
## 2315  51.53700    8621409   1289.1472
## 2316  51.93300    8888534   1464.0074
## 2317  52.31200    9166813   1526.2616
## 2318  52.67000    9456496   1581.1025
## 2319  52.99700    9757849   1646.8039
## 2320  53.27300   10070806   1724.2865
## 2321  53.47600   10395481   1783.5491
## 2322  53.59100   10731058   1690.6855
## 2323  53.61100   11075423   1509.9572
## 2324  53.53600   11425807   1437.0272
## 2325  53.36200   11780086   1308.7077
## 2326  53.08800   12137912   1221.7529
## 2327  52.73800   12499499   1149.6311
## 2328  52.34300   12864091   1028.4435
## 2329  51.93600   13230978   1018.6920
## 2330  51.55400   13599984   1019.7331
## 2331  51.23800   13970812   1034.5079
## 2332  51.00900   14344444   1053.1774
## 2333  50.88500   14723772   1074.5305
## 2334  50.87800   15112598   1094.1125
## 2335  50.99300   15513944   1106.6540
## 2336  51.22200   15928910   1124.4323
## 2337  51.53600   16357605   1143.9854
## 2338  51.90800   16800869   1174.5405
## 2339  52.32100   17259322   1223.9342
## 2340  52.76000   17733408   1217.7570
## 2341  53.21500   18223677   1230.1392
## 2342  53.68100   18730283   1248.6626
## 2343  54.15300   19252674   1249.3752
## 2344  54.62700   19789922   1246.8074
## 2345  55.10100   20341236   1248.1805
## 2346  55.58100   20906392   1255.4772
## 2347  56.07300   21485267   1278.1644
## 2348  56.57600   22077300   1306.0275
## 2349  57.08300   22681853   1343.9285
## 2350  57.58300   23298376   1382.5098
## 2351  58.06300   23926549   1407.2745
## 2352  58.51100   24566070   1419.1761
## 2353  58.92100   25216261   1437.2715
## 2354  59.29200   25876387   1449.2775
## 2355  59.62600   26545864   1419.6767
## 2356        NA   27224262   1432.5650
## 2357  71.13317   17909009          NA
## 2358  71.34610   18271000          NA
## 2359  71.36707   18614000          NA
## 2360  71.38073   18964000          NA
## 2361  71.77634   19325000          NA
## 2362  71.87220   19678000          NA
## 2363  72.00439   20048000          NA
## 2364  72.20780   20412000          NA
## 2365  72.35341   20744000          NA
## 2366  72.50146   21028000          NA
## 2367  72.70049   21324000          NA
## 2368  73.02927   21962032          NA
## 2369  72.93390   22218463          NA
## 2370  73.16268   22491777          NA
## 2371  73.23756   22807969          NA
## 2372  73.52171   23143275          NA
## 2373  73.85610   23449808          NA
## 2374  74.21561   23725843          NA
## 2375  74.52976   23963203          NA
## 2376  74.86634   24201544          NA
## 2377  75.07805   24515667          NA
## 2378  75.46341   24819915          NA
## 2379  75.76341   25116942          NA
## 2380  76.06585   25366451          NA
## 2381  76.21707   25607053          NA
## 2382  76.36829   25842116          NA
## 2383  76.51951   26100278          NA
## 2384  76.71951   26446601          NA
## 2385  76.91951   26791747          NA
## 2386  77.11951   27276781          NA
## 2387  77.42195   27691138          NA
## 2388  77.62195   28037420          NA
## 2389  77.72439   28371264          NA
## 2390  77.82439   28684764          NA
## 2391  77.82683   29000663          NA
## 2392  78.02927   29302311          NA
## 2393  78.18049   29610218          NA
## 2394  78.43171   29905948  31222.7248
## 2395  78.63415   30155173  31830.6171
## 2396  78.88537   30401286  32826.5308
## 2397  79.13659   30685730  34121.6092
## 2398  79.33902   31020902  34227.3417
## 2399  79.49024   31360079  35015.7950
## 2400  79.74146   31644028  36024.0992
## 2401  79.89268   31940655  37086.4493
## 2402  80.19268   32243753  38573.1998
## 2403  80.34390   32571174  39776.1795
## 2404  80.54390   32889025  42097.4351
## 2405  80.69512   33247118  42063.6331
## 2406  80.99512   33628895  40368.2920
## 2407  81.24634   34004889  41155.3236
## 2408  81.44878   34339328  42036.9978
## 2409  81.64878   34714222  42315.8074
## 2410  81.74878   35082954  42846.2842
## 2411  81.80000   35437435  43635.0955
## 2412  81.90000   35702908  43596.1355
## 2413  81.90000   36109487  43536.9134
## 2414  81.90000   36545236  44325.4883
## 2415  82.04878   37065084  44917.4837
## 2416  82.04878   37601230  45109.2445
## 2417  81.74878   38037204  42258.6910
## 2418        NA   38246108  43945.5570
## 2419  62.74631    4194711          NA
## 2420  63.12613    4274052          NA
## 2421  63.47645    4353623          NA
## 2422  63.80444    4432240          NA
## 2423  64.11380    4508189          NA
## 2424  64.40772    4580382          NA
## 2425  64.68466    4648353   5035.1665
## 2426  64.94362    4712556   5187.1854
## 2427  65.18699    4773890   5423.2888
## 2428  65.41993    4833839   5655.3970
## 2429  65.64882    4893444   5836.8617
## 2430  65.88039    4953088   5890.8501
## 2431  66.11889    5012600   6241.0865
## 2432  66.36500    5071912   6131.4852
## 2433  66.61829    5130797   5867.0473
## 2434  66.87568    5189174   5730.0831
## 2435  67.13337    5246547   5737.5434
## 2436  67.38521    5303289   5894.8936
## 2437  67.62785    5360562   6169.2728
## 2438  67.86142    5419911   6417.9196
## 2439  68.08671    5482191   6502.2769
## 2440  68.30313    5548521   6485.7754
## 2441  68.51781    5617902   6472.4708
## 2442  68.71894    5687113   6238.3365
## 2443  68.92094    5751508   6228.9254
## 2444  69.12268    5808206   6172.5326
## 2445  69.32978    5855445   6203.6904
## 2446  69.54872    5894820   6275.3442
## 2447  69.76319    5930153   6373.7438
## 2448  69.98419    5967028   6596.8624
## 2449  70.19763    6009262   6609.3275
## 2450  70.39401    6058334   6642.6054
## 2451  70.58807    6112784   6727.8155
## 2452  70.71254    6170324   6859.5412
## 2453  70.83449    6227332   6987.2916
## 2454  70.93751    6281204   7130.0378
## 2455  71.02899    6331277   7321.2423
## 2456  71.16377    6378551   7562.5086
## 2457  71.21031    6423851   7598.9366
## 2458  71.31028    6468461   7928.4577
## 2459  71.41918    6513486   8167.4401
## 2460  71.53800    6559097   8275.7979
## 2461  71.71336    6604966   8513.8911
## 2462  71.79199    6650981   8929.3233
## 2463  71.92354    6696985   9218.3120
## 2464  72.05571    6742657   9488.3207
## 2465  72.18704    6788122  10067.7067
## 2466  72.31606    6833394  10333.1054
## 2467  72.44079    6878973  10398.4859
## 2468  72.56175    6925446   9963.7861
## 2469  72.67940    6973193  10029.6732
## 2470  72.79530    7022367  10071.4687
## 2471  72.91181    7072640  10138.0092
## 2472  73.03014    7123315  10142.2789
## 2473  73.15059    7173443  10139.9499
## 2474  73.27302    7222197  10181.8062
## 2475  73.39596    7269385   9949.4161
## 2476  73.51749    7314956   9930.1922
## 2477  73.63711    7358929  10012.8163
## 2478  73.75473    7401389  10065.1249
## 2479  73.87091    7442291   9074.1279
## 2480        NA    7481631   9491.6662
## 2481        NA       7870          NA
## 2482        NA       8024          NA
## 2483        NA       8141          NA
## 2484        NA       8219          NA
## 2485        NA       8299          NA
## 2486        NA       8370          NA
## 2487        NA       8444          NA
## 2488        NA       8518          NA
## 2489        NA       8638          NA
## 2490        NA       8833          NA
## 2491        NA       9143          NA
## 2492        NA       9588          NA
## 2493        NA      10135          NA
## 2494        NA      10778          NA
## 2495        NA      11488          NA
## 2496        NA      12234          NA
## 2497        NA      13023          NA
## 2498        NA      13848          NA
## 2499        NA      14681          NA
## 2500        NA      15485          NA
## 2501        NA      16207          NA
## 2502        NA      16857          NA
## 2503        NA      17436          NA
## 2504        NA      18005          NA
## 2505        NA      18662          NA
## 2506        NA      19460          NA
## 2507        NA      20426          NA
## 2508        NA      21539          NA
## 2509        NA      22775          NA
## 2510        NA      24028          NA
## 2511        NA      25307          NA
## 2512        NA      26540          NA
## 2513        NA      27784          NA
## 2514        NA      29068          NA
## 2515        NA      30521          NA
## 2516        NA      32161          NA
## 2517        NA      34065          NA
## 2518        NA      36155          NA
## 2519        NA      38330          NA
## 2520        NA      40423          NA
## 2521        NA      42305          NA
## 2522        NA      43934          NA
## 2523        NA      45347          NA
## 2524        NA      46624          NA
## 2525        NA      47899          NA
## 2526        NA      49261          NA
## 2527        NA      50729  91341.2941
## 2528        NA      52280  91434.5367
## 2529        NA      53835  88476.1416
## 2530        NA      55321  79899.9647
## 2531  82.19024      56672  75877.1675
## 2532        NA      57877  75165.9870
## 2533        NA      58963  74688.8864
## 2534        NA      59933  74420.1192
## 2535        NA      60848  75246.8262
## 2536        NA      61721  76284.1943
## 2537        NA      62564  77694.6107
## 2538        NA      63382  79133.8002
## 2539        NA      64172  81494.8887
## 2540        NA      64948  83639.8336
## 2541        NA      65720  77959.1105
## 2542        NA      66498          NA
## 2543  36.24900    1501668    652.8550
## 2544  36.71500    1526057    674.2440
## 2545  37.19000    1551908    638.3898
## 2546  37.68300    1579375    622.8525
## 2547  38.20100    1608618    624.2515
## 2548  38.75400    1639706    618.2191
## 2549  39.35500    1673019    609.8160
## 2550  40.00500    1708306    625.1492
## 2551  40.70300    1744198    620.8821
## 2552  41.44400    1778870    651.9524
## 2553  42.22300    1811157    655.2684
## 2554  43.03600    1840517    652.1032
## 2555  43.86600    1867786    642.5772
## 2556  44.69500    1894850    645.3638
## 2557  45.50400    1924386    675.7405
## 2558  46.27500    1958367    666.7045
## 2559  46.99200    1997017    689.3190
## 2560  47.64800    2039914    700.5088
## 2561  48.23300    2087662    692.7642
## 2562  48.73700    2140778    658.9218
## 2563  49.15300    2199359    612.6464
## 2564  49.47600    2264441    585.8482
## 2565  49.71300    2335339    611.8931
## 2566  49.87200    2408322    545.1313
## 2567  49.95500    2478382    579.9480
## 2568  49.96600    2542170    587.6003
## 2569  49.91200    2597765    595.5993
## 2570  49.79700    2646836    555.6860
## 2571  49.62400    2693974    555.2997
## 2572  49.39700    2745735    555.6043
## 2573  49.10400    2806740    531.8557
## 2574  48.72800    2878507    515.7300
## 2575  48.26700    2959236    469.4336
## 2576  47.73100    3046148    457.5689
## 2577  47.14300    3135017    466.3831
## 2578  46.53000    3222662    486.3657
## 2579  45.92200    3308235    454.8332
## 2580  45.35300    3392432    467.0523
## 2581  44.85700    3475485    477.3187
## 2582  44.46100    3558019    483.0313
## 2583  44.19000    3640421    460.3452
## 2584  44.06100    3722016    470.3560
## 2585  44.06300    3802129    477.0976
## 2586  44.18200    3881185    442.1528
## 2587  44.41300    3959883    459.3453
## 2588  44.74400    4038380    454.5074
## 2589  45.15800    4118075    466.9768
## 2590  45.63600    4198004    479.1922
## 2591  46.16100    4273368    480.4109
## 2592  46.71900    4337623    513.9374
## 2593  47.31200    4386765    531.7130
## 2594  47.95000    4418639    550.0199
## 2595  48.63800    4436411    575.5019
## 2596  49.37100    4447945    365.1161
## 2597  50.12900    4464171    364.0840
## 2598  50.88100    4493171    377.4229
## 2599  51.59300    4537683    391.4735
## 2600  52.24000    4596023    404.0025
## 2601  52.80500    4666375    412.9902
## 2602  53.28300    4745179    418.7217
## 2603  53.67900    4829764    415.0910
## 2604        NA    4919987    411.1463
## 2605  67.82139   91401764          NA
## 2606  68.26220   92232738          NA
## 2607  68.00693   93009498          NA
## 2608  68.69605   93840016          NA
## 2609  69.05248   94715795          NA
## 2610  69.27700   95440988          NA
## 2611  69.52707   96146336          NA
## 2612  69.27274   97043270          NA
## 2613  69.53603   97884022          NA
## 2614  69.27573   98606630          NA
## 2615  69.44696   99134548          NA
## 2616  69.48517   99635258          NA
## 2617  69.92544  100357161          NA
## 2618  70.06778  101112680          NA
## 2619  70.30594  101939916          NA
## 2620  70.17441  102860571          NA
## 2621  70.31915  103776068          NA
## 2622  70.24237  104616884          NA
## 2623  70.14793  105329397          NA
## 2624  70.23940  105948616          NA
## 2625  69.89051  106541316          NA
## 2626  70.37205  107129392          NA
## 2627  70.45547  107730380          NA
## 2628  70.38979  108297837          NA
## 2629  70.34911  108838073          NA
## 2630  70.31288  109338285          NA
## 2631  70.56514  109824166          NA
## 2632  70.61176  110296425          NA
## 2633  70.86171  110686740          NA
## 2634  70.73197  110801640          NA
## 2635  70.65633  110743128   6308.5478
## 2636  70.57522  110469467   5706.5689
## 2637  70.73284  110111454   5613.4095
## 2638  70.84599  110041924   5703.8778
## 2639  70.86954  110021594   5939.1689
## 2640  71.02542  109864246   6287.4336
## 2641  71.33606  109626194   6587.4083
## 2642  71.51726  109422013   6752.6852
## 2643  71.89824  109238340   6945.4498
## 2644  72.18456  109060951   7089.6327
## 2645  72.71972  108447824   7411.7233
## 2646  73.09615  107660041   7695.4741
## 2647  73.24242  106959751   8025.2415
## 2648  73.38225  106624167   8379.3178
## 2649  73.73043  106331716   8892.7063
## 2650  73.84500  106041911   9364.5451
## 2651  74.09260  105772481  10006.8693
## 2652  74.25065  105378748  10689.3952
## 2653  74.57595  105001883  11149.1079
## 2654  74.93036  104800475  10779.6995
## 2655  75.29397  104421447  11002.4434
## 2656  75.88847  104174038  11366.5397
## 2657  75.99349  103935318  11479.5755
## 2658  76.35516  103713726  11646.6681
## 2659  76.67562  103496179  12019.3545
## 2660  76.57188  103257886  12522.6611
## 2661  76.96981  102994278  12940.1793
## 2662  76.94744  102740078  13605.0467
## 2663  76.97682  102538451  14244.0241
## 2664  77.26684  102398494  14844.3166
## 2665  76.14417  102172351  14316.2584
## 2666        NA  101669618  15187.5802
## 2667  38.02000    3001604    565.3522
## 2668  38.27900    3060365    562.2475
## 2669  38.53600    3121226    580.8337
## 2670  38.79500    3183576    560.3499
## 2671  39.05900    3246527    535.6873
## 2672  39.34400    3309583    528.6667
## 2673  39.66500    3372182    509.4767
## 2674  40.02800    3434817    504.0237
## 2675  40.43500    3499370    492.4640
## 2676  40.87800    3568402    516.1695
## 2677  41.34400    3643608    514.9163
## 2678  41.81300    3726189    492.1877
## 2679  42.26400    3815253    486.2241
## 2680  42.68100    3907891    434.9141
## 2681  43.05900    3999918    445.9913
## 2682  43.39600    4088568    475.6348
## 2683  43.69800    4173131    479.8870
## 2684  43.97900    4255242    481.1436
## 2685  44.25100    4337292    469.8248
## 2686  44.52100    4422743    361.9581
## 2687  44.79300    4514427    333.1616
## 2688  45.07100    4612858    329.4529
## 2689  45.35100    4718157    339.3217
## 2690  45.63000    4832316    383.2500
## 2691  45.90300    4957561    381.2218
## 2692  46.16200    5095400    451.7405
## 2693  46.39700    5247281    420.7602
## 2694  46.60100    5412844    398.1466
## 2695  46.77200    5589624    445.2476
## 2696  46.91000    5773930    452.0901
## 2697  47.01900    5963250    419.4465
## 2698  47.10800    6157085    440.9149
## 2699  47.18700    6356741    461.2379
## 2700  47.26500    6563925    376.5068
## 2701  47.34500    6781057    401.3949
## 2702  47.42600    7010159    393.0779
## 2703  47.49800    7250974    388.4388
## 2704  47.55900    7503494    396.5873
## 2705  47.61000    7770053    409.6053
## 2706  47.65700    8053532    392.4890
## 2707  47.71300    8355654    374.9696
## 2708  47.78900    8678049    403.1297
## 2709  47.90000    9019226    420.8159
## 2710  48.05700    9373913    464.5003
## 2711  48.27000    9734761    597.7004
## 2712  48.54900   10096630    676.1621
## 2713  48.90700   10457122    657.0847
## 2714  49.33500   10818031    655.9426
## 2715  49.82000   11183589    653.8712
## 2716  50.34600   11560142    659.2523
## 2717  50.89000   11952134    724.0306
## 2718  51.42400   12360986    700.6627
## 2719  51.92800   12784748    737.6126
## 2720  52.38600   13220433    753.9626
## 2721  52.78900   13663562    779.8466
## 2722  53.13700   14110971    776.0198
## 2723  53.43800   14561658    704.9601
## 2724  53.71200   15016761    663.1647
## 2725  53.97700   15477727    658.6889
## 2726  54.23900   15946882    660.0699
## 2727  54.50500   16425859    630.5691
## 2728        NA   16914985    604.9872
## 2729  70.73900     109419          NA
## 2730  70.83300     110398          NA
## 2731  70.92800     111464          NA
## 2732  71.03000     112591          NA
## 2733  71.14300     113777          NA
## 2734  71.26500     114989          NA
## 2735  71.39100     116229          NA
## 2736  71.51200     117469          NA
## 2737  71.62300     118725          NA
## 2738  71.72600     119975          NA
## 2739  71.82300     121200          NA
## 2740  71.91900     122405          NA
## 2741  72.02000     123611          NA
## 2742  72.13300     124722          NA
## 2743  72.26100     125680          NA
## 2744  72.40900     126420          NA
## 2745  72.58000     126908          NA
## 2746  72.77300     127186          NA
## 2747  72.98300     127395          NA
## 2748  73.20800     127691          NA
## 2749  73.43900     128204          NA
## 2750  73.66800     128986          NA
## 2751  73.89000     129976          NA
## 2752  74.10100     131153          NA
## 2753  74.30000     132445          NA
## 2754  74.48600     133800          NA
## 2755  74.66000     135242          NA
## 2756  74.82900     136762          NA
## 2757  75.00400     138250          NA
## 2758  75.19200     139580          NA
## 2759  75.41000     140677          NA
## 2760  75.67300     141469          NA
## 2761  75.98800     142006          NA
## 2762  76.35100     142407          NA
## 2763  76.75500     142867          NA
## 2764  77.18400     143480          NA
## 2765  77.61600     144348          NA
## 2766  78.02800     145387          NA
## 2767  78.40600     146500          NA
## 2768  78.74200     147553          NA
## 2769  79.03700     148439          NA
## 2770  79.30000     149097          NA
## 2771  79.54800     149591          NA
## 2772  79.79500     150070          NA
## 2773  80.04500     150722          NA
## 2774  80.29800     151674          NA
## 2775  80.55300     152999          NA
## 2776  80.80200     154644          NA
## 2777  81.04100     156441          NA
## 2778  81.26800     158187          NA
## 2779  81.48300     159718          NA
## 2780  81.68800     160990          NA
## 2781  81.88300     162051          NA
## 2782  82.07100     163039          NA
## 2783  82.25200     164107          NA
## 2784  82.42900     165387          NA
## 2785  82.60000     166922          NA
## 2786  82.76600     168666          NA
## 2787  82.92800     170496          NA
## 2788  83.08600     172264          NA
## 2789  83.24000     173859          NA
## 2790        NA     175244          NA
## 2791  57.21900    8132988   3292.8073
## 2792  57.61600    8303804   3394.2354
## 2793  58.03100    8476895   3458.8124
## 2794  58.46700    8650390   3587.3895
## 2795  58.92700    8821855   3607.6180
## 2796  59.41500    8989607   3573.9399
## 2797  59.93100    9152848   3904.6132
## 2798  60.47400    9312091   3976.6180
## 2799  61.04400    9468851   4051.2596
## 2800  61.63700    9625304   4142.3538
## 2801  62.25400    9783134   4150.0658
## 2802  62.89500    9942716   4468.2279
## 2803  63.55500   10103675   4352.1982
## 2804  64.23100   10265827   4068.0283
## 2805  64.91700   10428803   4099.8474
## 2806  65.60900   10592310   3515.3557
## 2807  66.30700   10756876   3594.2432
## 2808  67.00500   10922777   3909.3575
## 2809  67.69800   11089165   4147.2457
## 2810  68.37800   11254877   4430.1707
## 2811  69.03300   11419350   4715.0878
## 2812  69.65500   11582020   4952.2198
## 2813  70.23900   11743909   4346.0202
## 2814  70.78200   11907955   4071.0946
## 2815  71.28200   12078137   4178.4434
## 2816  71.73700   12257238   4282.4924
## 2817  72.14800   12445833   4444.4081
## 2818  72.52400   12642917   4657.7802
## 2819  72.87200   12847712   4920.1999
## 2820  73.19800   13058758   5321.0428
## 2821  73.50900   13274617   5409.0132
## 2822  73.80800   13495255   5735.8185
## 2823  74.10000   13719818   6271.9544
## 2824  74.38600   13944934   6577.2793
## 2825  74.67100   14166346   6800.1593
## 2826  74.95700   14380864   7297.1387
## 2827  75.24400   14587367   7683.2291
## 2828  75.53000   14786227   8140.1835
## 2829  75.81300   14977736   8372.0814
## 2830  76.09200   15162801   8247.2695
## 2831  76.36600   15342350   8555.9776
## 2832  76.63400   15516112   8726.9973
## 2833  76.89400   15684413   8909.8615
## 2834  77.14600   15849649   9233.4216
## 2835  77.39100   16014972   9748.0051
## 2836  77.63000   16182713  10210.0603
## 2837  77.86500   16354507  10714.0290
## 2838  78.09900   16530201  11147.9936
## 2839  78.33000   16708255  11447.1328
## 2840  78.55800   16886184  11199.8802
## 2841  78.77900   17062531  11732.7300
## 2842  78.98600   17233584  12339.2611
## 2843  79.17600   17400359  12973.2383
## 2844  79.34900   17571511  13271.9148
## 2845  79.50400   17758969  13367.2283
## 2846  79.64600   17969356  13495.0106
## 2847  79.77900   18209072  13550.8119
## 2848  79.90900   18470435  13540.4387
## 2849  80.04200   18729166  13886.1906
## 2850  80.18100   18952035  13828.6344
## 2851  80.32900   19116209  12890.2643
## 2852        NA   19212362  14322.2894
## 2853  43.72500  667070000    238.2166
## 2854  44.05100  660330000    175.0234
## 2855  44.78300  665770000    163.9068
## 2856  45.97200  682335000    176.4001
## 2857  47.59200  698355000    203.6875
## 2858  49.54900  715185000    232.6068
## 2859  51.69600  735400000    250.3045
## 2860  53.84700  754550000    229.8759
## 2861  55.84300  774510000    214.7697
## 2862  57.60300  796025000    244.3635
## 2863  59.08500  818315000    283.5849
## 2864  60.30300  841105000    295.3796
## 2865  61.34400  862030000    299.1904
## 2866  62.28100  881940000    315.1291
## 2867  63.13400  900350000    315.8161
## 2868  63.91500  916395000    337.3435
## 2869  64.63100  930685000    326.9489
## 2870  65.27800  943455000    346.9385
## 2871  65.85700  956165000    381.0987
## 2872  66.37700  969005000    404.5959
## 2873  66.84400  981235000    430.8546
## 2874  67.26000  993885000    447.1190
## 2875  67.62700 1008630000    480.3105
## 2876  67.94900 1023310000    524.4084
## 2877  68.23100 1036825000    596.2001
## 2878  68.47300 1051040000    667.1274
## 2879  68.67300 1066790000    716.1041
## 2880  68.83100 1084035000    786.8635
## 2881  68.95400 1101630000    861.1920
## 2882  69.05400 1118650000    883.7626
## 2883  69.14500 1135185000    905.0309
## 2884  69.24200 1150780000    975.4612
## 2885  69.35500 1164970000   1100.6442
## 2886  69.49600 1178440000   1239.1272
## 2887  69.67000 1191835000   1384.9277
## 2888  69.88500 1204855000   1520.0268
## 2889  70.14000 1217550000   1653.4309
## 2890  70.42800 1230075000   1787.7638
## 2891  70.73700 1241935000   1909.6190
## 2892  71.06300 1252735000   2038.2029
## 2893  71.39700 1262645000   2193.8930
## 2894  71.73200 1271850000   2359.5682
## 2895  72.06100 1280400000   2557.8871
## 2896  72.38100 1288400000   2797.1717
## 2897  72.68900 1296075000   3061.8278
## 2898  72.98500 1303720000   3390.7102
## 2899  73.27100 1311020000   3800.7591
## 2900  73.55300 1317885000   4319.0238
## 2901  73.83500 1324655000   4711.6351
## 2902  74.11900 1331260000   5128.8951
## 2903  74.40900 1337705000   5647.0588
## 2904  74.70800 1345035000   6152.6860
## 2905  75.01300 1354190000   6591.6509
## 2906  75.32100 1363240000   7056.4106
## 2907  75.62900 1371860000   7532.7720
## 2908  75.92800 1379860000   8016.4314
## 2909  76.21000 1387790000   8516.5137
## 2910  76.47000 1396215000   9053.2127
## 2911  76.70400 1402760000   9619.1925
## 2912  76.91200 1407745000  10155.4929
## 2913  77.09700 1411100000  10358.2594
## 2914        NA 1412360000  11188.3025
## 2915  57.26900   16057714   1906.0150
## 2916  57.81300   16567817   1941.3458
## 2917  58.32900   17092919   1983.5427
## 2918  58.82500   17629978   1986.3257
## 2919  59.30800   18175187   2045.5620
## 2920  59.78400   18725242   2056.9508
## 2921  60.25700   19279734   2102.4112
## 2922  60.72900   19837508   2127.7850
## 2923  61.20100   20393704   2192.5550
## 2924  61.67500   20942453   2265.3993
## 2925  62.15200   21480064   2345.8116
## 2926  62.62900   22003983   2426.4555
## 2927  63.10500   22516429   2553.0857
## 2928  63.57800   23024512   2664.6018
## 2929  64.04700   23538390   2756.1887
## 2930  64.51800   24065502   2758.4501
## 2931  64.99400   24608102   2825.1810
## 2932  65.47700   25164544   2877.5976
## 2933  65.96400   25733669   3052.2961
## 2934  66.45100   26312996   3145.6662
## 2935  66.92600   26900508   3202.7307
## 2936  67.38000   27496608   3204.6398
## 2937  67.80200   28101824   3165.3619
## 2938  68.18700   28714183   3146.6162
## 2939  68.52900   29331230   3183.6354
## 2940  68.82300   29951194   3214.6082
## 2941  69.06500   30572479   3332.6985
## 2942  69.26600   31195417   3441.5055
## 2943  69.43600   31822527   3510.7979
## 2944  69.59100   32457497   3559.6329
## 2945  69.75000   33102569   3639.7192
## 2946  69.93600   33758328   3640.4550
## 2947  70.16100   34422568   3714.6188
## 2948  70.43300   35091272   3840.0678
## 2949  70.75200   35758978   3987.4822
## 2950  71.11200   36421438   4118.6280
## 2951  71.49700   37076387   4129.0503
## 2952  71.88700   37723803   4197.3953
## 2953  72.26400   38364307   4150.8353
## 2954  72.61900   38999468   3911.5734
## 2955  72.94500   39629965   3961.9297
## 2956  73.24100   40255956   3965.7641
## 2957  73.51700   40875363   4003.4658
## 2958  73.77700   41483872   4099.3064
## 2959  74.02600   42075953   4257.1627
## 2960  74.26500   42647731   4402.8991
## 2961  74.50000   43200901   4638.4719
## 2962  74.73200   43737512   4890.2776
## 2963  74.96200   44254972   4991.7892
## 2964  75.19300   44750054   4992.8232
## 2965  75.42400   45222699   5162.7056
## 2966  75.65500   45662747   5468.1955
## 2967  75.88200   46075721   5631.2174
## 2968  76.10500   46495492   5866.8738
## 2969  76.32200   46967706   6069.1868
## 2970  76.53100   47520667   6175.8760
## 2971  76.73200   48175048   6219.1497
## 2972  76.92500   48909844   6208.9870
## 2973  77.10900   49661056   6271.8751
## 2974  77.28700   50339443   6384.5358
## 2975  77.46000   50882884   5871.1617
## 2976        NA   51265841   6442.8592
## 2977  41.44700     191122          NA
## 2978  41.84600     194149          NA
## 2979  42.24500     197202          NA
## 2980  42.64400     200371          NA
## 2981  43.04300     203762          NA
## 2982  43.44600     207429          NA
## 2983  43.85800     211477          NA
## 2984  44.28300     215900          NA
## 2985  44.72400     220574          NA
## 2986  45.17900     225324          NA
## 2987  45.64200     230055          NA
## 2988  46.10300     234645          NA
## 2989  46.55700     239229          NA
## 2990  47.00100     244207          NA
## 2991  47.44100     250107          NA
## 2992  47.88700     257285          NA
## 2993  48.35600     265958          NA
## 2994  48.86000     275903          NA
## 2995  49.40600     286628          NA
## 2996  49.99200     297451          NA
## 2997  50.61500     307831   1288.1395
## 2998  51.26500     317617   1296.7028
## 2999  51.92500     326944   1340.1220
## 3000  52.58000     336088   1366.5159
## 3001  53.22100     345455   1384.1077
## 3002  53.84300     355337   1376.2949
## 3003  54.44600     365765   1362.0276
## 3004  55.03300     376647   1344.3388
## 3005  55.60500     387964   1340.1978
## 3006  56.15400     399638   1259.6720
## 3007  56.67700     411598   1285.3384
## 3008  57.16800     423873   1180.7723
## 3009  57.62300     436454   1244.5638
## 3010  58.03800     449270   1245.4062
## 3011  58.40700     462280   1146.4887
## 3012  58.72200     475394   1155.1110
## 3013  58.97200     488625   1109.3164
## 3014  59.16000     501955   1123.3771
## 3015  59.29400     515382   1108.1425
## 3016  59.38800     528853   1100.6977
## 3017  59.46000     542358   1189.7190
## 3018  59.52900     555895   1187.8264
## 3019  59.61700     569480   1186.4482
## 3020  59.73800     583213   1182.8843
## 3021  59.90400     597230   1177.2964
## 3022  60.12600     611625   1182.2081
## 3023  60.40700     626427   1184.8265
## 3024  60.73400     641624   1166.0182
## 3025  61.09400     657227   1183.4668
## 3026  61.47500     673251   1192.7394
## 3027  61.86200     689696   1208.2845
## 3028  62.24000     706578   1228.2846
## 3029  62.59500     723865   1236.9389
## 3030  62.92200     741511   1261.4331
## 3031  63.21400     759390   1257.6825
## 3032  63.47100     777435   1242.5856
## 3033  63.70000     795597   1254.5372
## 3034  63.91200     813890   1273.1344
## 3035  64.11800     832322   1290.2869
## 3036  64.32100     850891   1284.3523
## 3037  64.52500     869595   1253.0445
## 3038        NA     888456   1255.2382
## 3039  41.09800   15248256   1257.0627
## 3040  41.31200   15637700   1092.7452
## 3041  41.52900   16041187   1291.1015
## 3042  41.75500   16461828   1323.7084
## 3043  41.99500   16903830   1257.6392
## 3044  42.25700   17369882   1236.1019
## 3045  42.54900   17862052   1283.4867
## 3046  42.86800   18378620   1235.1155
## 3047  43.20800   18913874   1252.1617
## 3048  43.56300   19459818   1330.5673
## 3049  43.91500   20011033   1290.7453
## 3050  44.24700   20564062   1331.4583
## 3051  44.54500   21121360   1298.2863
## 3052  44.80400   21690448   1367.0968
## 3053  45.02600   22282127   1372.4566
## 3054  45.22200   22903587   1268.7012
## 3055  45.41000   23560470   1167.8514
## 3056  45.60900   24249127   1143.3179
## 3057  45.83300   24956387   1051.5347
## 3058  46.08600   25663598   1026.9555
## 3059  46.36300   26358905   1021.8122
## 3060  46.65100   27040329   1019.4749
## 3061  46.93700   27717293    990.0235
## 3062  47.20800   28403858    979.7314
## 3063  47.46100   29119663   1008.6013
## 3064  47.70500   29881222    987.4944
## 3065  47.95500   30683877   1007.0263
## 3066  48.22100   31528702   1006.2651
## 3067  48.50200   32443784    982.4830
## 3068  48.78700   33464767    940.4490
## 3069  49.04300   34612023    849.5526
## 3070  49.22500   35908240    749.9266
## 3071  49.31100   37333917    645.5536
## 3072  49.30200   38815835    537.2772
## 3073  49.22000   40252973    497.8893
## 3074  49.11100   41576239    485.4171
## 3075  49.04000   42757239    467.1799
## 3076  49.06600   43827191    430.1735
## 3077  49.23300   44849968    413.5363
## 3078  49.55700   45919615    386.6562
## 3079  50.04100   47105830    350.8708
## 3080  50.66700   48428534    334.1200
## 3081  51.38500   49871670    334.0157
## 3082  52.14400   51425583    341.9907
## 3083  52.91700   53068869    353.7319
## 3084  53.67500   54785894    363.6675
## 3085  54.40100   56578046    370.8858
## 3086  55.09100   58453687    381.4556
## 3087  55.74300   60411195    392.0747
## 3088  56.35000   62448572    390.1121
## 3089  56.90900   64563853    404.1516
## 3090  57.42700   66755151    417.7570
## 3091  57.91400   69020749    432.6784
## 3092  58.38100   71358804    453.9989
## 3093  58.82800   73767445    480.7662
## 3094  59.25400   76244532    497.3170
## 3095  59.65500   78789130    492.8028
## 3096  60.02600   81398765    494.7812
## 3097  60.36800   84068092    506.9583
## 3098  60.68100   86790568    512.5863
## 3099  60.97100   89561404    505.3483
## 3100        NA   92377986    517.9268
## 3101  45.72100    1018254   1231.5779
## 3102  46.33800    1043119   1302.6147
## 3103  46.92800    1069236   1336.9081
## 3104  47.48600    1096638   1250.9804
## 3105  48.01600    1125354   1265.5877
## 3106  48.51700    1155389   1278.0074
## 3107  48.99300    1186782   1261.1098
## 3108  49.44800    1219547   1253.1996
## 3109  49.88700    1253761   1312.0269
## 3110  50.31300    1289519   1371.9371
## 3111  50.72500    1326894   1418.0704
## 3112  51.12600    1365891   1484.3882
## 3113  51.51400    1406510   1565.7439
## 3114  51.88800    1448632   1645.3485
## 3115  52.24900    1492055   1723.4326
## 3116  52.60000    1536658   1802.7895
## 3117  52.94400    1582361   1766.7615
## 3118  53.28200    1629218   1562.3124
## 3119  53.61100    1677326   1614.0126
## 3120  53.92700    1726865   1721.5540
## 3121  54.22600    1777932   1967.0091
## 3122  54.50600    1830629   2246.9910
## 3123  54.76000    1884873   2697.3044
## 3124  54.97800    1940454   2773.4212
## 3125  55.15000    1996994   2882.8982
## 3126  55.26000    2054308   2769.2392
## 3127  55.29400    2112359   2508.3459
## 3128  55.24700    2171319   2444.8555
## 3129  55.11900    2231462   2420.9798
## 3130  54.91700    2293161   2417.0907
## 3131  54.63800    2356740   2375.4025
## 3132  54.28100    2422312   2366.4597
## 3133  53.86700    2489945   2362.3126
## 3134  53.42400    2559880   2275.2642
## 3135  52.98400    2632345   2091.0877
## 3136  52.58300    2707532   2114.0415
## 3137  52.25200    2785815   2142.7895
## 3138  52.01600    2867283   2068.8985
## 3139  51.89900    2951651   2084.8785
## 3140  51.92500    3038432   1973.0339
## 3141  52.12300    3127420   2062.1164
## 3142  52.51700    3217930   2080.3242
## 3143  53.09100    3310376   2114.8847
## 3144  53.81700    3406915   2071.6692
## 3145  54.66700    3510468   2080.4581
## 3146  55.60000    3622775   2172.3166
## 3147  56.57300    3745143   2269.1567
## 3148  57.54100    3876123   2047.4681
## 3149  58.46600    4011487   2103.1421
## 3150  59.32100    4145400   2272.0445
## 3151  60.09300    4273738   2422.6831
## 3152  60.78500    4394842   2407.8936
## 3153  61.42300    4510197   2579.6990
## 3154  62.02200    4622757   2498.9545
## 3155  62.58200    4736965   2602.5048
## 3156  63.09700    4856093   2448.5238
## 3157  63.55600    4980996   2129.7155
## 3158  63.95400    5110701   1984.6985
## 3159  64.29000    5244363   1841.1739
## 3160  64.57000    5380504   1793.0281
## 3161  64.80400    5518092   1639.2374
## 3162        NA    5657017   1543.0167
## 3163  60.38100    1330787   3600.4830
## 3164  61.01800    1381187   3534.2941
## 3165  61.63800    1433346   3591.0329
## 3166  62.23600    1486555   3701.3723
## 3167  62.80700    1539942   3703.7921
## 3168  63.34800    1592834   3874.0898
## 3169  63.86200    1645076   4012.4854
## 3170  64.35800    1696742   4110.1119
## 3171  64.84700    1747690   4328.4053
## 3172  65.33900    1797891   4438.6170
## 3173  65.84400    1847394   4643.7906
## 3174  66.37800    1896074   4831.2633
## 3175  66.94300    1944170   5097.0733
## 3176  67.54100    1992522   5356.7780
## 3177  68.17000    2042242   5516.1596
## 3178  68.82500    2094186   5492.3072
## 3179  69.50100    2148681   5648.3667
## 3180  70.18200    2205618   5992.5305
## 3181  70.85300    2264942   6201.3279
## 3182  71.50100    2326460   6335.5398
## 3183  72.11300    2389973   6213.5450
## 3184  72.67800    2455593   5910.7288
## 3185  73.19300    2523358   5332.9300
## 3186  73.65700    2593015   5338.2497
## 3187  74.07000    2664220   5612.4763
## 3188  74.42900    2736719   5503.2218
## 3189  74.73800    2810245   5655.9388
## 3190  75.00600    2884856   5772.1689
## 3191  75.24300    2960932   5816.8823
## 3192  75.45600    3039015   5988.5411
## 3193  75.65400    3119436   6041.4439
## 3194  75.84400    3202083   6018.8573
## 3195  76.02800    3286525   6403.7847
## 3196  76.21100    3372298   6683.8362
## 3197  76.39400    3458829   6811.1119
## 3198  76.57900    3545524   6920.5790
## 3199  76.76500    3632361   6846.3576
## 3200  76.94800    3718952   7053.1374
## 3201  77.12400    3803893   7389.0451
## 3202  77.29300    3885428   7538.8863
## 3203  77.45200    3962369   7678.4916
## 3204  77.60100    4034074   7805.3119
## 3205  77.74000    4100922   7940.4302
## 3206  77.87100    4164053   8157.6512
## 3207  77.99600    4225156   8395.4011
## 3208  78.11700    4285504   8606.3337
## 3209  78.23900    4345421   9109.5303
## 3210  78.36200    4404626   9725.3849
## 3211  78.49100    4463123  10052.6829
## 3212  78.62600    4520739   9837.8766
## 3213  78.76900    4577371  10236.9803
## 3214  78.91900    4633086  10559.2060
## 3215  79.07400    4688003  10945.0350
## 3216  79.23400    4742111  11090.0884
## 3217  79.39800    4795390  11355.3311
## 3218  79.56500    4847805  11642.7781
## 3219  79.73800    4899336  12004.6713
## 3220  79.91400    4949955  12375.9237
## 3221  80.09500    4999443  12573.9558
## 3222  80.27900    5047561  12755.1684
## 3223  80.46500    5094114  12126.6259
## 3224        NA    5139053  12931.6913
## 3225  36.09500    3503559   1567.7618
## 3226  36.94800    3631547   1662.7393
## 3227  37.78000    3770756   1621.0027
## 3228  38.58300    3918630   1785.8576
## 3229  39.35800    4071411   2021.5840
## 3230  40.11500    4226843   1886.6925
## 3231  40.87300    4383723   2029.7858
## 3232  41.64700    4544168   2048.1556
## 3233  42.44900    4713134   2222.5231
## 3234  43.27600    4897470   2342.9009
## 3235  44.12300    5102070   2482.2764
## 3236  44.97900    5328735   2601.4443
## 3237  45.82400    5576026   2591.3985
## 3238  46.64000    5841513   2620.5372
## 3239  47.41800    6121295   2608.9795
## 3240  48.14700    6412409   2696.0767
## 3241  48.82500    6713949   2907.5851
## 3242  49.45600    7026497   2981.4659
## 3243  50.04100    7350269   3161.0695
## 3244  50.57900    7685927   3095.4035
## 3245  51.07200    8033652   2636.9196
## 3246  51.52500    8393689   2612.1582
## 3247  51.94000    8764991   2506.5257
## 3248  52.31400    9144940   2308.6871
## 3249  52.64500    9530103   2155.5373
## 3250  52.92200    9918204   2164.4197
## 3251  53.13900   10307268   2150.6034
## 3252  53.28600   10698188   2064.7879
## 3253  53.35700   11094740   2013.6148
## 3254  53.35000   11502453   1999.4981
## 3255  53.25400   11924873   1907.5326
## 3256  53.06200   12362404   1840.7741
## 3257  52.77900   12812428   1771.7750
## 3258  52.42300   13271638   1707.1777
## 3259  52.01300   13735438   1662.9131
## 3260  51.56900   14199759   1723.1574
## 3261  51.10900   14665125   1797.4387
## 3262  50.65700   15130674   1910.2299
## 3263  50.24200   15589407   1933.0732
## 3264  49.89100   16032573   1901.5727
## 3265  49.63500   16454660   1847.8700
## 3266  49.49500   16853027   1765.3281
## 3267  49.47500   17231539   1679.4065
## 3268  49.57200   17599613   1566.5772
## 3269  49.78800   17970493   1583.1120
## 3270  50.12000   18354513   1565.4285
## 3271  50.56100   18754914   1575.1428
## 3272  51.09100   19171250   1557.9083
## 3273  51.68200   19605568   1596.2552
## 3274  52.31300   20059147   1616.3782
## 3275  52.96400   20532944   1687.2165
## 3276  53.62000   21028652   1558.9687
## 3277  54.27100   21547188   1637.3928
## 3278  54.90600   22087506   1769.2149
## 3279  55.50800   22647672   1887.1649
## 3280  56.06500   23226148   1972.5457
## 3281  56.56700   23822726   2061.2152
## 3282  57.01700   24437475   2157.2452
## 3283  57.42200   25069226   2247.7766
## 3284  57.78300   25716554   2327.7454
## 3285  58.10400   26378275   2313.7934
## 3286        NA   27053629   2414.4403
## 3287  64.60866    4140181          NA
## 3288  65.01551    4167292          NA
## 3289  65.40824    4196712          NA
## 3290  65.78788    4225675          NA
## 3291  66.15444    4252876          NA
## 3292  66.51205    4280923          NA
## 3293  66.86278    4310701          NA
## 3294  67.20873    4338683          NA
## 3295  67.54893    4365628          NA
## 3296  67.88137    4391490          NA
## 3297  68.20049    4412252          NA
## 3298  68.50163    4431275          NA
## 3299  68.77873    4450564          NA
## 3300  69.02924    4470161          NA
## 3301  69.25271    4490660          NA
## 3302  70.00195    4512082          NA
## 3303  70.45537    4535934          NA
## 3304  70.74439    4559571          NA
## 3305  70.53878    4581085          NA
## 3306  70.42732    4594778          NA
## 3307  70.17537    4599782          NA
## 3308  70.34439    4611509          NA
## 3309  70.48268    4634234          NA
## 3310  70.27488    4658254          NA
## 3311  70.21854    4680285          NA
## 3312  70.88610    4701417          NA
## 3313  71.41902    4721446          NA
## 3314  71.47024    4739745          NA
## 3315  71.48829    4755207          NA
## 3316  71.84463    4767260          NA
## 3317  72.17049    4777368          NA
## 3318  72.18537    4689022          NA
## 3319  71.24146    4575818          NA
## 3320  71.52244    4600463          NA
## 3321  71.80341    4652024          NA
## 3322  72.08439    4620030   7263.5709
## 3323  72.36537    4557097   7803.9220
## 3324  72.49512    4534920   8322.9639
## 3325  72.31707    4532135   8511.7819
## 3326  72.64195    4512597   8473.7105
## 3327  72.80780    4468302   8805.5004
## 3328  74.51293    4299642   9428.4107
## 3329  74.71732    4302174   9962.0449
## 3330  74.61390    4303399  10509.5497
## 3331  75.52024    4304600  10942.5724
## 3332  75.24463    4310145  11399.7753
## 3333  75.83683    4311159  11959.9232
## 3334  75.70561    4310217  12550.2339
## 3335  75.91220    4309705  12789.6358
## 3336  76.16829    4305181  11870.7940
## 3337  76.47561    4295427  11748.9448
## 3338  76.77561    4280622  11779.5300
## 3339  76.92439    4267558  11546.7017
## 3340  77.12683    4255689  11536.8602
## 3341  77.47805    4238389  11543.8763
## 3342  77.27561    4203604  11933.3774
## 3343  78.02195    4174349  12441.5025
## 3344  77.82683    4124531  13021.6717
## 3345  78.07073    4087843  13519.5588
## 3346  78.42439    4065253  14068.0445
## 3347  77.72439    4047680  12984.6959
## 3348        NA    3899000  14888.3306
## 3349  63.83400    7141241          NA
## 3350  64.44600    7291201          NA
## 3351  65.06600    7453535          NA
## 3352  65.69500    7623300          NA
## 3353  66.32700    7793258          NA
## 3354  66.95600    7958171          NA
## 3355  67.57300    8115487          NA
## 3356  68.17100    8266373          NA
## 3357  68.74400    8413549          NA
## 3358  69.29000    8561391          NA
## 3359  69.80900    8712535   2653.7340
## 3360  70.30600    8868087   2830.9829
## 3361  70.78700    9025347   2915.9169
## 3362  71.25500    9178809   2965.6377
## 3363  71.70700    9320943   2949.1662
## 3364  72.13800    9446441   3185.7486
## 3365  72.54300    9554186   3320.7932
## 3366  72.91500    9646142   3575.6037
## 3367  73.24900    9724044   3780.9159
## 3368  73.54300    9790850   3795.9801
## 3369  73.79400    9849457   3590.4044
## 3370  74.00400    9898891   4275.8350
## 3371  74.17500    9940314   4637.7569
## 3372  74.31500    9981303   4868.6518
## 3373  74.42700   10031651   5228.3491
## 3374  74.51100   10097910   5276.9744
## 3375  74.56600   10183894   5237.4069
## 3376  74.59500   10286645   5060.5367
## 3377  74.60700   10397519   5192.0942
## 3378  74.61500   10503967   5174.4299
## 3379  74.63800   10596986   4977.7772
## 3380  74.69600   10673534   4413.6364
## 3381  74.80100   10736386   3879.6650
## 3382  74.95700   10789312   3286.2416
## 3383  75.16400   10838461   3294.7927
## 3384  75.41200   10888246   3360.3172
## 3385  75.68600   10939285   3606.8170
## 3386  75.96400   10989730   3690.1933
## 3387  76.23000   11038706   3679.6675
## 3388  76.47500   11084673   3891.1896
## 3389  76.69900   11126423   4105.8795
## 3390  76.90500   11164676   4222.1371
## 3391  77.10500   11199664   4268.9171
## 3392  77.30300   11229185   4419.1776
## 3393  77.49900   11250369   4665.3866
## 3394  77.68800   11261586   5182.8197
## 3395  77.86400   11261241   5808.3496
## 3396  78.01900   11251117   6235.7659
## 3397  78.15000   11236975   6500.6526
## 3398  78.25600   11226711   6601.0264
## 3399  78.33800   11225833   6759.3428
## 3400  78.40000   11236671   6942.0577
## 3401  78.44600   11257112   7138.3682
## 3402  78.48500   11282722   7317.8540
## 3403  78.52100   11306909   7378.6963
## 3404  78.56100   11324777   7694.0146
## 3405  78.60700   11335108   7726.4950
## 3406  78.66200   11339255   7863.3947
## 3407  78.72600   11338146   8040.9880
## 3408  78.80200   11333484   8031.0354
## 3409  78.89200   11326616   7156.1068
## 3410        NA   11317498          NA
## 3411        NA     124826          NA
## 3412        NA     126125          NA
## 3413        NA     128414          NA
## 3414        NA     130860          NA
## 3415        NA     133148          NA
## 3416        NA     135266          NA
## 3417        NA     136682          NA
## 3418        NA     138140          NA
## 3419        NA     140298          NA
## 3420        NA     142581          NA
## 3421        NA     144739          NA
## 3422        NA     147389          NA
## 3423        NA     147710          NA
## 3424        NA     146912          NA
## 3425        NA     148351          NA
## 3426        NA     149129          NA
## 3427        NA     149399          NA
## 3428        NA     149459          NA
## 3429        NA     148341          NA
## 3430        NA     147851          NA
## 3431        NA     148041          NA
## 3432        NA     148629          NA
## 3433        NA     150101          NA
## 3434        NA     151159          NA
## 3435        NA     151940          NA
## 3436        NA     152711          NA
## 3437        NA     152662          NA
## 3438        NA     151456          NA
## 3439        NA     149254          NA
## 3440        NA     146937          NA
## 3441        NA     145400          NA
## 3442        NA     144403          NA
## 3443        NA     143912          NA
## 3444        NA     144299          NA
## 3445        NA     144630          NA
## 3446        NA     145139          NA
## 3447        NA     146306          NA
## 3448        NA     146956          NA
## 3449        NA     144472          NA
## 3450        NA     139428          NA
## 3451        NA     133860  21523.6459
## 3452        NA     129047  22171.0657
## 3453        NA     129205  22231.8795
## 3454        NA     131897  21840.8911
## 3455        NA     134192  21512.1115
## 3456        NA     137658  21112.3220
## 3457  74.70976     141239  20913.6631
## 3458  75.36341     144056  21011.1569
## 3459  75.30976     145880  21202.4307
## 3460  76.15610     146833  20952.8997
## 3461        NA     148703  20706.4372
## 3462  77.47317     150831  20539.3601
## 3463  77.52439     152088  20356.1818
## 3464  77.82683     153822  19963.3453
## 3465  77.97561     155909  19459.4944
## 3466  78.07561     157980  19260.2698
## 3467  77.71951     159664  18890.7588
## 3468  78.01707     160175  18504.3057
## 3469        NA     159336  18198.6641
## 3470        NA     157441  17796.6996
## 3471        NA     154947  14748.8955
## 3472        NA     152369          NA
## 3473  69.61800     572933          NA
## 3474  69.94900     576402          NA
## 3475  70.27200     577696          NA
## 3476  70.58700     577918          NA
## 3477  70.89500     578628          NA
## 3478  71.19700     580972          NA
## 3479  71.49100     585313          NA
## 3480  71.77600     591301          NA
## 3481  72.05200     598495          NA
## 3482  72.31800     606121          NA
## 3483  72.57600     613618          NA
## 3484  72.82500     620860          NA
## 3485  73.06700     628002          NA
## 3486  73.30200     635105          NA
## 3487  73.53000     642322          NA
## 3488  73.75300     649753   6172.8872
## 3489  73.97100     657524   7484.3091
## 3490  74.18300     665521   8707.8418
## 3491  74.39000     673253   9350.3369
## 3492  74.59200     680010  10196.9492
## 3493  74.79000     685408  10667.0938
## 3494  74.98300     689170  10755.5059
## 3495  75.17300     691716  11269.0283
## 3496  75.35800     694076  11800.3682
## 3497  75.54000     697715  12668.6104
## 3498  75.71800     703694  13126.6104
## 3499  75.89300     712335  13457.5859
## 3500  76.06400     723384  14252.5625
## 3501  76.23100     736476  15321.6162
## 3502  76.39400     751043  16305.1885
## 3503  76.55400     766616  17143.2715
## 3504  76.71200     783121  16828.7363
## 3505  76.86600     800610  17927.2871
## 3506  77.01700     818750  17622.0527
## 3507  77.16600     837104  18279.7441
## 3508  77.31200     855391  19452.4883
## 3509  77.45600     873426  19383.9395
## 3510  77.59800     891190  19615.8145
## 3511  77.73800     908710  20560.8555
## 3512  77.87500     926049  21348.2539
## 3513  78.00900     943288  22382.3965
## 3514  78.13900     960274  23017.6367
## 3515  78.26400     976968  23602.5312
## 3516  78.38500     993562  23929.0996
## 3517  78.50600    1010410  24797.9199
## 3518  78.63000    1027657  25629.5840
## 3519  78.76400    1045508  26393.6777
## 3520  78.91000    1063708  27154.9004
## 3521  79.07100    1081568  27447.2402
## 3522  79.24500    1098089  26181.7441
## 3523  79.43000    1112617  26019.7637
## 3524  79.62100    1124837  25466.1074
## 3525  79.81200    1135046  24216.5293
## 3526  79.99900    1143866  22682.2656
## 3527  80.17800    1152297  22513.7793
## 3528  80.35000    1160987  23408.3359
## 3529  80.51300    1170189  24805.2031
## 3530  80.67200    1179685  26013.8320
## 3531  80.82800    1189262  27161.4043
## 3532  80.98200    1198574  28211.0645
## 3533  81.13500    1207361  26502.8477
## 3534        NA    1215588  27714.7461
## 3535  70.34878    9602006          NA
## 3536  70.51268    9586651          NA
## 3537  69.78683    9624660          NA
## 3538  70.30439    9670685          NA
## 3539  70.45951    9727804          NA
## 3540  70.16317    9779358          NA
## 3541  70.38488    9821040          NA
## 3542  70.26415    9852899          NA
## 3543  69.84073    9876346          NA
## 3544  69.36707    9896580          NA
## 3545  69.44024    9858071          NA
## 3546  69.67707    9826815          NA
## 3547  70.17659    9867632          NA
## 3548  70.02268    9922266          NA
## 3549  70.08659    9988459          NA
## 3550  70.41463   10058620          NA
## 3551  70.53268   10125939          NA
## 3552  70.57341   10186755          NA
## 3553  70.64390   10242098          NA
## 3554  70.74951   10292341          NA
## 3555  70.27805   10304193          NA
## 3556  70.72220   10300591          NA
## 3557  70.80780   10314826          NA
## 3558  70.59146   10323856          NA
## 3559  70.83756   10330213          NA
## 3560  71.04634   10337118          NA
## 3561  70.99732   10342227          NA
## 3562  71.44561   10347318          NA
## 3563  71.64146   10355276          NA
## 3564  71.67561   10361068          NA
## 3565  71.38390   10333355  11626.6259
## 3566  71.89829   10308578  10300.8992
## 3567  72.27171   10319123  10238.2477
## 3568  72.76780   10329855  10233.9422
## 3569  72.97268   10333587  10527.8757
## 3570  73.07488   10327253  11219.1501
## 3571  73.71463   10315241  11711.3154
## 3572  73.82488   10304131  11663.1738
## 3573  74.51463   10294373  11632.6029
## 3574  74.66829   10283860  11805.6718
## 3575  74.96829   10255063  12312.4978
## 3576  75.17317   10216605  12734.9220
## 3577  75.22195   10196916  12959.8175
## 3578  75.17073   10193998  13428.0996
## 3579  75.72195   10197101  14070.2805
## 3580  75.92439   10211216  14978.4132
## 3581  76.52439   10238905  15948.7453
## 3582  76.72439   10298828  16739.1787
## 3583  76.97561   10384603  17046.8850
## 3584  77.07805   10443936  16160.6206
## 3585  77.42439   10474410  16505.9537
## 3586  77.87317   10496088  16761.8273
## 3587  78.07561   10510785  16606.9925
## 3588  78.17561   10514272  16593.8642
## 3589  78.82439   10525347  16951.3791
## 3590  78.57805   10546059  17829.6983
## 3591  79.02683   10566332  18247.0117
## 3592  78.97805   10594438  19139.2399
## 3593  79.02927   10629928  19685.4945
## 3594  79.22927   10671870  20202.1516
## 3595  78.22683   10697858  18984.6373
## 3596        NA   10703446  19608.9851
## 3597  72.17659    4579603  18107.3759
## 3598  72.43829    4611687  19128.4044
## 3599  72.31976    4647727  20055.6437
## 3600  72.40049    4684483  20025.0368
## 3601  72.48512    4722072  21707.1637
## 3602  72.37073    4759012  22519.8115
## 3603  72.44415    4797381  22952.0113
## 3604  72.92220    4835354  24031.1274
## 3605  73.12146    4864883  25211.6295
## 3606  73.22098    4891860  26704.6332
## 3607  73.34341    4928757  26927.9590
## 3608  73.41463    4963126  27545.0669
## 3609  73.43902    4991596  28464.1398
## 3610  73.68220    5021861  29450.5971
## 3611  73.80829    5045297  28984.7792
## 3612  74.07512    5059862  28480.3555
## 3613  73.73976    5072596  30091.9728
## 3614  74.63244    5088419  30559.4559
## 3615  74.39293    5104248  31142.9246
## 3616  74.21927    5116801  32268.5203
## 3617  74.10171    5123027  32073.6413
## 3618  74.23049    5121572  31869.0422
## 3619  74.55122    5117810  33067.5698
## 3620  74.42049    5114297  33949.3314
## 3621  74.56220    5111619  35382.2346
## 3622  74.42756    5113691  36783.9410
## 3623  74.57976    5120534  38536.3229
## 3624  74.69122    5127024  38585.4029
## 3625  74.77171    5129516  38561.4119
## 3626  74.79976    5132594  38786.9310
## 3627  74.80537    5140939  39295.2434
## 3628  75.15780    5154298  39739.6099
## 3629  75.19415    5171370  40383.5588
## 3630  75.11683    5188628  40253.5399
## 3631  75.37512    5206180  42257.0983
## 3632  75.21268    5233373  43310.2501
## 3633  75.59146    5263074  44314.7905
## 3634  75.94512    5284991  45570.0798
## 3635  76.13902    5304219  46412.0390
## 3636  76.34146    5321799  47622.4391
## 3637  76.59268    5339616  49241.9280
## 3638  76.79268    5358783  49469.6888
## 3639  76.89512    5375931  49541.8556
## 3640  77.14390    5390574  49599.9970
## 3641  77.49268    5404523  50792.0010
## 3642  77.84390    5419432  51835.8327
## 3643  78.09512    5437272  53687.4415
## 3644  78.19512    5461438  53935.8702
## 3645  78.44634    5493621  53345.3576
## 3646  78.59756    5523095  50457.2325
## 3647  79.10000    5547683  51173.4662
## 3648  79.80000    5570572  51644.4635
## 3649  80.05122    5591572  51567.0402
## 3650  80.30000    5614932  51831.7979
## 3651  80.70000    5643475  52404.7640
## 3652  80.70244    5683483  53254.8564
## 3653  80.85366    5728010  54556.0690
## 3654  81.10244    5764980  55735.7649
## 3655  80.95366    5793636  56563.4885
## 3656  81.45122    5814422  57553.1312
## 3657  81.55122    5831404  56202.1659
## 3658        NA    5856733  58585.5077
## 3659  44.03800      83634          NA
## 3660  44.46900      88503          NA
## 3661  44.89200      94203          NA
## 3662  45.30900     100618          NA
## 3663  45.72700     107582          NA
## 3664  46.16600     114976          NA
## 3665  46.65400     122876          NA
## 3666  47.20300     131405          NA
## 3667  47.81400     140462          NA
## 3668  48.47600     149889          NA
## 3669  49.16000     159662          NA
## 3670  49.82700     169372          NA
## 3671  50.44200     179237          NA
## 3672  50.98200     190569          NA
## 3673  51.44200     205180          NA
## 3674  51.83200     224177          NA
## 3675  52.17700     248556          NA
## 3676  52.51300     277472          NA
## 3677  52.86500     308008          NA
## 3678  53.24100     336080          NA
## 3679  53.63900     358960          NA
## 3680  54.04900     374934          NA
## 3681  54.45100     385268          NA
## 3682  54.82800     393800          NA
## 3683  55.17400     406018          NA
## 3684  55.48800     425608          NA
## 3685  55.77200     454359          NA
## 3686  56.03200     490337          NA
## 3687  56.27100     528993          NA
## 3688  56.48800     563855          NA
## 3689  56.67800     590393          NA
## 3690  56.83100     606843          NA
## 3691  56.94300     615050          NA
## 3692  57.01700     618504          NA
## 3693  57.05600     622364          NA
## 3694  57.06500     630385          NA
## 3695  57.05000     643649          NA
## 3696  57.02200     660858          NA
## 3697  56.99800     680465          NA
## 3698  56.99200     699973          NA
## 3699  57.02200     717577          NA
## 3700  57.10000     733019          NA
## 3701  57.23500     746947          NA
## 3702  57.42700     759639          NA
## 3703  57.68200     771599          NA
## 3704  57.99100     783248          NA
## 3705  58.34000     794554          NA
## 3706  58.71900     805456          NA
## 3707  59.12400     816361          NA
## 3708  59.56100     827820          NA
## 3709  60.06200     840194          NA
## 3710  60.66700     853671          NA
## 3711  61.39500     868136          NA
## 3712  62.23900     883296   2384.2353
## 3713  63.17100     898707   2508.8272
## 3714  64.13600     913998   2652.5132
## 3715  65.06400     929117   2795.2257
## 3716  65.89300     944100   2901.0098
## 3717  66.58200     958923   2992.5313
## 3718  67.11200     973557   3110.9946
## 3719  67.49000     988002   3102.3587
## 3720        NA    1002197   3190.2247
## 3721        NA      60020          NA
## 3722        NA      61036          NA
## 3723        NA      61978          NA
## 3724        NA      62917          NA
## 3725        NA      63921          NA
## 3726        NA      65044          NA
## 3727        NA      66300          NA
## 3728        NA      67687          NA
## 3729        NA      69034          NA
## 3730        NA      70214          NA
## 3731        NA      71084          NA
## 3732        NA      71569          NA
## 3733        NA      71731          NA
## 3734        NA      71739          NA
## 3735        NA      71814          NA
## 3736        NA      72088          NA
## 3737        NA      72662          NA
## 3738        NA      73443   2879.5613
## 3739        NA      74280   3147.0786
## 3740        NA      74960   2545.9901
## 3741        NA      75318   2873.0034
## 3742        NA      75314   3184.2996
## 3743  71.46341      75012   3329.0866
## 3744        NA      74484   3438.3911
## 3745        NA      73846   3613.6412
## 3746        NA      73207   3696.9791
## 3747        NA      72531   3995.3733
## 3748  71.96341      71842   4288.1184
## 3749        NA      71212   4664.2060
## 3750        NA      70722   4687.5453
## 3751        NA      70422   4962.5668
## 3752        NA      70377   5032.6664
## 3753  73.95122      70546   5122.4995
## 3754        NA      70818   5213.1180
## 3755        NA      71044   5198.3262
## 3756        NA      71105   5351.2856
## 3757        NA      70933   5530.7791
## 3758  75.95122      70592   5678.9621
## 3759        NA      70183   5927.6429
## 3760        NA      69828   5978.8738
## 3761        NA      69650   6134.4300
## 3762        NA      69671   6128.6656
## 3763  76.59756      69840   5940.9362
## 3764        NA      70102   6294.7577
## 3765        NA      70387   6460.5259
## 3766        NA      70580   6485.1160
## 3767        NA      70718   6774.0423
## 3768        NA      70797   7196.3562
## 3769        NA      70829   7705.3301
## 3770        NA      70848   7613.1670
## 3771        NA      70877   7661.2399
## 3772        NA      70912   7640.3402
## 3773        NA      70954   7554.9543
## 3774        NA      71019   7472.5637
## 3775        NA      71091   7819.8656
## 3776        NA      71175   7597.2889
## 3777        NA      71307   7792.7988
## 3778        NA      71460   7261.4134
## 3779        NA      71626   7501.5922
## 3780        NA      71808   7894.3068
## 3781        NA      71991   6566.7291
## 3782        NA      72172   6978.3688
## 3783  51.60200    3294222   1375.4136
## 3784  52.30600    3406282   1299.3952
## 3785  52.99700    3521018   1471.3459
## 3786  53.67500    3638110   1516.5916
## 3787  54.34000    3757123   1567.8966
## 3788  54.99300    3877768   1329.5027
## 3789  55.63500    3999796   1462.4761
## 3790  56.26700    4123100   1465.9490
## 3791  56.88900    4247559   1426.3938
## 3792  57.49800    4373127   1536.3310
## 3793  58.09300    4499722   1765.2520
## 3794  58.67100    4627202   1903.2408
## 3795  59.22900    4755464   2044.3978
## 3796  59.76400    4884460   2247.0845
## 3797  60.27700    5014187   2320.3264
## 3798  60.76400    5144632   2378.9383
## 3799  61.22600    5275767   2475.8867
## 3800  61.66300    5407496   2535.9116
## 3801  62.07900    5539596   2528.4303
## 3802  62.47700    5671801   2581.3974
## 3803  62.86100    5803929   2723.6531
## 3804  63.23400    5935895   2777.0784
## 3805  63.60100    6067769   2762.8719
## 3806  63.96400    6199657   2829.2402
## 3807  64.32600    6331760   2804.9201
## 3808  64.69200    6464229   2689.1246
## 3809  65.06500    6596967   2727.8216
## 3810  65.44300    6729930   2944.4593
## 3811  65.82200    6863438   2949.4301
## 3812  66.20100    6997877   3020.0648
## 3813  66.57400    7133491   2801.0584
## 3814  66.93200    7270413   2774.2546
## 3815  67.27200    7408339   3028.1060
## 3816  67.59100    7546467   3191.6041
## 3817  67.88700    7683707   3216.1089
## 3818  68.16400    7819239   3340.0439
## 3819  68.42500    7952766   3480.2742
## 3820  68.67700    8084407   3727.8002
## 3821  68.92500    8214427   3915.1361
## 3822  69.17500    8343288   4083.6365
## 3823  69.42900    8471317   4209.4119
## 3824  69.69000    8598599   4249.1001
## 3825  69.95700    8724974   4375.7898
## 3826  70.22700    8850317   4255.7662
## 3827  70.49900    8974444   4304.7701
## 3828  70.77100    9097262   4647.0379
## 3829  71.04100    9218681   5006.5524
## 3830  71.30400    9338856   5308.6324
## 3831  71.55900    9458079   5409.9479
## 3832  71.80600    9576736   5393.4703
## 3833  72.04600    9695117   5771.9184
## 3834  72.28400    9813219   5881.1354
## 3835  72.52300    9930916   5969.3528
## 3836  72.76300   10048226   6187.2830
## 3837  73.00300   10165182   6547.3080
## 3838  73.24100   10281675   6921.5206
## 3839  73.47100   10397738   7300.0333
## 3840  73.68900   10513111   7556.8537
## 3841  73.89200   10627147   7997.7611
## 3842  74.08100   10738957   8314.3448
## 3843  74.25700   10847904   7677.7104
## 3844        NA   10953714   8536.6521
## 3845  45.09090  980003345   1067.3196
## 3846  45.74936 1003194972   1088.5022
## 3847  46.34439 1027204700   1099.5948
## 3848  46.87491 1051972834   1124.1889
## 3849  47.45644 1077531237   1185.9062
## 3850  48.02842 1103859981   1221.0010
## 3851  48.64364 1130947721   1239.9694
## 3852  49.18720 1158861175   1276.0585
## 3853  49.71629 1187474694   1326.2487
## 3854  50.23498 1216839339   1378.7520
## 3855  50.74937 1246947673   1461.4032
## 3856  51.26822 1277799456   1510.8980
## 3857  51.79354 1309397210   1576.2415
## 3858  52.33453 1341779503   1651.4931
## 3859  52.88441 1374824941   1719.9641
## 3860  53.44276 1408534717   1719.6648
## 3861  54.00368 1442862522   1799.2986
## 3862  54.55359 1477869964   1828.5755
## 3863  55.08663 1513819992   1807.6229
## 3864  55.59598 1551093148   1835.0765
## 3865  56.07816 1589897378   1853.3282
## 3866  56.53665 1630293423   1876.7097
## 3867  56.97972 1672134835   1825.2071
## 3868  57.41751 1715134126   1787.1850
## 3869  57.85365 1758863284   1780.8448
## 3870  58.29199 1803032659   1750.3815
## 3871  58.73170 1847526576   1758.6606
## 3872  59.17197 1892336352   1763.5420
## 3873  59.60826 1937278919   1783.9717
## 3874  60.04786 1982160339   1784.1833
## 3875  60.49126 2028993568   1837.5154
## 3876  60.92844 2073591177   1881.0694
## 3877  61.36293 2117785781   1915.7841
## 3878  61.79472 2161761687   1940.0199
## 3879  62.21500 2205758867   1966.0446
## 3880  62.61932 2249993925   1973.6866
## 3881  63.00572 2294576653   2049.3308
## 3882  63.37329 2339379359   2105.6435
## 3883  63.72612 2384127937   2114.1347
## 3884  64.06879 2428606122   2118.7942
## 3885  64.40308 2472852816   2172.5720
## 3886  64.73387 2516662185   2156.9841
## 3887  65.06517 2560101448   2158.8911
## 3888  65.40226 2603300762   2238.1810
## 3889  65.74822 2646483605   2339.0860
## 3890  66.10621 2689792006   2437.4497
## 3891  66.48034 2733278857   2542.2330
## 3892  66.86665 2776922505   2646.9301
## 3893  67.26250 2820636607   2697.2668
## 3894  67.66169 2864298814   2678.3504
## 3895  68.05602 2907916947   2810.7522
## 3896  68.43890 2951423688   2905.1760
## 3897  68.80321 2994346938   2984.9513
## 3898  69.14516 3037084158   3064.8153
## 3899  69.46092 3079685581   3148.5040
## 3900  69.74851 3122156833   3244.2370
## 3901  70.01124 3164439749   3344.8749
## 3902  70.25423 3206485623   3450.9777
## 3903  70.48324 3248413593   3535.7600
## 3904  70.70120 3290291029   3573.6698
## 3905  70.91124 3332103561   3374.1530
## 3906        NA 3373866849   3557.4062
## 3907  48.42912 1041673567   1113.1851
## 3908  48.92769 1043656626   1153.0285
## 3909  49.59176 1058119847   1199.7228
## 3910  50.55754 1083884354   1262.6157
## 3911  51.74365 1109291332   1363.9317
## 3912  53.10145 1135760430   1425.3032
## 3913  54.62324 1165660993   1509.2334
## 3914  56.09866 1194423916   1586.5298
## 3915  57.47034 1224481196   1695.1401
## 3916  58.69046 1256501888   1842.2580
## 3917  59.73093 1289442011   1892.0122
## 3918  60.65658 1324084663   1940.3266
## 3919  61.44845 1355934840   2031.7090
## 3920  62.14950 1386816705   2138.6472
## 3921  62.84399 1416257332   2112.1946
## 3922  63.51178 1442992143   2150.1046
## 3923  64.12512 1467572978   2203.9993
## 3924  64.70942 1490458433   2287.9274
## 3925  65.23410 1513242365   2384.0238
## 3926  65.72796 1536454977   2486.9485
## 3927  66.14432 1559219642   2543.5323
## 3928  66.56430 1582802675   2622.7986
## 3929  66.95983 1608709544   2687.7984
## 3930  67.28265 1634587947   2762.4244
## 3931  67.61531 1659196213   2889.2258
## 3932  67.90457 1684377898   3008.3925
## 3933  68.17227 1710979840   3107.4087
## 3934  68.40953 1739049562   3248.6004
## 3935  68.58158 1767394678   3439.7545
## 3936  68.77189 1795112149   3561.1547
## 3937  68.92722 1822134188   3686.3515
## 3938  69.09759 1848265154   3810.5792
## 3939  69.24627 1872676768   3920.3478
## 3940  69.41880 1896190507   4034.5038
## 3941  69.61835 1919576721   4194.2748
## 3942  69.79647 1942464423   4379.8086
## 3943  70.06450 1965146473   4572.7208
## 3944  70.32575 1987315524   4705.1454
## 3945  70.58485 2008705487   4675.8439
## 3946  70.85517 2028650228   4802.7071
## 3947  71.17192 2047640091   5014.7923
## 3948  71.48172 2065912033   5134.7148
## 3949  71.77476 2083186086   5315.2696
## 3950  72.06753 2099602481   5534.6638
## 3951  72.36114 2115458625   5815.5643
## 3952  72.62462 2131146847   6113.5130
## 3953  72.92164 2146744105   6460.9415
## 3954  73.20093 2161785511   6895.2684
## 3955  73.46990 2177119138   7147.2820
## 3956  73.75913 2192059400   7280.4367
## 3957  74.01300 2206884622   7781.9495
## 3958  74.26613 2222577723   8149.9863
## 3959  74.56283 2240312711   8504.5015
## 3960  74.84944 2257904491   8880.8137
## 3961  75.12687 2275075985   9233.1781
## 3962  75.39461 2291503725   9599.4141
## 3963  75.63815 2307707227   9977.1688
## 3964  75.86925 2324120551  10407.4968
## 3965  76.07252 2338485387  10834.3641
## 3966  76.26688 2351127942  11205.0905
## 3967  76.44498 2361517682  11136.1388
## 3968        NA 2368622859  11742.1848
## 3969  45.61324  894885526    322.3129
## 3970  46.05826  894489549    279.0174
## 3971  46.77433  906424232    273.5348
## 3972  47.79881  929645285    283.7353
## 3973  49.13719  952505018    307.1020
## 3974  50.71338  976371564    331.5584
## 3975  52.41280 1003810717    348.5526
## 3976  54.10112 1030352359    334.7462
## 3977  55.65976 1057860301    331.5448
## 3978  57.03299 1087066238    359.4963
## 3979  58.19554 1117174724    396.7616
## 3980  59.16426 1147919427    412.2812
## 3981  60.00716 1176921767    421.8812
## 3982  60.78377 1204968832    446.1242
## 3983  61.51221 1231494202    453.2837
## 3984  62.20308 1255581230    475.0124
## 3985  62.86278 1277799717    480.0057
## 3986  63.48286 1298416025    508.1540
## 3987  64.05795 1318997911    546.5231
## 3988  64.58728 1339887224    576.2294
## 3989  65.06898 1360449290    610.3957
## 3990  65.50486 1381744531    634.6717
## 3991  65.90066 1405401300    664.1789
## 3992  66.25836 1429192105    703.6685
## 3993  66.58140 1451914914    761.5682
## 3994  66.87197 1475353577    808.6919
## 3995  67.12959 1500324330    852.0121
## 3996  67.35459 1526788538    913.7956
## 3997  67.55037 1553562636    985.4827
## 3998  67.72465 1579680966   1024.5830
## 3999  67.88615 1605202723   1060.3670
## 4000  68.04363 1629647064   1128.0978
## 4001  68.20324 1652544138   1236.7281
## 4002  68.37449 1674596506   1358.2479
## 4003  68.56248 1696480853   1487.3003
## 4004  68.77412 1717918821   1613.7750
## 4005  69.01087 1738967370   1738.7325
## 4006  69.27022 1759768570   1844.3674
## 4007  69.54578 1779806863   1876.4088
## 4008  69.83607 1798658267   1975.2396
## 4009  70.13618 1816474904   2105.2096
## 4010  70.44229 1833442370   2231.4093
## 4011  70.74837 1849627169   2390.1567
## 4012  71.05127 1865152550   2582.1805
## 4013  71.34882 1880268773   2795.0580
## 4014  71.64070 1895295259   3049.5236
## 4015  71.92757 1909911027   3361.4158
## 4016  72.21235 1924037330   3753.4062
## 4017  72.49664 1938075970   4047.3586
## 4018  72.78072 1952035667   4339.2302
## 4019  73.06626 1965972280   4735.9544
## 4020  73.35574 1980957952   5106.7086
## 4021  73.64769 1997902548   5446.9461
## 4022  73.93841 2014796921   5795.3349
## 4023  74.22574 2031203532   6150.0344
## 4024  74.50227 2046847689   6511.2581
## 4025  74.76205 2062250022   6888.2504
## 4026  75.00192 2077988679   7294.4321
## 4027  75.21766 2091698238   7719.1446
## 4028  75.40970 2103723076   8118.6307
## 4029  75.58112 2114009483   8183.6461
## 4030        NA 2122086315   8744.9533
## 4031  45.53974  883445587    326.0240
## 4032  45.98405  882807979    282.3088
## 4033  46.70397  894536202    276.7772
## 4034  47.73554  917563058    287.0641
## 4035  49.08235  940205341    310.6786
## 4036  50.66716  963806224    335.4051
## 4037  52.37459  990927362    352.5840
## 4038  54.06985 1017110642    338.6237
## 4039  55.63415 1044230688    335.3963
## 4040  57.01147 1073035646    363.6808
## 4041  58.17646 1102743524    401.3843
## 4042  59.14616 1133088596    417.0856
## 4043  59.98920 1161692236    426.8064
## 4044  60.76572 1189353305    451.3411
## 4045  61.49405 1215519592    458.5901
## 4046  62.18501 1239283626    480.5773
## 4047  62.84515 1261221802    485.6260
## 4048  63.46591 1281596019    514.0937
## 4049  64.04179 1301958170    552.8913
## 4050  64.57197 1322627340    582.9219
## 4051  65.05445 1342952249    617.4722
## 4052  65.49100 1363987476    642.0231
## 4053  65.88737 1387365779    671.8597
## 4054  66.24543 1410865643    711.7987
## 4055  66.56859 1433295157    770.3685
## 4056  66.85864 1456445331    818.0299
## 4057  67.11466 1481135104    861.8277
## 4058  67.33700 1507322673    924.2850
## 4059  67.52947 1533819032    996.7536
## 4060  67.70047 1559650590   1036.2711
## 4061  67.86041 1584871821   1072.4477
## 4062  68.02012 1608998997   1140.9556
## 4063  68.18670 1631566861   1250.8539
## 4064  68.36977 1653289936   1373.8028
## 4065  68.57362 1674861271   1504.3641
## 4066  68.80296 1696013989   1632.3014
## 4067  69.05616 1716810410   1758.6768
## 4068  69.32805 1737388723   1865.4782
## 4069  69.61058 1757224496   1897.8298
## 4070  69.90202 1775880197   1997.7399
## 4071  70.19842 1793498345   2129.1582
## 4072  70.49794 1810261111   2256.7812
## 4073  70.79723 1826238741   2417.3370
## 4074  71.09520 1841560611   2611.5868
## 4075  71.39033 1856486255   2826.9230
## 4076  71.68224 1871341383   3084.2983
## 4077  71.97078 1885806879   3399.7453
## 4078  72.25739 1899800479   3796.1481
## 4079  72.54253 1913718217   4093.3734
## 4080  72.82630 1927560597   4388.4762
## 4081  73.11046 1941377365   4789.6016
## 4082  73.39791 1956238874   5164.4192
## 4083  73.68784 1973056377   5508.3086
## 4084  73.97707 1989821912   5860.4211
## 4085  74.26356 2006100237   6218.8944
## 4086  74.53991 2021618425   6583.9535
## 4087  74.79996 2036897092   6964.9544
## 4088  75.04022 2052513823   7375.4407
## 4089  75.25628 2066103849   7804.6978
## 4090  75.44844 2078012370   8208.5063
## 4091  75.61974 2088186305   8274.1810
## 4092        NA 2096155040   8841.7352
## 4093  52.98200    4543658   2571.3523
## 4094  53.54700    4674176   2627.6393
## 4095  54.09800    4809194   2679.4970
## 4096  54.63500    4948991   2658.6534
## 4097  55.15800    5093848   2774.3803
## 4098  55.66900    5243980   2783.2133
## 4099  56.17400    5399423   2693.9102
## 4100  56.67600    5560013   2736.9940
## 4101  57.18100    5725462   2708.6539
## 4102  57.69000    5895368   2753.4183
## 4103  58.20300    6069375   2858.2670
## 4104  58.71800    6247421   2951.5426
## 4105  59.23200    6429377   3011.9183
## 4106  59.74500    6614840   3335.8742
## 4107  60.25800    6803271   3607.0259
## 4108  60.77400    6994331   3893.4524
## 4109  61.29800    7187794   4068.9123
## 4110  61.83400    7383713   4024.5150
## 4111  62.38200    7582357   4142.7351
## 4112  62.94200    7784074   4186.0630
## 4113  63.51200    7989178   4229.8575
## 4114  64.08900    8197648   4353.6688
## 4115  64.66900    8409396   4270.1380
## 4116  65.24600    8624594   4149.5651
## 4117  65.81400    8843463   4153.1079
## 4118  66.37100    9066100   4210.5312
## 4119  66.91100    9292481   4250.2871
## 4120  67.43600    9522362   4136.9336
## 4121  67.94300    9755576   4275.8965
## 4122  68.43100    9991870   4216.7664
## 4123  68.89900   10230931   4269.7829
## 4124  69.34700   10472476   4350.3063
## 4125  69.77700   10716131   4341.2800
## 4126  70.18900   10961460   4327.8633
## 4127  70.58700   11207999   4412.9021
## 4128  70.97200   11455205   4414.9283
## 4129  71.34800   11703169   4396.2213
## 4130  71.71600   11951457   4491.2009
## 4131  72.07500   12198449   4543.9998
## 4132  72.42500   12442109   4243.8722
## 4133  72.76100   12681123   4209.3450
## 4134  73.07800   12914660   4299.2021
## 4135  73.37100   13143465   4397.4230
## 4136  73.64100   13369678   4440.7298
## 4137  73.88700   13596390   4725.2324
## 4138  74.11200   13825839   4892.6913
## 4139  74.31900   14059379   5023.2911
## 4140  74.51400   14296554   5048.1446
## 4141  74.70500   14535740   5280.7136
## 4142  74.89500   14774412   5224.8383
## 4143  75.08900   15011114   5323.7375
## 4144  75.28900   15243885   5654.9281
## 4145  75.49500   15474099   5885.0999
## 4146  75.70700   15707473   6084.4439
## 4147  75.92300   15951832   6218.2392
## 4148  76.14300   16212022   6124.4909
## 4149  76.36500   16491116   5947.0020
## 4150  76.58400   16785356   5981.1326
## 4151  76.80000   17084359   5952.2181
## 4152  77.01000   17373657   5853.8131
## 4153  77.21600   17643060   5315.5165
## 4154        NA   17888474   5464.6293
## 4155  48.04200   26632891    762.1341
## 4156  48.60900   27366239    779.9913
## 4157  49.13400   28112258    788.7199
## 4158  49.62800   28871383    848.7588
## 4159  50.10100   29644875    921.7362
## 4160  50.54500   30433024    941.9867
## 4161  50.94500   31237597    964.0365
## 4162  51.29200   32056506    946.9741
## 4163  51.59200   32881852    908.3707
## 4164  51.86500   33703127    933.0246
## 4165  52.14600   34513851    962.1166
## 4166  52.47900   35311905    978.5268
## 4167  52.89400   36102670    986.3396
## 4168  53.40800   36896551    998.9621
## 4169  54.02100   37708144    992.6995
## 4170  54.71700   38549133   1057.8457
## 4171  55.46500   39422731   1171.7697
## 4172  56.22200   40329589   1248.5439
## 4173  56.95800   41275728   1325.1887
## 4174  57.65900   42267429   1352.9479
## 4175  58.33200   43309063   1452.5982
## 4176  58.99500   44400113   1521.0253
## 4177  59.67100   45539295   1629.8972
## 4178  60.37200   46728284   1669.3458
## 4179  61.09100   47968643   1784.6640
## 4180  61.80600   49258726   1838.5757
## 4181  62.48700   50602360   1874.6718
## 4182  63.11000   51991696   1894.5079
## 4183  63.66200   53399243   1945.3086
## 4184  64.14300   54788680   1989.2741
## 4185  64.57200   56134478   2051.6123
## 4186  64.97800   57424552   2028.0919
## 4187  65.39200   58666812   2073.9402
## 4188  65.83100   59880656   2090.8404
## 4189  66.29800   61095804   2130.6757
## 4190  66.77900   62334025   2185.3022
## 4191  67.24900   63601632   2248.5942
## 4192  67.68000   64892269   2324.9166
## 4193  68.05100   66200259   2406.0452
## 4194  68.35700   67515591   2501.9819
## 4195  68.60200   68831561   2610.4765
## 4196  68.79600   70152662   2651.8655
## 4197  68.96100   71485044   2664.6420
## 4198  69.11600   72826102   2699.1011
## 4199  69.27100   74172073   2758.5664
## 4200  69.43400   75523576   2830.3501
## 4201  69.60800   76873670   2970.9448
## 4202  69.78800   78232124   3126.2750
## 4203  69.97100   79636081   3290.9407
## 4204  70.15900   81134789   3381.1154
## 4205  70.34900   82761244   3485.2822
## 4206  70.54300   84529251   3472.5983
## 4207  70.73600   86422240   3472.1483
## 4208  70.92800   88404652   3468.4688
## 4209  71.11700   90424668   3489.8641
## 4210  71.30200   92442549   3562.9327
## 4211  71.48200   94447071   3638.8949
## 4212  71.65600   96442590   3712.6037
## 4213  71.82500   98423602   3831.1998
## 4214  71.99000  100388076   3964.9871
## 4215  72.15000  102334403   4028.4209
## 4216        NA  104258327   4085.6249
## 4217  49.95000    2766319          NA
## 4218  50.62100    2846601          NA
## 4219  51.25600    2931187          NA
## 4220  51.84700    3019224          NA
## 4221  52.39100    3109571          NA
## 4222  52.89300    3201310   2635.5589
## 4223  53.36000    3293954   2744.8603
## 4224  53.80300    3387384   2814.2700
## 4225  54.22600    3481624   2826.7175
## 4226  54.62800    3576834   2847.3749
## 4227  54.99800    3673066   2855.3292
## 4228  55.32000    3770060   2889.2006
## 4229  55.58600    3867310   2988.8500
## 4230  55.79300    3964273   3057.4990
## 4231  55.94800    4060255   3144.5130
## 4232  56.05200    4154689   3162.8811
## 4233  56.11000    4247508   3249.9762
## 4234  56.14200    4338451   3397.5813
## 4235  56.17800    4426679   3507.1051
## 4236  56.24800    4511127   3297.5905
## 4237  56.39400    4591135   2726.9905
## 4238  56.65800    4666361   2529.5331
## 4239  57.05800    4737256   2334.4908
## 4240  57.60100    4804936   2337.0306
## 4241  58.28300    4871041   2336.0966
## 4242  59.09700    4936803   2319.1379
## 4243  60.02500    5002339   2293.2103
## 4244  61.02400    5067531   2320.4866
## 4245  62.04400    5133273   2333.7927
## 4246  63.05000    5200608   2325.7837
## 4247  64.00000    5270074   2406.0483
## 4248  64.85800    5342190   2409.0314
## 4249  65.61700    5416327   2542.9032
## 4250  66.27300    5490478   2654.5163
## 4251  66.82400    5561916   2743.3731
## 4252  67.27700    5628602   2839.2052
## 4253  67.65100    5689943   2831.3876
## 4254  67.97800    5746288   2891.6014
## 4255  68.28400    5797764   2941.9404
## 4256  68.58100    5844834   2981.3417
## 4257  68.87500    5887930   2992.9008
## 4258  69.16200    5927001   2999.3239
## 4259  69.43200    5962139   3028.5462
## 4260  69.68000    5994075   3059.5664
## 4261  69.90800    6023801   3071.5458
## 4262  70.12400    6052124   3140.0330
## 4263  70.33300    6079395   3261.7639
## 4264  70.54200    6105810   3308.0496
## 4265  70.75600    6131767   3364.1004
## 4266  70.97800    6157678   3280.0204
## 4267  71.21000    6183877   3334.9328
## 4268  71.44900    6210567   3447.3501
## 4269  71.69200    6237922   3528.8671
## 4270  71.93500    6266076   3591.4271
## 4271  72.17500    6295124   3636.0103
## 4272  72.41200    6325121   3705.5797
## 4273  72.64400    6356137   3781.3786
## 4274  72.87200    6388124   3846.9739
## 4275  73.09600    6420740   3920.5263
## 4276  73.31700    6453550   3993.5291
## 4277  73.53300    6486201   3632.4539
## 4278        NA    6518500   4004.8477
## 4279  36.53500     255338          NA
## 4280  36.87200     258786          NA
## 4281  37.20800     262219          NA
## 4282  37.54200     266005          NA
## 4283  37.87400     270616          NA
## 4284  38.20500     276296          NA
## 4285  38.53600     283506          NA
## 4286  38.86600     291786          NA
## 4287  39.19500     299416          NA
## 4288  39.52500     304000          NA
## 4289  39.84800     303986          NA
## 4290  40.15600     298852          NA
## 4291  40.44800     289508          NA
## 4292  40.73200     277656          NA
## 4293  41.02100     265762          NA
## 4294  41.34400     255808          NA
## 4295  41.73800     247969          NA
## 4296  42.21800     242160          NA
## 4297  42.78800     239681          NA
## 4298  43.43500     241977          NA
## 4299  44.12700     249931    528.4901
## 4300  44.81900     264370    528.4512
## 4301  45.46600     284638    501.6285
## 4302  46.03900     308208    486.4505
## 4303  46.52800     331554    456.7711
## 4304  46.93800     352116    485.6025
## 4305  47.29300     369024    452.5544
## 4306  47.63000     382977    455.4136
## 4307  47.98100     394973    453.3071
## 4308  48.36000     406620    434.9105
## 4309  48.77500     419188    414.4522
## 4310  49.22900     432844    397.2734
## 4311  49.70800     447269    518.0430
## 4312  50.20000     462637    556.0927
## 4313  50.69400     479099    626.4943
## 4314  51.18400     496768    709.8652
## 4315  51.65900     515844   1138.7646
## 4316  52.11200     536459   2737.2146
## 4317  52.53800     558496   3254.2914
## 4318  52.93000     581765   3925.9055
## 4319  53.27900     606180   4454.0382
## 4320  53.58100     631662   6983.4390
## 4321  53.84000     658388   8003.9618
## 4322  54.06400     686670   8745.2691
## 4323  54.26300     716949  11558.6754
## 4324  54.44900     749527  12908.0638
## 4325  54.63800     784494  13282.9425
## 4326  54.84200     821686  14619.7506
## 4327  55.07000     860839  16438.6414
## 4328  55.32900     901589  15906.4965
## 4329  55.62200     943640  13841.3964
## 4330  55.94500     986861  14098.6464
## 4331  56.28800    1031191  14614.1769
## 4332  56.64200    1076412  13421.5657
## 4333  57.00100    1122273  12926.5335
## 4334  57.35900    1168575  11283.3980
## 4335  57.71300    1215181   9894.0063
## 4336  58.06100    1262008   8986.9510
## 4337  58.40200    1308966   8124.1829
## 4338  58.73500    1355982   7412.5812
## 4339  59.05700    1402985   6860.3741
## 4340        NA    1449891   6575.6722
## 4341  38.41900    1007586          NA
## 4342  39.07500    1033320          NA
## 4343  39.69300    1060489          NA
## 4344  40.25900    1088859          NA
## 4345  40.76800    1118152          NA
## 4346  41.22100    1148188          NA
## 4347  41.63000    1178875          NA
## 4348  42.01500    1210304          NA
## 4349  42.39400    1242633          NA
## 4350  42.77300    1276122          NA
## 4351  43.15600    1310947          NA
## 4352  43.54500    1347180          NA
## 4353  43.93400    1384789          NA
## 4354  44.31600    1423749          NA
## 4355  44.69100    1463986          NA
## 4356  45.05400    1505438          NA
## 4357  45.40400    1547978          NA
## 4358  45.73900    1591622          NA
## 4359  46.05900    1636771          NA
## 4360  46.36400    1683932          NA
## 4361  46.65400    1733423          NA
## 4362  46.92700    1784557          NA
## 4363  47.18700    1836825          NA
## 4364  47.44100    1890556          NA
## 4365  47.69500    1946299          NA
## 4366  47.95600    2003942          NA
## 4367  48.23000    2064803          NA
## 4368  48.52200    2127421          NA
## 4369  48.84100    2185607          NA
## 4370  49.19200    2231144          NA
## 4371  49.58800    2258649          NA
## 4372  50.04000    2266356          NA
## 4373  50.54500    2257593    511.5741
## 4374  51.10000    2238631    585.3214
## 4375  51.69600    2218436    715.9940
## 4376  52.31600    2204227    741.2072
## 4377  52.93800    2196467    812.6955
## 4378  53.54800    2195192    877.4784
## 4379  54.13700    2206439    888.4803
## 4380  54.70700    2237412    876.2990
## 4381  55.27300    2292413    828.4017
## 4382  55.86400    2374721    869.7055
## 4383  56.50000    2481059    857.4481
## 4384  57.19100    2600972    796.1971
## 4385  57.93200    2719809    772.4624
## 4386  58.70700    2826653    762.3992
## 4387  59.48700    2918209    731.3222
## 4388  60.24300    2996540    722.3670
## 4389  60.95200    3062782    637.6027
## 4390  61.60200    3119920    650.1897
## 4391  62.19300    3170437    653.8688
## 4392  62.73200    3213969    700.9982
## 4393  63.23800         NA          NA
## 4394  63.72600         NA          NA
## 4395  64.20100         NA          NA
## 4396  64.66400         NA          NA
## 4397  65.11100         NA          NA
## 4398  65.53800         NA          NA
## 4399  65.94100         NA          NA
## 4400  66.32100         NA          NA
## 4401  66.67900         NA          NA
## 4402        NA         NA          NA
## 4403  67.90290    1211537          NA
## 4404  68.36080    1225077          NA
## 4405  68.74102    1241623          NA
## 4406  69.05356    1258857          NA
## 4407  69.30993    1277086          NA
## 4408  69.51763    1294566          NA
## 4409  69.68120    1308597          NA
## 4410  69.80212    1318946          NA
## 4411  69.88293    1331214          NA
## 4412  69.92810    1345249          NA
## 4413  69.93710    1360076          NA
## 4414  69.90534    1376955          NA
## 4415  69.83283    1392518          NA
## 4416  69.72459    1405951          NA
## 4417  69.59022    1418169          NA
## 4418  69.44132    1429352          NA
## 4419  69.29002    1439576          NA
## 4420  69.14695    1450211          NA
## 4421  69.02627    1460188          NA
## 4422  68.93859    1468333          NA
## 4423  68.90563    1477219          NA
## 4424  68.97805    1487666          NA
## 4425  69.12683    1498414          NA
## 4426  69.37561    1508745          NA
## 4427  69.27805    1518617          NA
## 4428  69.38049    1528781          NA
## 4429  70.08537    1540190          NA
## 4430  70.64390    1552221          NA
## 4431  70.69756    1561900          NA
## 4432  70.03902    1568131          NA
## 4433  69.47561    1569174          NA
## 4434  69.37317    1561314          NA
## 4435  68.86341    1533091          NA
## 4436  67.90976    1494128          NA
## 4437  66.50000    1462514          NA
## 4438  67.54390    1436634   7137.5308
## 4439  69.61220    1415594   7601.6690
## 4440  69.80976    1399535   8692.2964
## 4441  69.35854    1386156   9157.0648
## 4442  70.06341    1390244   9091.3332
## 4443  70.41707    1396985   9960.1390
## 4444  70.25854    1388115  10625.5793
## 4445  70.90488    1379350  11417.1680
## 4446  71.31707    1370720  12362.2483
## 4447  71.90976    1362550  13282.5455
## 4448  72.56829    1354775  14631.3873
## 4449  72.69146    1346810  16155.2074
## 4450  72.81463    1340680  17459.0983
## 4451  73.77073    1337090  16607.5681
## 4452  74.82439    1334515  14205.3949
## 4453  75.42927    1331475  14585.8387
## 4454  76.22927    1327439  15692.7888
## 4455  76.32683    1322696  16257.4722
## 4456  77.14146    1317997  16553.3833
## 4457  77.03415    1314545  17096.6446
## 4458  77.59024    1315407  17402.0376
## 4459  77.64146    1315790  17945.9450
## 4460  78.09268    1317384  18962.4103
## 4461  78.24390    1321977  19677.6768
## 4462  78.64634    1326855  20408.4362
## 4463  78.34634    1329479  19767.0776
## 4464        NA    1329254  21421.1459
## 4465  43.57200     336578          NA
## 4466  43.95100     343346          NA
## 4467  44.32500     350155          NA
## 4468  44.69900     357279          NA
## 4469  45.08300     365120          NA
## 4470  45.48900     373925          NA
## 4471  45.92900     383820          NA
## 4472  46.40900     394760          NA
## 4473  46.93500     406508          NA
## 4474  47.50800     418739          NA
## 4475  48.12800     431251    971.7299
## 4476  48.78800     443979   1073.5947
## 4477  49.47900     457039   1099.4873
## 4478  50.19100     470561   1164.2023
## 4479  50.91900     484747   1195.0412
## 4480  51.66100     499759   1320.3629
## 4481  52.42100     515602   1252.6674
## 4482  53.19800     532253   1225.7302
## 4483  53.99100     549787   1202.3870
## 4484  54.79500     568316   1199.3247
## 4485  55.61300     587852   1303.8104
## 4486  56.45300     608374   1444.2868
## 4487  57.30700     629812   1411.4839
## 4488  58.15800     652112   1379.6067
## 4489  58.97800     675240   1414.4494
## 4490  59.74900     699077   1418.0325
## 4491  60.46000     723599   1537.9974
## 4492  61.08100     748634   1703.7019
## 4493  61.57200     773774   1756.6420
## 4494  61.88500     798498   1922.0302
## 4495  61.95000     822423   2258.3371
## 4496  61.70000     845267   2235.9846
## 4497  61.11200     866995   2250.2776
## 4498  60.19200     887706   2266.0420
## 4499  58.95800     907622   2269.5250
## 4500  57.42200     926836   2329.7251
## 4501  55.60600     945506   2371.4640
## 4502  53.59500     963416   2399.5923
## 4503  51.49800     979922   2420.6069
## 4504  49.42400     994105   2456.4819
## 4505  47.49000    1005432   2471.5588
## 4506  45.79900    1013608   2477.4815
## 4507  44.41000    1019054   2572.1777
## 4508  43.37200    1022796   2662.2079
## 4509  42.73100    1026287   2749.3002
## 4510  42.51800    1030575   2902.0991
## 4511  42.73300    1036095   3059.6097
## 4512  43.30800    1042651   3175.2233
## 4513  44.17000    1049948   3179.0643
## 4514  45.27500    1057462   3205.8752
## 4515  46.60100    1064841   3304.4398
## 4516  48.14100    1072029   3356.0438
## 4517  49.86200    1079285   3513.3769
## 4518  51.69900    1086843   3623.6602
## 4519  53.56900    1095022   3629.7990
## 4520  55.35900    1104038   3680.3495
## 4521  56.96200    1113994   3686.2157
## 4522  58.31900    1124808   3724.7619
## 4523  59.40100    1136274   3775.0399
## 4524  60.19400    1148133   3833.2468
## 4525  60.72100    1160164   3723.2961
## 4526        NA    1172369   3958.1530
## 4527  38.41900   22151284          NA
## 4528  39.08200   22671193          NA
## 4529  39.71100   23221385          NA
## 4530  40.29000   23798418          NA
## 4531  40.81000   24397010          NA
## 4532  41.26700   25013634          NA
## 4533  41.66800   25641040          NA
## 4534  42.02600   26280135          NA
## 4535  42.35500   26944386          NA
## 4536  42.65900   27652715          NA
## 4537  42.94400   28415080          NA
## 4538  43.21300   29248650          NA
## 4539  43.46500   30140799          NA
## 4540  43.69300   31036670          NA
## 4541  43.89400   31861353          NA
## 4542  44.04400   32566855          NA
## 4543  44.11600   33128151          NA
## 4544  44.10300   33577240          NA
## 4545  44.01600   33993301          NA
## 4546  43.88100   34487806          NA
## 4547  43.74700   35141703          NA
## 4548  43.67500   35984531    303.4468
## 4549  43.71200   36995246    297.8603
## 4550  43.88500   38142679    312.6908
## 4551  44.19900   39374346    294.2826
## 4552  44.63300   40652146    253.2675
## 4553  45.14700   41965696    269.0439
## 4554  45.68200   43329238    296.6915
## 4555  46.19400   44757205    288.6723
## 4556  46.66700   46272308    278.2122
## 4557  47.09900   47887864    276.1558
## 4558  47.50400   49609976    247.5432
## 4559  47.91100   51423591    218.1018
## 4560  48.34400   53295556    238.0991
## 4561  48.81000   55180993    237.2994
## 4562  49.30300   57047906    243.5984
## 4563  49.81000   58883531    265.3309
## 4564  50.32000   60697443    265.4683
## 4565  50.83500   62507724    248.8657
## 4566  51.36600   64343008    254.2476
## 4567  51.94100   66224809    262.0253
## 4568  52.59500   68159422    275.7222
## 4569  53.34900   70142090    271.9869
## 4570  54.21100   72170581    258.6288
## 4571  55.17400   74239508    285.5457
## 4572  56.22300   76346310    310.4826
## 4573  57.33400   78489205    334.7274
## 4574  58.46700   80674343    362.9693
## 4575  59.58100   82916236    391.2556
## 4576  60.64500   85233923    414.1205
## 4577  61.62700   87639962    453.2988
## 4578  62.50500   90139928    489.9927
## 4579  63.28100   92726982    517.5135
## 4580  63.96100   95385793    556.3263
## 4581  64.54700   98094264    596.4551
## 4582  65.04800  100835453    640.5419
## 4583  65.48200  103603461    682.2394
## 4584  65.87200  106399926    727.8441
## 4585  66.24000  109224410    757.3504
## 4586  66.59700  112078727    799.7951
## 4587  66.95300  114963583    826.9731
## 4588        NA  117876226    852.0062
## 4589  69.29058  265203956          NA
## 4590  69.66027  267621091          NA
## 4591  69.61739  270110063          NA
## 4592  69.78555  272655396          NA
## 4593  70.24431  275163380          NA
## 4594  70.32912  277650954          NA
## 4595  70.60486  279969050          NA
## 4596  70.74399  281974870          NA
## 4597  70.79341  283866408          NA
## 4598  70.79960  285778639          NA
## 4599  71.15815  287338854  15569.0903
## 4600  71.26597  288923399  16067.8921
## 4601  71.60541  290874612  16740.7382
## 4602  71.70035  292728242  17658.0568
## 4603  72.02606  294399217  18122.0766
## 4604  72.16923  295923529  17889.3710
## 4605  72.43467  297251532  18704.7956
## 4606  72.79004  298441848  19204.9914
## 4607  73.01112  299652841  19724.7809
## 4608  73.33437  300886487  20404.8212
## 4609  73.52861  302184216  20755.8929
## 4610  73.81139  303343114  20784.8746
## 4611  74.15440  304174261  20875.7867
## 4612  74.22894  304787497  21123.4408
## 4613  74.58735  305299144  21589.6265
## 4614  74.75719  305877743  22047.1688
## 4615  75.05678  306640636  22543.8471
## 4616  75.34821  307488377  23051.2346
## 4617  75.53593  308516476  23963.6565
## 4618  75.76188  309837575  24839.6593
## 4619  75.91181  311262608  25616.8936
## 4620  76.02616  312708132  26181.1892
## 4621  76.38126  314162056  26429.4159
## 4622  76.48795  315449093  26147.3815
## 4623  76.79627  316366781  26712.8461
## 4624  76.95586  317181461  27288.8841
## 4625  77.21845  318003013  27678.2727
## 4626  77.58154  318761752  28359.7491
## 4627  77.79718  319433985  29159.0812
## 4628  78.02124  320258891  29945.9121
## 4629  78.27507  321310789  31001.2445
## 4630  78.59711  322547874  31560.2675
## 4631  78.68447  324125339  31701.6974
## 4632  78.70718  325885957  31745.3633
## 4633  79.27870  327682513  32295.2429
## 4634  79.42628  329380417  32668.7085
## 4635  79.85613  330922785  33566.8315
## 4636  80.09988  332645162  34395.1647
## 4637  80.30292  334274725  34370.4870
## 4638  80.50518  335360891  32710.2805
## 4639  80.74678  336151482  33344.3449
## 4640  81.23282  335419656  33991.3652
## 4641  81.22716  336159199  33630.7778
## 4642  81.51233  337302111  33442.9868
## 4643  81.94298  338462234  33795.5023
## 4644  81.56923  339488382  34388.2838
## 4645  81.95455  340481755  34927.0355
## 4646  81.93232  341217243  35763.6530
## 4647  82.04958  341979171  36338.6111
## 4648  82.32618  342283354  36879.1354
## 4649  81.53588  342708355  34476.0795
## 4650        NA  342566541  36352.0401
## 4651  67.02644  666753356          NA
## 4652  67.38853  674450666          NA
## 4653  67.47993  682397828          NA
## 4654  67.74707  690411692          NA
## 4655  68.14177  698355574          NA
## 4656  68.29067  706070460          NA
## 4657  68.49854  712830312          NA
## 4658  68.62048  719406020          NA
## 4659  68.68887  725725300          NA
## 4660  68.69410  731903738          NA
## 4661  68.96908  737524825  10445.3979
## 4662  69.10553  743140589  10748.2441
## 4663  69.30964  749283635  11165.4307
## 4664  69.40478  755259488  11744.1736
## 4665  69.60858  761029417  11907.2615
## 4666  69.58306  766625562  11757.0669
## 4667  69.68384  772129341  12221.0644
## 4668  69.85621  777422111  12483.4332
## 4669  69.94530  782653852  12800.3731
## 4670  70.06381  787910910  13193.5509
## 4671  70.16818  793299463  13279.3776
## 4672  70.43276  798559755  13254.7371
## 4673  70.72341  803342746  13300.8859
## 4674  70.79286  807903880  13486.5935
## 4675  70.94365  812662217  13762.3765
## 4676  71.15662  817497806  14064.4395
## 4677  71.64255  822470047  14364.7521
## 4678  71.86001  827505281  14717.9148
## 4679  71.98764  832553390  15250.1467
## 4680  72.04969  837438555  15697.0886
## 4681  72.05130  841536999  15985.1687
## 4682  71.98172  845399658  15981.1818
## 4683  71.86629  848878429  15833.2621
## 4684  71.52358  851973886  15659.9363
## 4685  71.60231  854082087  15813.7046
## 4686  71.68293  855490982  16125.1492
## 4687  72.11868  856856802  16384.1012
## 4688  72.53455  858163120  16862.4846
## 4689  72.85473  859296518  17276.6525
## 4690  72.87302  860311870  17751.2098
## 4691  73.02895  861270071  18487.4008
## 4692  73.29355  862339994  18867.8591
## 4693  73.40649  863908064  19141.5496
## 4694  73.51457  866189044  19430.4928
## 4695  73.95828  868783653  19988.9128
## 4696  74.12042  871433207  20456.8968
## 4697  74.61819  874134287  21186.9703
## 4698  74.97592  877278821  21871.7648
## 4699  75.24373  880911644  22002.1758
## 4700  75.64266  884448855  20951.1607
## 4701  75.94492  887904313  21424.8153
## 4702  76.46044  890136603  21875.9119
## 4703  76.62261  893755804  21864.0755
## 4704  76.95625  898022522  21955.2861
## 4705  77.28311  902367876  22261.2351
## 4706  77.24055  906669764  22624.9154
## 4707  77.59564  910870489  22964.1917
## 4708  77.78996  914608311  23514.9524
## 4709  77.90925  918031055  23936.3777
## 4710  78.15913  920807612  24298.9131
## 4711  77.39015  922976036  22898.4757
## 4712        NA  923753699  24207.1530
## 4713  63.18159  256240323          NA
## 4714  63.68299  260376316          NA
## 4715  64.06051  264562393          NA
## 4716  64.42094  268766831          NA
## 4717  64.72422  272959744          NA
## 4718  64.95989  277095486          NA
## 4719  65.14089  280497635          NA
## 4720  65.26608  283832745          NA
## 4721  65.41326  287134686          NA
## 4722  65.49249  290423895          NA
## 4723  65.73558  293690910          NA
## 4724  65.92124  296984143          NA
## 4725  65.96947  300287193          NA
## 4726  66.04864  303586616          NA
## 4727  66.12555  306887355          NA
## 4728  65.92254  310138194          NA
## 4729  65.89614  313549230          NA
## 4730  65.89988  316954391          NA
## 4731  65.98890  320328643          NA
## 4732  65.94895  323737511          NA
## 4733  66.08792  327228917          NA
## 4734  66.29902  330769542          NA
## 4735  66.64477  334202532          NA
## 4736  66.76116  337643744          NA
## 4737  66.76282  341334694          NA
## 4738  67.19971  345006487          NA
## 4739  68.02585  348642900          NA
## 4740  68.22836  352277823          NA
## 4741  68.29696  355779852          NA
## 4742  68.23452  358915202   5473.9051
## 4743  68.08244  361192206   5360.1540
## 4744  67.87155  363436990   5065.4872
## 4745  67.08202  365331816   4501.6369
## 4746  66.12537  366753479   4218.1961
## 4747  65.89372  367545578   3739.0698
## 4748  65.90717  367887617   3666.1532
## 4749  66.57266  368312923   3657.8180
## 4750  67.24875  368733376   3758.1096
## 4751  67.58071  369017645   3696.5246
## 4752  67.30698  369016122   3783.6489
## 4753  67.33757  369135190   4101.0467
## 4754  67.49195  369175354   4209.2353
## 4755  67.58726  369249571   4439.3647
## 4756  67.70345  369571302   4743.3361
## 4757  68.05852  370059210   5129.7501
## 4758  68.18495  370609108   5499.0455
## 4759  68.83748  371295237   5938.1925
## 4760  69.35985  372310742   6384.0417
## 4761  69.70040  373834315   6627.1493
## 4762  70.30662  375654151   6217.3878
## 4763  70.65330  377813291   6530.5793
## 4764  71.20976  380138981   6898.6481
## 4765  71.59304  382476923   7129.0538
## 4766  72.02451  385050864   7367.9426
## 4767  72.26467  387621858   7469.1157
## 4768  72.59431  390258029   7485.8269
## 4769  72.95393  392836210   7553.9091
## 4770  73.42308  395257485   7802.5126
## 4771  73.60003  397406103   8004.5650
## 4772  73.87585  399386100   8145.3378
## 4773  73.10399  400895993   8013.2774
## 4774        NA  401828885   8546.0983
## 4775  63.79495  308424859          NA
## 4776  64.26892  313062858          NA
## 4777  64.58663  317744155          NA
## 4778  65.00555  322502356          NA
## 4779  65.29721  327271196          NA
## 4780  65.57503  331852935          NA
## 4781  65.76413  335704786          NA
## 4782  65.83156  339692825          NA
## 4783  66.03691  343594800          NA
## 4784  66.06596  347372826          NA
## 4785  66.29816  351017860          NA
## 4786  66.45614  354660485          NA
## 4787  66.59612  358451364          NA
## 4788  66.69544  362249658          NA
## 4789  66.83331  366086343          NA
## 4790  66.62749  369959058          NA
## 4791  66.62461  373993098          NA
## 4792  66.60903  377959108          NA
## 4793  66.65907  381826792          NA
## 4794  66.64055  385669994          NA
## 4795  66.68712  389610131          NA
## 4796  66.96666  393632708          NA
## 4797  67.27069  397542988          NA
## 4798  67.36600  401434284          NA
## 4799  67.34244  405559660          NA
## 4800  67.69436  409642788          NA
## 4801  68.40834  413657306          NA
## 4802  68.56689  417635043          NA
## 4803  68.67179  421417208          NA
## 4804  68.60334  424805449   5468.5728
## 4805  68.47564  427282191   5357.6680
## 4806  68.26308  429373360   5037.3285
## 4807  67.63561  431065585   4544.6735
## 4808  66.86314  432578630   4319.9529
## 4809  66.67656  433470465   3939.8082
## 4810  66.70512  433786915   3926.2169
## 4811  67.28267  434113394   3964.4895
## 4812  67.87483  434471934   4077.2075
## 4813  68.23859  434720605   4048.4968
## 4814  68.05125  434661030   4148.9167
## 4815  68.15632  434305092   4459.5444
## 4816  68.34006  433855042   4579.8028
## 4817  68.43898  433512605   4812.9987
## 4818  68.55880  433653597   5108.7866
## 4819  68.90283  433997780   5506.3289
## 4820  69.03624  434404383   5866.6502
## 4821  69.62196  434941423   6319.4130
## 4822  70.09123  435624501   6790.5529
## 4823  70.40645  436807654   7073.7376
## 4824  70.97251  438478422   6717.6963
## 4825  71.32220  440398383   7005.7115
## 4826  71.88095  442630386   7371.7550
## 4827  72.21222  444865680   7586.5893
## 4828  72.63192  447330442   7815.6078
## 4829  72.88198  449780961   7948.6315
## 4830  73.14732  452263661   8019.8979
## 4831  73.50717  454682913   8133.7903
## 4832  73.90360  456945557   8434.3708
## 4833  74.04565  458942666   8692.2887
## 4834  74.32074  460788476   8893.0674
## 4835  73.48327  462100263   8720.4588
## 4836        NA  462624055   9296.6669
## 4837  69.02087  356906098          NA
## 4838  69.41221  359998408          NA
## 4839  69.31836  363200480          NA
## 4840  69.61285  366516509          NA
## 4841  70.03084  369850237          NA
## 4842  70.15715  373032729          NA
## 4843  70.42815  376039129          NA
## 4844  70.47360  378917964          NA
## 4845  70.58413  381605442          NA
## 4846  70.53346  384216977          NA
## 4847  70.85826  386322917  13282.2725
## 4848  70.93890  388391948  13691.6958
## 4849  71.31307  390995000  14247.8814
## 4850  71.42221  393524745  15006.9608
## 4851  71.72634  395949381  15376.7814
## 4852  71.80784  398316579  15184.1470
## 4853  72.03444  400473497  15841.2407
## 4854  72.29552  402425493  16217.4926
## 4855  72.43370  404271789  16635.7805
## 4856  72.69805  406051882  17204.1978
## 4857  72.75127  407875838  17482.6785
## 4858  73.08963  409551911  17500.2361
## 4859  73.36659  410895608  17584.7121
## 4860  73.41117  411974424  17792.7989
## 4861  73.66931  412931321  18194.6727
## 4862  73.77419  413924499  18578.0772
## 4863  74.03805  415076367  19005.6424
## 4864  74.26640  416301843  19427.2547
## 4865  74.46849  417653046  20170.4137
## 4866  74.62943  419073139  20889.6590
## 4867  74.73066  420477999  21524.0178
## 4868  74.81690  421730520  21859.1170
## 4869  75.13184  422963890  22048.2910
## 4870  75.26122  424341124  21850.5957
## 4871  75.52910  425399126  22374.3041
## 4872  75.67687  426203356  22926.6368
## 4873  75.92797  426896861  23319.8573
## 4874  76.24552  427538048  23902.5885
## 4875  76.51452  428109867  24589.2538
## 4876  76.74858  428815486  25272.5354
## 4877  77.07845  429328622  26226.7402
## 4878  77.42548  429895628  26761.8509
## 4879  77.53272  430881947  26996.8549
## 4880  77.59066  432415932  27145.2524
## 4881  78.11576  434040244  27744.5207
## 4882  78.27264  435581949  28178.2628
## 4883  78.66892  436998045  29068.1499
## 4884  78.90204  438468397  29884.6316
## 4885  79.12550  439876674  29979.9053
## 4886  79.35723  440917801  28608.6469
## 4887  79.62943  441532415  29211.4265
## 4888  80.13777  440746989  29807.1297
## 4889  80.15689  441395937  29552.9600
## 4890  80.46374  442469469  29471.8257
## 4891  80.87045  443576675  29861.4807
## 4892  80.56681  444543761  30485.0288
## 4893  80.94986  445487730  31031.1789
## 4894  80.93084  446186344  31855.0679
## 4895  81.02702  446915113  32460.5403
## 4896  81.31327  447197811  33032.9640
## 4897  80.46370  447479493  31046.0337
## 4898        NA  446946712  32755.3794
## 4899        NA      34624          NA
## 4900        NA      35074          NA
## 4901        NA      35521          NA
## 4902        NA      35965          NA
## 4903        NA      36409          NA
## 4904        NA      36843          NA
## 4905        NA      37283          NA
## 4906        NA      37705          NA
## 4907        NA      38131          NA
## 4908        NA      38560          NA
## 4909        NA      39008          NA
## 4910        NA      39456          NA
## 4911        NA      39915          NA
## 4912  74.49756      40395          NA
## 4913        NA      40847          NA
## 4914        NA      41292          NA
## 4915        NA      41724          NA
## 4916        NA      42133          NA
## 4917  75.98537      42539          NA
## 4918        NA      42941          NA
## 4919        NA      43339          NA
## 4920        NA      43725          NA
## 4921        NA      44101          NA
## 4922        NA      44483          NA
## 4923        NA      44895          NA
## 4924        NA      45328          NA
## 4925  75.26585      45812          NA
## 4926  75.46585      46340          NA
## 4927  75.71463      46833          NA
## 4928  75.91463      47159          NA
## 4929  76.11463      47276          NA
## 4930  76.36341      47123          NA
## 4931  76.61463      46746          NA
## 4932  76.91463      46277          NA
## 4933  77.16585      45848          NA
## 4934  77.36585      45625          NA
## 4935  77.56829      45624          NA
## 4936  77.82195      45789          NA
## 4937  78.02683      46094          NA
## 4938  78.23171      46428          NA
## 4939  78.43659      46738          NA
## 4940  78.64146      46999          NA
## 4941  78.84390      47235          NA
## 4942  78.94390      47439          NA
## 4943  79.09268      47600          NA
## 4944  79.29024      47731          NA
## 4945  79.63902      47793          NA
## 4946  79.98780      47825          NA
## 4947  80.13659      47822          NA
## 4948  80.38537      47814          NA
## 4949  80.68780      47803          NA
## 4950  80.93902      47815          NA
## 4951  81.19024      47843          NA
## 4952  81.44146      47901          NA
## 4953  81.59268      47965          NA
## 4954  81.79268      48055  53310.2620
## 4955  82.09268      48173          NA
## 4956  82.29268      48326          NA
## 4957  82.54390      48497          NA
## 4958  82.79268      48677          NA
## 4959  83.09268      48865          NA
## 4960        NA      49053          NA
## 4961  60.81100     393480   2196.9262
## 4962  61.17200     407244   2197.3415
## 4963  61.47800     421673   2198.6789
## 4964  61.74100     436303   2260.0743
## 4965  61.96700     450538   2295.4133
## 4966  62.15700     463960   2168.8196
## 4967  62.30200     476399   2112.1907
## 4968  62.40100     487973   2337.4198
## 4969  62.45600     498944   2466.9902
## 4970  62.48100     509708   2477.5929
## 4971  62.49200     520561   2734.0984
## 4972  62.51200     531622   2861.6452
## 4973  62.55500     542843   3012.2670
## 4974  62.63300     554143   3293.5186
## 4975  62.75200     565418   3311.8036
## 4976  62.91300     576626   3264.6496
## 4977  63.11000     587561   3291.5555
## 4978  63.32700     598299   3423.3261
## 4979  63.55200     609383   3423.6897
## 4980  63.77600     621584   3766.8109
## 4981  63.99700     635312   3626.3225
## 4982  64.21700     651032   3762.7635
## 4983  64.43600     668281   3446.4929
## 4984  64.65100     685497   3226.8779
## 4985  64.85700     700478   3422.9056
## 4986  65.04100     711770   3213.1927
## 4987  65.19000     718642   3429.1049
## 4988  65.29900     721776   3188.3644
## 4989  65.36500     722924   3213.7259
## 4990  65.39100     724602   3444.7873
## 4991  65.37900     728575   3624.7108
## 4992  65.33600     735398   3494.1215
## 4993  65.27800     744470   3662.0868
## 4994  65.21800     754962   3688.1130
## 4995  65.17000     765607   3822.3119
## 4996  65.15000     775428   3868.2488
## 4997  65.17500     784389   4007.6120
## 4998  65.24600     792736   3878.1754
## 4999  65.36000     800148   3892.2000
## 5000  65.51200     806302   4202.3926
## 5001  65.68700     811011   4106.9663
## 5002  65.86300     813923   4174.1182
## 5003  66.02200     815257   4300.6413
## 5004  66.15200     816078   4339.2778
## 5005  66.24700     817864   4559.2814
## 5006  66.31300     821606   4570.2859
## 5007  66.36200     827869   4619.7340
## 5008  66.41300     836185   4534.8828
## 5009  66.47700     845356   4532.0132
## 5010  66.55900     853636   4425.8480
## 5011  66.65500     859816   4523.8662
## 5012  66.75900     863451   4626.6833
## 5013  66.85900     865065   4683.2263
## 5014  66.95000     865602   4901.8976
## 5015  67.03000     866447   5171.5276
## 5016  67.10300     868632   5390.7142
## 5017  67.17500     872406   5498.6619
## 5018  67.25200     877460   5759.6586
## 5019  67.34100     883490   5938.4275
## 5020  67.44400     889955   5869.0211
## 5021  67.56100     896444   4943.7696
## 5022        NA     902899   4708.0919
## 5023  68.81976    4429634  11425.2934
## 5024  68.84415    4461005  12207.6936
## 5025  68.57780    4491443  12486.5232
## 5026  69.01268    4523309  12805.8626
## 5027  69.22098    4548543  13401.9566
## 5028  68.97780    4563732  14065.6737
## 5029  69.47707    4580869  14345.5591
## 5030  69.66659    4605744  14577.5309
## 5031  69.61634    4626469  14846.4872
## 5032  69.50341    4623785  16280.1983
## 5033  70.17951    4606307  17128.6307
## 5034  70.01756    4612124  17510.2266
## 5035  70.70732    4639657  18752.7792
## 5036  71.22366    4666081  19948.8274
## 5037  71.13488    4690574  20486.9386
## 5038  71.67366    4711440  20764.3370
## 5039  71.81293    4725664  20773.1309
## 5040  72.35024    4738902  20764.7166
## 5041  72.89707    4752528  21309.7127
## 5042  73.15537    4764690  22769.1073
## 5043  73.44000    4779535  23921.6145
## 5044  73.74659    4799964  24133.2421
## 5045  74.29805    4826933  24744.2968
## 5046  74.20098    4855787  25363.8552
## 5047  74.51902    4881803  26045.5139
## 5048  74.22293    4902206  26857.5936
## 5049  74.56000    4918154  27508.2000
## 5050  74.59195    4932123  28410.8751
## 5051  74.57707    4946481  29806.3433
## 5052  74.79220    4964371  31209.7581
## 5053  74.81317    4986431  31279.9520
## 5054  75.22756    5013740  29278.3637
## 5055  75.45537    5041992  28155.0896
## 5056  75.70512    5066447  27833.7026
## 5057  76.39561    5088333  28812.3036
## 5058  76.40951    5107790  29912.8980
## 5059  76.69341    5124573  30908.3003
## 5060  76.87854    5139835  32768.3781
## 5061  77.09073    5153498  34464.9909
## 5062  77.29122    5165474  35891.0056
## 5063  77.46585    5176209  37884.3913
## 5064  77.96585    5188008  38784.7726
## 5065  78.11951    5200598  39351.3904
## 5066  78.36829    5213014  40044.3049
## 5067  78.71463    5228172  41522.1751
## 5068  78.81707    5246096  42530.6197
## 5069  79.21463    5266268  44074.0309
## 5070  79.26341    5288720  46212.6410
## 5071  79.56829    5313399  46358.6204
## 5072  79.71951    5338871  42412.0978
## 5073  79.87073    5363352  43563.5722
## 5074  80.47073    5388272  44466.8177
## 5075  80.62683    5413971  43637.2487
## 5076  80.97561    5438972  43044.9971
## 5077  81.18049    5461512  42710.9213
## 5078  81.48049    5479531  42801.9081
## 5079  81.42927    5495303  43878.9667
## 5080  81.63171    5508214  45173.6294
## 5081  81.73415    5515525  45628.9257
## 5082  81.98293    5521606  46135.0777
## 5083  82.13171    5529543  45009.6153
## 5084        NA    5541696  46471.3594
## 5085  45.24139  245134016          NA
## 5086  45.71529  250274396          NA
## 5087  46.16932  255615131          NA
## 5088  46.60421  261136143          NA
## 5089  47.02077  266820455          NA
## 5090  47.41942  272657455          NA
## 5091  47.80219  278645121          NA
## 5092  48.16964  284794041          NA
## 5093  48.52444  291117502   1238.6107
## 5094  48.86839  297637311   1371.8526
## 5095  49.20329  304369852   1522.7099
## 5096  49.52978  311311083   1630.5186
## 5097  49.84714  318462078   1637.6216
## 5098  50.15294  325837597   1666.7791
## 5099  50.44590  333463168   1786.7166
## 5100  50.72282  341348073   1739.8729
## 5101  50.97994  349514957   1825.4970
## 5102  51.21879  357943647   1859.5769
## 5103  51.44447  366560923   1794.9867
## 5104  51.66330  375266501   1853.4487
## 5105  51.88445  383990304   1922.7516
## 5106  52.17350  392770274   1805.1941
## 5107  52.41987  401516218   1746.1440
## 5108  52.68145  410381153   1628.0168
## 5109  52.95272  419418477   1582.3223
## 5110  53.22142  428652839   1597.7332
## 5111  53.47562  438095611   1595.3863
## 5112  53.76977  447772838   1628.2016
## 5113  53.95618  457884476   1643.8154
## 5114  54.12169  468655819   1615.2551
## 5115  54.26531  482058865   1649.0855
## 5116  54.29305  494469828   1486.5173
## 5117  54.33789  507733564   1456.8728
## 5118  54.36484  521373546   1396.9246
## 5119  54.39585  534779779   1310.3751
## 5120  54.41739  547780237   1280.3204
## 5121  54.55744  560351009   1297.0249
## 5122  54.74035  572655639   1332.0805
## 5123  54.96300  584769423   1379.6510
## 5124  55.10745  597146811   1395.7912
## 5125  55.31225  610277815   1439.9057
## 5126  55.60178  624175036   1468.5657
## 5127  55.96063  638757970   1501.0717
## 5128  56.32632  653940662   1483.9707
## 5129  56.73374  669513957   1609.7767
## 5130  57.15767  685344194   1664.2992
## 5131  57.62763  701424971   1721.3801
## 5132  58.10818  717800479   1783.0873
## 5133  58.57785  734518852   1830.0499
## 5134  59.09119  751670859   1839.4548
## 5135  59.59147  769284359   1921.6761
## 5136  60.04032  787410667   1877.1147
## 5137  60.45112  806049519   1922.1301
## 5138  60.85290  825010695   1942.0006
## 5139  61.22457  843965097   1939.0353
## 5140  61.57316  863004250   1913.6920
## 5141  61.91091  881938038   1917.8167
## 5142  62.22447  900872423   1924.5006
## 5143  62.49355  920103533   1933.5802
## 5144  62.76997  940026046   1935.0124
## 5145  62.99260  960960554   1812.5131
## 5146        NA  982980816   1815.2959
## 5147  69.86829   46621688  11176.4128
## 5148  70.11707   47240526  11579.3114
## 5149  70.31463   47904879  12200.1647
## 5150  70.51463   48582624  12779.8777
## 5151  70.66341   49230585  13450.6131
## 5152  70.81220   49818019  13938.2009
## 5153  70.96098   50330268  14520.9027
## 5154  71.16098   50775788  15101.8177
## 5155  71.30976   51175507  15656.8327
## 5156  71.45854   51561833  16644.3029
## 5157  71.65854   51957747  17526.4742
## 5158  71.90732   52371320  18312.5430
## 5159  72.10732   52793151  18985.7672
## 5160  72.35610   53207744  20033.0120
## 5161  72.60488   53592235  20744.7098
## 5162  72.85366   53931390  20416.3807
## 5163  73.10244   54220033  21192.4504
## 5164  73.35122   54467709  21826.9181
## 5165  73.60244   54691866  22602.2938
## 5166  73.85122   54917110  23308.6779
## 5167  74.05122   55161510  23571.7601
## 5168  74.30000   55430278  23708.2313
## 5169  74.50000   55718940  24176.3145
## 5170  74.80000   56023775  24343.1301
## 5171  75.00000   56337675  24573.9301
## 5172  75.30000   56654703  24832.9692
## 5173  75.60000   56976126  25270.0182
## 5174  75.80000   57302642  25769.7309
## 5175  76.10000   57627106  26840.0499
## 5176  76.34878   57940199  27854.6079
## 5177  76.60000   58235716  28523.5774
## 5178  76.84878   58559309  28663.2841
## 5179  77.10000   58851216  28977.2621
## 5180  77.30000   59106758  28670.5992
## 5181  77.64878   59327200  29237.7063
## 5182  77.75122   59541904  29746.0055
## 5183  77.95366   59753095  30059.6950
## 5184  78.30488   59964841  30653.3529
## 5185  78.60488   60186284  31636.5672
## 5186  78.75610   60496708  32551.0831
## 5187  79.05610   60912500  33597.3662
## 5188  79.15854   61357432  34015.3809
## 5189  79.26098   61805266  34152.3659
## 5190  79.11463   62244880  34190.3029
## 5191  80.16341   62704901  34899.8764
## 5192  80.16341   63179356  35213.8931
## 5193  80.81220   63621376  35825.7486
## 5194  81.11220   64016227  36468.0979
## 5195  81.21463   64374979  36357.3225
## 5196  81.41463   64707035  35131.4491
## 5197  81.66341   65027505  35639.8041
## 5198  82.11463   65342789  36245.5428
## 5199  81.96829   65659814  36183.4880
## 5200  82.21951   65998685  36205.1678
## 5201  82.71951   66312067  36378.6187
## 5202  82.32195   66548272  36652.9223
## 5203  82.57317   66724104  36956.7958
## 5204  82.57561   66918020  37694.0833
## 5205  82.67561   67101930  38291.8658
## 5206  82.82683   67248926  38912.3313
## 5207  82.17561   67379908  35785.9670
## 5208        NA   67499343  38210.2182
## 5209  56.28200      78080          NA
## 5210  56.70800      80705          NA
## 5211  57.09300      83652          NA
## 5212  57.46500      86847          NA
## 5213  57.84500      90132          NA
## 5214  58.24200      93442          NA
## 5215  58.65400      96719          NA
## 5216  59.06100      99990          NA
## 5217  59.45200     103329          NA
## 5218  59.82700     106814          NA
## 5219  60.18300     110490          NA
## 5220  60.51800     114385          NA
## 5221  60.83600     118438          NA
## 5222  61.14900     122641          NA
## 5223  61.46900     126919          NA
## 5224  61.82300     131229          NA
## 5225  62.23900     135559          NA
## 5226  62.72800     139893          NA
## 5227  63.29100     144273          NA
## 5228  63.91600     148734          NA
## 5229  64.57600     153298          NA
## 5230  65.23400     157954          NA
## 5231  65.85400     162679          NA
## 5232  66.40700     167456          NA
## 5233  66.88300     172249          NA
## 5234  67.27800     177024          NA
## 5235  67.60400     181807          NA
## 5236  67.88800     186588          NA
## 5237  68.15600     191260          NA
## 5238  68.42400     195728          NA
## 5239  68.70400     199906          NA
## 5240  69.00700     203716          NA
## 5241  69.33200     207238          NA
## 5242  69.67800     210644          NA
## 5243  70.04400     214196          NA
## 5244  70.42600     218064          NA
## 5245  70.81500     222323          NA
## 5246  71.20200     226854          NA
## 5247  71.58000     231562          NA
## 5248  71.94600     236217          NA
## 5249  72.30300     240681          NA
## 5250  72.65800     244929          NA
## 5251  73.01700     248976          NA
## 5252  73.38200     252707          NA
## 5253  73.75100     255995          NA
## 5254  74.11600     258780          NA
## 5255  74.46600     261007          NA
## 5256  74.79300     262717          NA
## 5257  75.09200     264064          NA
## 5258  75.36300     265256          NA
## 5259  75.61100     266449          NA
## 5260  75.84400     267702          NA
## 5261  76.07400     268995          NA
## 5262  76.30700     270332          NA
## 5263  76.54600     271713          NA
## 5264  76.78700     273119  19500.1009
## 5265  77.02400     274576  19843.1750
## 5266  77.25100     276108  20580.1427
## 5267  77.46200     277673  20819.6321
## 5268  77.65700     279285  21320.4394
## 5269  77.83600     280904  19586.5414
## 5270        NA     282534          NA
## 5271  39.69400     500922   3386.6159
## 5272  40.08200     505793   3849.2815
## 5273  40.56000     511285   4091.5952
## 5274  41.14900     517573   4288.1357
## 5275  41.84900     524891   4420.9290
## 5276  42.65100     533357   4713.3185
## 5277  43.52800     543119   4837.2590
## 5278  44.44200     554054   4936.9211
## 5279  45.35700     565763   4956.0410
## 5280  46.25500     577644   5246.4580
## 5281  47.12500     589317   5588.8763
## 5282  47.96700     600608   6046.3787
## 5283  48.79300     611705   6609.7316
## 5284  49.61200     622914   7151.7138
## 5285  50.42500     634739   9789.8732
## 5286  51.23400     647538  11437.9245
## 5287  52.04100     661398  15187.6452
## 5288  52.84800     676264  12984.8658
## 5289  53.65200     692078   9636.7592
## 5290  54.45200     708788   9454.2077
## 5291  55.25200     726335   9461.3395
## 5292  56.06100     744695   9698.2768
## 5293  56.87300     763932   9161.2177
## 5294  57.67400     784056   9426.6771
## 5295  58.44400     805117   9869.4089
## 5296  59.15300     827107   9382.8877
## 5297  59.76700     850052   9056.2550
## 5298  60.26600     873871   7298.9446
## 5299  60.63300     898472   8010.9962
## 5300  60.86500     923714   8457.9402
## 5301  60.96500     949493   8655.5379
## 5302  60.94400     975785   8937.1336
## 5303  60.83300    1002573   8429.5487
## 5304  60.65900    1029769   8530.8168
## 5305  60.43900    1057252   8617.5554
## 5306  60.17500    1084951   8815.2289
## 5307  59.85400    1112944   8905.0252
## 5308  59.47900    1141332   9181.8263
## 5309  59.06600    1170061   9267.8691
## 5310  58.64600    1199058   8235.8994
## 5311  58.26400    1228359   7888.0621
## 5312  57.96800    1258008   7866.6135
## 5313  57.79100    1288310   7662.4553
## 5314  57.75900    1319946   7646.8777
## 5315  57.88500    1353788   7507.1314
## 5316  58.18100    1390550   7504.2600
## 5317  58.64100    1430144   7091.7200
## 5318  59.22900    1472565   7301.2288
## 5319  59.90400    1518538   6845.9446
## 5320  60.63700    1568925   6634.7187
## 5321  61.40000    1624146   6863.5388
## 5322  62.16800    1684629   7086.3878
## 5323  62.92400    1749677   7181.2137
## 5324  63.64800    1817070   7304.7797
## 5325  64.31800    1883801   7350.0513
## 5326  64.91300    1947690   7384.7007
## 5327  65.41800    2007882   7313.1400
## 5328  65.83900    2064812   7145.1176
## 5329  66.18700    2119275   7019.8276
## 5330  66.46700    2172578   7116.0813
## 5331  66.69000    2225728   6818.4968
## 5332        NA    2278829   6759.8642
## 5333  32.05400     365049          NA
## 5334  32.33600     372436          NA
## 5335  32.67000     379886          NA
## 5336  33.07000     387635          NA
## 5337  33.54300     396012          NA
## 5338  34.09700     405258          NA
## 5339  34.73500     415478    610.1521
## 5340  35.44500     426622    594.2140
## 5341  36.21100     438590    633.3495
## 5342  37.02300     451228    630.6040
## 5343  37.86800     464404    650.4180
## 5344  38.73400     478106    631.3615
## 5345  39.61000     492424    614.4853
## 5346  40.48500     507428    651.4769
## 5347  41.35200     523250    668.9185
## 5348  42.20500     539985    728.5204
## 5349  43.04700     557810    757.0841
## 5350  43.88200     576755    757.4008
## 5351  44.71200     596540    778.5348
## 5352  45.53300     616770    742.9977
## 5353  46.34100     637252    764.2061
## 5354  47.13300     657581    765.1821
## 5355  47.90300     678111    736.3427
## 5356  48.64500     700198    790.7255
## 5357  49.34800     725688    789.9234
## 5358  49.99800     755791    752.3002
## 5359  50.57700     791141    748.0876
## 5360  51.08200     831011    729.6757
## 5361  51.51800     873440    725.3098
## 5362  51.89200     915631    732.6804
## 5363  52.22100     955595    727.0236
## 5364  52.52800     992671    721.6147
## 5365  52.83400    1027476    720.7258
## 5366  53.15700    1060861    719.0706
## 5367  53.50800    1094219    698.2252
## 5368  53.88900    1128577    682.9385
## 5369  54.29600    1164091    676.8257
## 5370  54.71500    1200522    688.4448
## 5371  55.13300    1238124    690.9004
## 5372  55.54700    1277118    712.6728
## 5373  55.95600    1317708    728.7096
## 5374  56.35900    1360070    746.9613
## 5375  56.76100    1404263    699.9417
## 5376  57.15900    1449925    724.4703
## 5377  57.55300    1496524    751.3964
## 5378  57.93900    1543745    711.2819
## 5379  58.31300    1591444    686.1300
## 5380  58.67100    1639846    686.1424
## 5381  59.01200    1689288    707.7285
## 5382  59.33400    1740277    732.7855
## 5383  59.63700    1793199    753.1768
## 5384  59.91700    1848142    671.3696
## 5385  60.17800    1905020    685.4642
## 5386  60.42600    1963708    684.0815
## 5387  60.66700    2024037    654.3509
## 5388  60.91000    2085860    660.7236
## 5389  61.16600    2149134    653.7330
## 5390  61.44000    2213900    665.2132
## 5391  61.73500    2280092    692.6321
## 5392  62.05000    2347696    714.5421
## 5393  62.38300    2416664    692.7492
## 5394        NA    2486937    711.0504
## 5395  63.65100    3645600          NA
## 5396  64.05800    3703600          NA
## 5397  64.46900    3760300          NA
## 5398  64.88100    3816100          NA
## 5399  65.29100    3870300          NA
## 5400  65.69400    3921600   1796.1713
## 5401  66.08400    3966700   1909.5634
## 5402  66.45500    4005800   2009.1073
## 5403  66.80500    4042300   2079.6901
## 5404  67.13600    4080300   2158.7671
## 5405  67.45200    4119900   2395.6936
## 5406  67.76600    4163000   2429.4740
## 5407  68.08200    4205300   2473.2644
## 5408  68.40100    4242500   2610.5077
## 5409  68.71800    4279500   2815.8907
## 5410  69.01400    4311200   3001.4968
## 5411  69.26600    4342400   3161.6343
## 5412  69.46100    4372100   3356.7196
## 5413  69.59200    4397700   3585.1027
## 5414  69.66500    4430200   3821.0984
## 5415  69.70000    4467700   3962.4216
## 5416  69.72600    4504500   4137.0626
## 5417  69.76800    4542800   4184.2901
## 5418  69.84400    4582900   4326.1063
## 5419  69.95400    4622200   4522.1021
## 5420  70.08800    4662900   4704.1473
## 5421  70.22600    4704500   4281.3740
## 5422  70.33900    4743500   4300.6113
## 5423  70.40700    4790700   4494.8089
## 5424  70.42500    4803300   4160.4559
## 5425  70.38600    4802000   3546.1580
## 5426  70.29000    4835900   2778.3050
## 5427  70.15600    4873500   1519.0353
## 5428  70.00300    4911100   1065.7356
## 5429  69.84900    4836076    969.7129
## 5430  69.71800    4657722   1033.0232
## 5431  69.63500    4491699   1191.1811
## 5432  69.61300    4349913   1359.3928
## 5433  69.65400    4243607   1436.7119
## 5434  69.75600    4157192   1508.6565
## 5435  69.90200    4077131   1566.5603
## 5436  70.06500    4014373   1667.5080
## 5437  70.22000    3978515   1774.6364
## 5438  70.34900    3951736   1984.2443
## 5439  70.45100    3927340   2112.2613
## 5440  70.53800    3902469   2329.5709
## 5441  70.63500    3880347   2563.5431
## 5442  70.76500    3860158   2901.1041
## 5443  70.94600    3848449   2980.3095
## 5444  71.18000    3814419   2897.1309
## 5445  71.46000    3786695   3100.7234
## 5446  71.77300    3756441   3356.9979
## 5447  72.09700    3728874   3597.2038
## 5448  72.41200    3717668   3738.7050
## 5449  72.70700    3719414   3902.5688
## 5450  72.97300    3725276   4014.1859
## 5451  73.20700    3727505   4128.3856
## 5452  73.41400    3728004   4327.7276
## 5453  73.60000    3726549   4539.0875
## 5454  73.76700    3720161   4773.4233
## 5455  73.91900    3722716   4447.6643
## 5456        NA    3708610   4927.0647
## 5457  69.31002   72814900          NA
## 5458  69.50800   73377632          NA
## 5459  69.69154   74025784          NA
## 5460  69.85961   74714353          NA
## 5461  70.01371   75318337          NA
## 5462  70.15183   75963695          NA
## 5463  70.27141   76600311          NA
## 5464  70.37400   76951336          NA
## 5465  70.46510   77294314          NA
## 5466  70.55068   77909682          NA
## 5467  70.63978   78169289  17894.2967
## 5468  70.74288   78312842  18421.0422
## 5469  70.86700   78688452  19121.4979
## 5470  71.01668   78936666  19972.0254
## 5471  71.19541   78967433  20141.9395
## 5472  71.40173   78673554  20041.9480
## 5473  71.63415   78336950  21124.2557
## 5474  71.88368   78159814  21880.8076
## 5475  72.14329   78091820  22558.7148
## 5476  72.40854   78126350  23484.5992
## 5477  72.67790   78288576  23766.1077
## 5478  72.95039   78407907  23855.5259
## 5479  73.22700   78333366  23783.9455
## 5480  73.50520   78128282  24221.3404
## 5481  73.78293   77858685  24991.3337
## 5482  74.05463   77684873  25630.3330
## 5483  74.31373   77720436  26204.5896
## 5484  74.55968   77839920  26531.2297
## 5485  74.79249   78144619  27407.5201
## 5486  75.01315   78751283  28256.1062
## 5487  75.22776   79433029  29485.7100
## 5488  75.31951   80013896  30766.9290
## 5489  75.81951   80624598  31121.0706
## 5490  75.87073   81156363  30615.1402
## 5491  76.27073   81438348  31238.8791
## 5492  76.42195   81678051  31628.1598
## 5493  76.67317   81914831  31790.8669
## 5494  77.07317   82034771  32313.2971
## 5495  77.47561   82047195  32959.0736
## 5496  77.72683   82100243  33559.3994
## 5497  77.92683   82211508  34490.0758
## 5498  78.32927   82349925  35011.0685
## 5499  78.22927   82488495  34883.0581
## 5500  78.38049   82534176  34619.6641
## 5501  78.68049   82516260  35034.0806
## 5502  78.93171   82469422  35310.4705
## 5503  79.13171   82376451  36699.4468
## 5504  79.53415   82266372  37842.3578
## 5505  79.73659   82110097  38278.3130
## 5506  79.83659   81902307  36190.3929
## 5507  79.98780   81776930  37760.9136
## 5508  80.43659   80274983  39977.3417
## 5509  80.53902   80425823  40069.3540
## 5510  80.49024   80645605  40135.0158
## 5511  81.09024   80982500  40851.1617
## 5512  80.64146   81686611  41103.2564
## 5513  80.99024   82348669  41682.0322
## 5514  80.99268   82657002  42639.5544
## 5515  80.89268   82905782  42973.2900
## 5516  81.29268   83092962  43329.0507
## 5517  80.94146   83160871  41315.3136
## 5518        NA   83129285  42526.5537
## 5519  45.84300    6635229   1154.1367
## 5520  46.27900    6848291   1156.5812
## 5521  46.69600    7071966   1166.0230
## 5522  47.09300    7300124   1179.3491
## 5523  47.46900    7524470   1169.4650
## 5524  47.82300    7739463   1152.5439
## 5525  48.15500    7941418   1075.4035
## 5526  48.46900    8132803   1082.3908
## 5527  48.76800    8321773   1061.7139
## 5528  49.05700    8520018   1099.2944
## 5529  49.34000    8735493   1176.4315
## 5530  49.62500    8973247   1204.9992
## 5531  49.91200    9229640   1142.3816
## 5532  50.20600    9493552   1142.6613
## 5533  50.50700    9749098   1188.9582
## 5534  50.81100    9985946   1016.4572
## 5535  51.11300   10199164    960.0750
## 5536  51.40900   10395453    963.3676
## 5537  51.69800   10590265   1025.7984
## 5538  51.98400   10805318    980.0977
## 5539  52.27700   11056112    962.3836
## 5540  52.58500   11348287    904.7609
## 5541  52.92000   11676828    818.4245
## 5542  53.28600   12033559    757.9191
## 5543  53.68500   12405659    798.7614
## 5544  54.12700   12783617    814.6129
## 5545  54.62200   13164839    832.1502
## 5546  55.15900   13552021    847.1364
## 5547  55.71700   13947047    869.4706
## 5548  56.27100   14353409    887.8231
## 5549  56.77600   14773274    891.3048
## 5550  57.18200   15207360    911.5963
## 5551  57.46200   15653345    919.9808
## 5552  57.60500   16106756    937.4460
## 5553  57.62000   16561677    941.7819
## 5554  57.52800   17014058    954.4414
## 5555  57.36600   17462504    972.7306
## 5556  57.18700   17908977    988.2819
## 5557  57.04500   18357159   1009.4724
## 5558  56.97200   18812369   1028.3878
## 5559  57.00200   19278850   1040.6341
## 5560  57.15800   19756929   1056.0709
## 5561  57.42500   20246376   1076.9152
## 5562  57.78500   20750308   1105.4014
## 5563  58.22500   21272328   1138.6584
## 5564  58.71900   21814648   1175.8617
## 5565  59.23400   22379057   1219.5621
## 5566  59.74100   22963946   1240.1620
## 5567  60.21600   23563832   1319.1736
## 5568  60.64500   24170943   1348.3414
## 5569  61.03000   24779614   1419.1203
## 5570  61.38100   25387713   1579.6996
## 5571  61.72000   25996454   1686.0695
## 5572  62.06400   26607641   1767.8021
## 5573  62.41600   27224480   1777.0967
## 5574  62.77200   27849203   1774.0748
## 5575  63.12400   28481947   1793.1809
## 5576  63.46300   29121464   1896.3667
## 5577  63.78000   29767108   1970.2608
## 5578  64.07400   30417858   2053.5867
## 5579  64.34700   31072945   2020.6243
## 5580        NA   31732128   2084.6350
## 5581        NA      23420          NA
## 5582        NA      23808          NA
## 5583        NA      24307          NA
## 5584        NA      24889          NA
## 5585        NA      25478          NA
## 5586        NA      26079          NA
## 5587        NA      26631          NA
## 5588        NA      27172          NA
## 5589        NA      27693          NA
## 5590        NA      28165          NA
## 5591        NA      28601          NA
## 5592        NA      29007          NA
## 5593        NA      29353          NA
## 5594        NA      29657          NA
## 5595        NA      29886          NA
## 5596        NA      30062          NA
## 5597        NA      30179          NA
## 5598        NA      30228          NA
## 5599        NA      30224          NA
## 5600        NA      30172          NA
## 5601        NA      30068          NA
## 5602        NA      29902          NA
## 5603        NA      29698          NA
## 5604        NA      29481          NA
## 5605        NA      29284          NA
## 5606        NA      29151          NA
## 5607        NA      29096          NA
## 5608        NA      29114          NA
## 5609        NA      29164          NA
## 5610        NA      29187          NA
## 5611        NA      29149          NA
## 5612        NA      29021          NA
## 5613        NA      28844          NA
## 5614        NA      28680          NA
## 5615        NA      28605          NA
## 5616        NA      28688          NA
## 5617        NA      28970          NA
## 5618        NA      29404          NA
## 5619        NA      29945          NA
## 5620        NA      30526          NA
## 5621        NA      31081          NA
## 5622        NA      31604          NA
## 5623        NA      32097          NA
## 5624        NA      32556          NA
## 5625        NA      32930          NA
## 5626        NA      33222          NA
## 5627        NA      33420          NA
## 5628        NA      33524          NA
## 5629        NA      33570          NA
## 5630        NA      33562          NA
## 5631        NA      33585          NA
## 5632        NA      33608          NA
## 5633        NA      33653          NA
## 5634        NA      33694          NA
## 5635        NA      33726          NA
## 5636        NA      33742          NA
## 5637        NA      33738          NA
## 5638        NA      33723          NA
## 5639        NA      33715          NA
## 5640        NA      33706          NA
## 5641        NA      33691          NA
## 5642        NA      33691          NA
## 5643  68.16390    8331725   5030.7436
## 5644  68.54863    8398050   5650.0178
## 5645  68.89227    8448233   5636.9458
## 5646  69.18571    8479625   6281.2945
## 5647  69.42944    8510429   6847.4691
## 5648  69.63800    8550333   7549.4074
## 5649  69.83746    8613651   7980.6048
## 5650  70.05246    8684088   8364.6631
## 5651  70.30256    8740765   8909.0845
## 5652  70.58929    8772764   9903.0474
## 5653  70.90363    8792806  10726.8084
## 5654  71.22656    8831036  11517.8384
## 5655  71.53500    8888628  12605.8585
## 5656  71.81485    8929086  13564.2326
## 5657  72.06463    8962022  12644.2945
## 5658  72.29371    9046541  13323.6798
## 5659  72.51956    9188150  14017.1882
## 5660  72.76166    9308479  14242.9073
## 5661  73.03107    9429959  15078.2926
## 5662  73.32937    9548258  15380.2290
## 5663  73.64715    9642505  15333.0272
## 5664  73.96949    9729350  14960.0573
## 5665  74.27900    9789513  14699.7145
## 5666  74.56585    9846627  14456.8161
## 5667  74.82912    9895801  14674.1992
## 5668  75.07851    9934300  14984.1615
## 5669  75.32971    9967213  15011.9928
## 5670  75.59815   10000595  14623.9143
## 5671  75.89124   10036983  15195.6767
## 5672  76.68780   10089498  15691.0147
## 5673  76.93902   10196792  15525.9087
## 5674  77.13659   10319927  15816.2175
## 5675  77.38293   10399061  15805.7314
## 5676  77.39024   10460415  15461.6169
## 5677  77.63902   10512922  15692.0813
## 5678  77.58537   10562153  15946.8934
## 5679  77.68537   10608800  16331.1885
## 5680  78.13659   10661259  16979.5500
## 5681  77.83902   10720509  17543.3899
## 5682  77.98780   10761698  18013.2193
## 5683  77.88780   10805808  18642.8829
## 5684  78.38780   10862132  19312.4705
## 5685  78.64146   10902022  19996.6385
## 5686  78.84146   10928070  21104.9243
## 5687  79.03902   10955141  22118.2517
## 5688  79.23902   10987314  22185.6168
## 5689  79.43902   11020362  23369.3530
## 5690  79.43902   11048473  24073.0005
## 5691  79.93902   11077841  23928.7094
## 5692  80.18780   11107017  22839.4465
## 5693  80.38780   11121341  21560.3534
## 5694  80.73171   11104899  19400.8077
## 5695  80.63415   11045011  18123.6711
## 5696  81.28537   10965211  17796.2577
## 5697  81.38537   10892413  18000.4185
## 5698  81.03659   10820883  18083.8779
## 5699  81.38780   10775971  18070.7807
## 5700  81.28780   10754679  18304.3077
## 5701  81.78780   10732882  18647.4957
## 5702  81.63902   10721582  19003.8290
## 5703  81.08780   10700556  17323.8228
## 5704        NA   10664568  18831.2875
## 5705        NA      32500          NA
## 5706        NA      33700          NA
## 5707        NA      35000          NA
## 5708        NA      36400          NA
## 5709        NA      37600          NA
## 5710        NA      39200          NA
## 5711        NA      40500          NA
## 5712        NA      41900          NA
## 5713        NA      43400          NA
## 5714        NA      44900          NA
## 5715        NA      46400  15375.2027
## 5716        NA      47200  17088.7022
## 5717        NA      48300  17731.0935
## 5718        NA      49000  18667.3322
## 5719        NA      49500  19533.2191
## 5720        NA      49600  19619.8146
## 5721        NA      49700  20747.1713
## 5722        NA      49400  22714.6628
## 5723  63.41463      49200  24179.2314
## 5724  63.95488      49600  25150.0149
## 5725  63.44976      50200  27005.3541
## 5726  63.07488      51000  26758.5836
## 5727  63.19268      51500  25327.6348
## 5728  63.30000      52100  25901.5009
## 5729  63.46659      52700  24280.2834
## 5730  63.83366      53200  24931.5228
## 5731  64.24878      53500  26551.2682
## 5732  64.65415      54100  27705.0909
## 5733  64.58244      54800  28883.8482
## 5734  64.66756      55300  30528.8333
## 5735  65.06829      55600  26805.5776
## 5736  65.03171      55500  26823.4063
## 5737  65.19610      55300  25544.3258
## 5738  65.58537      55200  24303.9236
## 5739  65.90098      55500  25604.6223
## 5740  65.64415      55800  26416.5440
## 5741  65.76732      55900  26772.6417
## 5742  65.79805      56000  27117.4015
## 5743  66.15707      56100  29169.0769
## 5744  66.35902      56100  29570.9931
## 5745  66.22244      56200  31614.6517
## 5746  66.70927      56350  31930.6286
## 5747  67.19634      56609  31475.8540
## 5748  68.11488      56765  32779.9156
## 5749  68.59268      56911  34953.9857
## 5750  68.42732      56935  36681.8438
## 5751  68.66659      56774  38829.5768
## 5752  69.37268      56555  39896.9169
## 5753  70.01512      56328  42527.7111
## 5754  70.53195      56323  42899.7888
## 5755  70.29195      56905  43198.0773
## 5756  69.85415      56890  42994.9238
## 5757  70.55000      56810  43655.7459
## 5758  71.57341      56483  43338.4290
## 5759  71.98561      56295  45545.1903
## 5760  71.97732      56114  44536.4013
## 5761  71.82512      56186  46561.8316
## 5762  71.57976      56171  46598.8233
## 5763  71.88659      56023  47013.0349
## 5764  72.04756      56225  47908.1067
## 5765  71.40463      56367  47957.7937
## 5766        NA      56653          NA
## 5767  62.23100      89927          NA
## 5768  62.65700      91324          NA
## 5769  63.06400      92481          NA
## 5770  63.45100      93409          NA
## 5771  63.81700      94122          NA
## 5772  64.16100      94634          NA
## 5773  64.48400      94936          NA
## 5774  64.78900      95012          NA
## 5775  65.07700      94929          NA
## 5776  65.35200      94723          NA
## 5777  65.61900      94476          NA
## 5778  65.88000      94212          NA
## 5779  66.13900      93984          NA
## 5780  66.39500      93661          NA
## 5781  66.64900      93190          NA
## 5782  66.89500      92494          NA
## 5783  67.13000      91469          NA
## 5784  67.34700      90219   3269.1118
## 5785  67.54500      89104   3486.8212
## 5786  67.72300      88603   3702.9764
## 5787  67.87900      89032   3665.4261
## 5788  68.01200      90610   3656.8468
## 5789  68.12800      93132   3704.5538
## 5790  68.23400      96020   3723.6548
## 5791  68.34100      98472   3760.5027
## 5792  68.46200      99953   3926.3187
## 5793  68.61200     100183   4199.1263
## 5794  68.79800      99425   4616.0645
## 5795  69.02400      98126   4815.9343
## 5796  69.29200      96932   5058.9431
## 5797  69.59800      96328   5294.9325
## 5798  69.93700      96462   5360.8388
## 5799  70.29500      97161   5276.9712
## 5800  70.65900      98234   5117.0943
## 5801  71.01500      99345   5145.5603
## 5802  71.35600     100286   5205.8239
## 5803  71.67300     101003   5398.2753
## 5804  71.96400     101567   5637.5455
## 5805  72.22600     102023   6271.9956
## 5806  72.45500     102429   6678.0852
## 5807  72.64800     102837   6976.7168
## 5808  72.80500     103242   6808.7005
## 5809  72.92900     103636   7015.9627
## 5810  73.02300     104003   7652.8510
## 5811  73.08800     104346   7578.3094
## 5812  73.12300     104658   8558.8287
## 5813  73.12500     104938   8194.9508
## 5814  73.09600     105183   8676.5075
## 5815  73.03800     105457   8735.9640
## 5816  72.96000     105787   8132.7807
## 5817  72.86700     106227   8057.6865
## 5818  72.76800     106786   8076.8232
## 5819  72.66900     107452   7934.0414
## 5820  72.57900     108172   8066.5527
## 5821  72.50300     108900   8601.0810
## 5822  72.44500     109603   9096.5387
## 5823  72.40800     110263   9380.2322
## 5824  72.38800     110874   9742.6037
## 5825  72.38400     111449  10115.0641
## 5826  72.39700     112002  10133.1322
## 5827  72.42600     112519   8699.1114
## 5828        NA     113015   9121.3761
## 5829  60.97000      66733          NA
## 5830  61.48100      68065          NA
## 5831  61.98600      69605          NA
## 5832  62.48200      71289          NA
## 5833  62.96800      73047          NA
## 5834  63.44300      74828          NA
## 5835  63.90700      76611          NA
## 5836  64.36100      78412          NA
## 5837  64.80500      80212          NA
## 5838  65.23900      82040          NA
## 5839  65.66200      83875          NA
## 5840  66.07400      85729          NA
## 5841  66.47300      87580          NA
## 5842  66.86000      89459          NA
## 5843  67.23500      91378          NA
## 5844  67.59900      93351          NA
## 5845  67.95100      95380          NA
## 5846  68.29200      97477          NA
## 5847  68.62400      99629          NA
## 5848  68.94700     101837          NA
## 5849  69.26200     104134          NA
## 5850  69.56700     106482          NA
## 5851  69.86400     108901          NA
## 5852  70.15100     111403          NA
## 5853  70.43100     113953          NA
## 5854  70.70100     116576          NA
## 5855  70.96000     119228          NA
## 5856  71.20900     121923          NA
## 5857  71.45000     124674          NA
## 5858  71.68700     127525          NA
## 5859  71.92500     130480          NA
## 5860  72.16700     133553          NA
## 5861  72.42000     136693          NA
## 5862  72.68500     139813          NA
## 5863  72.96700     142806          NA
## 5864  73.26700     145559          NA
## 5865  73.58900     148061          NA
## 5866  73.93000     150303          NA
## 5867  74.28300     152274          NA
## 5868  74.64600     153955          NA
## 5869  75.01100     155323          NA
## 5870  75.37300     156395          NA
## 5871  75.72600     157173  30543.8238
## 5872  76.06500     157723  30704.9533
## 5873  76.38700     158094  32622.1337
## 5874  76.68700     158406  33743.7414
## 5875  76.96600     158649  32461.4485
## 5876  77.22700     158848  32653.3079
## 5877  77.47400     159037  33278.0733
## 5878  77.71000     159232  33383.1269
## 5879  77.94100     159439  34094.3488
## 5880  78.17300     159690  34067.1938
## 5881  78.40800     159990  34728.8937
## 5882  78.64900     160415  35222.3885
## 5883  78.89500     161007  35722.1143
## 5884  79.14400     161851  35829.2504
## 5885  79.39100     162948  35652.8048
## 5886  79.63100     164281  35678.2833
## 5887  79.85900     165770  35103.1618
## 5888  80.07400     167295  35666.3162
## 5889  80.27700     168783  31162.6760
## 5890        NA     170184          NA
## 5891  46.70200    4128880   1854.7933
## 5892  47.21900    4251911   1878.5456
## 5893  47.75000    4378604   1888.7033
## 5894  48.29500    4508444   2009.3223
## 5895  48.85600    4640795   2042.4552
## 5896  49.43400    4774984   2071.6407
## 5897  50.03200    4910790   2125.3834
## 5898  50.64600    5047435   2152.8780
## 5899  51.26700    5184095   2279.8722
## 5900  51.88900    5320100   2326.8234
## 5901  52.50100    5455197   2398.7233
## 5902  53.09100    5589563   2471.7801
## 5903  53.65200    5723759   2590.8354
## 5904  54.18100    5858466   2702.9543
## 5905  54.67600    5994300   2810.1133
## 5906  55.14000    6131151   2800.9637
## 5907  55.57700    6269983   2941.2770
## 5908  56.00000    6412667   3100.4127
## 5909  56.41800    6561919   3181.2876
## 5910  56.84000    6720582   3252.5906
## 5911  57.27200    6890346   3291.7370
## 5912  57.71900    7071186   3228.3018
## 5913  58.18300    7262658   3032.2337
## 5914  58.66100    7462585   2875.0960
## 5915  59.15400    7669863   2811.2912
## 5916  59.66100    7884034   2718.2571
## 5917  60.17600    8104921   2647.9577
## 5918  60.69400    8332446   2666.9335
## 5919  61.21400    8566331   2695.0918
## 5920  61.73500    8805995   2725.1068
## 5921  62.26100    9050115   2733.8666
## 5922  62.79900    9296814   2758.6788
## 5923  63.35200    9544055   2817.2311
## 5924  63.92100    9790619   2854.1330
## 5925  64.50200   10037522   2896.2234
## 5926  65.09000   10286786   2965.8918
## 5927  65.67800   10536942   2981.1209
## 5928  66.25700   10788362   3038.7135
## 5929  66.81700   11046215   3115.9774
## 5930  67.35100   11311078   3160.0795
## 5931  67.84900   11589761   3195.3943
## 5932  68.30400   11871565   3192.3086
## 5933  68.71700   12147518   3239.5672
## 5934  69.09200   12415334   3250.8411
## 5935  69.43700   12682108   3282.3211
## 5936  69.76200   12948292   3320.1641
## 5937  70.08200   13213330   3427.6783
## 5938  70.40900   13477017   3573.5996
## 5939  70.75000   13739299   3620.8305
## 5940  71.10800   14000190   3570.3028
## 5941  71.48100   14259687   3606.4305
## 5942  71.86100   14521515   3688.8662
## 5943  72.23600   14781942   3731.6758
## 5944  72.59600   15043981   3802.1538
## 5945  72.93500   15306316   3903.0596
## 5946  73.25000   15567419   3994.6369
## 5947  73.54100   15827690   4034.1585
## 5948  73.81000   16087418   4091.2680
## 5949  74.06300   16346950   4160.0711
## 5950  74.30200   16604026   4254.0352
## 5951  74.52900   16858333   4126.2054
## 5952        NA   17109746   4371.6157
## 5953  34.89000    3494164          NA
## 5954  35.08600    3552068          NA
## 5955  35.26600    3611428          NA
## 5956  35.43200    3672560          NA
## 5957  35.58800    3735912          NA
## 5958  35.74000    3801711          NA
## 5959  35.89000    3870204          NA
## 5960  36.04800    3941046          NA
## 5961  36.22200    4013050          NA
## 5962  36.42100    4084601          NA
## 5963  36.65500    4154606          NA
## 5964  36.93200    4223056          NA
## 5965  37.25500    4290544          NA
## 5966  37.62400    4357357          NA
## 5967  38.04100    4424030          NA
## 5968  38.50200    4491248          NA
## 5969  39.00000    4559239          NA
## 5970  39.52700    4628881          NA
## 5971  40.08200    4702371          NA
## 5972  40.66700    4782491          NA
## 5973  41.30000    4871446          NA
## 5974  42.00200    4969595          NA
## 5975  42.78300    5077073          NA
## 5976  43.64000    5195443          NA
## 5977  44.55800    5326369          NA
## 5978  45.52000    5470716          NA
## 5979  46.50300    5629420    526.0399
## 5980  47.47400    5801323    527.2971
## 5981  48.39900    5982484    543.5848
## 5982  49.24700    6167480    548.3893
## 5983  49.98700    6352282    555.4583
## 5984  50.59300    6534936    554.0437
## 5985  51.06600    6716032    556.7379
## 5986  51.41300    6897171    569.4615
## 5987  51.64000    7081119    576.6894
## 5988  51.74400    7269631    587.6179
## 5989  51.72700    7463782    597.8676
## 5990  51.61600    7662071    612.5726
## 5991  51.45600    7860772    618.8469
## 5992  51.29500    8054745    626.9663
## 5993  51.20300    8240735    628.1551
## 5994  51.25500    8417082    637.4932
## 5995  51.48400    8586077    657.2218
## 5996  51.90100    8753097    652.7307
## 5997  52.49900    8925729    655.0855
## 5998  53.23800    9109585    661.1025
## 5999  54.05200    9307421    654.7477
## 6000  54.86400    9518159    683.9001
## 6001  55.61400    9738796    696.0313
## 6002  56.27900    9964470    672.6307
## 6003  56.86100   10192168    689.2567
## 6004  57.38700   10420459    711.9909
## 6005  57.90500   10652032    737.7131
## 6006  58.44700   10892821    749.8701
## 6007  59.01600   11150970    759.5879
## 6008  59.59800   11432096    769.2555
## 6009  60.17000   11738434    830.2462
## 6010  60.70600   12067516    890.7887
## 6011  61.18500   12414292    920.9643
## 6012  61.60200   12771246    945.5074
## 6013  61.96200   13132792    962.1163
## 6014        NA   13497237    965.3755
## 6015  37.47800     616140          NA
## 6016  37.75200     622754          NA
## 6017  38.04200     628877          NA
## 6018  38.34900     635008          NA
## 6019  38.67100     641821          NA
## 6020  39.00400     649795          NA
## 6021  39.34300     658998          NA
## 6022  39.67900     669243          NA
## 6023  40.01000     680431          NA
## 6024  40.33300     692407          NA
## 6025  40.64900     704937    517.0412
## 6026  40.96100     718359    487.5371
## 6027  41.27600     732516    508.5939
## 6028  41.59700     746178    504.8234
## 6029  41.92500     757668    519.8348
## 6030  42.26300     765985    554.5318
## 6031  42.61200     770415    578.5985
## 6032  42.97000     771732    536.1960
## 6033  43.33300     772137    606.2591
## 6034  43.69700     774726    616.2824
## 6035  44.05600     781678    513.3624
## 6036  44.40200     793804    597.3609
## 6037  44.73300     810402    609.7020
## 6038  45.04600     830212    574.9287
## 6039  45.34200     851276    611.7783
## 6040  45.62700     872163    622.0063
## 6041  45.90700     892530    602.9874
## 6042  46.19000     912755    606.7255
## 6043  46.48100     933046    620.8334
## 6044  46.78300     953782    644.3835
## 6045  47.09500     975265    668.6306
## 6046  47.41100     997522    687.0513
## 6047  47.72600    1020353    679.0665
## 6048  48.03800    1043421    677.9988
## 6049  48.34800    1066345    684.6529
## 6050  48.65800    1088850    700.0042
## 6051  48.97300    1110835    765.7436
## 6052  49.30100    1132505    799.9123
## 6053  49.64200    1154372    564.2424
## 6054  49.99900    1177133    559.0069
## 6055  50.36800    1201305    577.4857
## 6056  50.74400    1227105    577.7188
## 6057  51.12300    1254454    559.5562
## 6058  51.50100    1283297    550.0894
## 6059  51.88300    1313492    552.2848
## 6060  52.27500    1344931    562.3849
## 6061  52.69100    1377582    561.7350
## 6062  53.13600    1411545    566.1074
## 6063  53.61200    1446936    569.9528
## 6064  54.11300    1483920    574.4708
## 6065  54.62800    1522603    585.6916
## 6066  55.14400    1562996    616.6835
## 6067  55.64500    1604981    590.2661
## 6068  56.11700    1648259    593.4814
## 6069  56.55600    1692433    583.5661
## 6070  56.95900    1737207    603.3994
## 6071  57.32800    1782434    624.9198
## 6072  57.67300    1828146    645.3591
## 6073  58.00300    1874304    637.5467
## 6074  58.32200    1920917    650.0694
## 6075  58.63400    1967998    619.2892
## 6076        NA    2015490    627.6750
## 6077  60.26000     571813   2720.9119
## 6078  60.44100     589274   2764.1044
## 6079  60.62300     606286   2716.2297
## 6080  60.80500     622580   2320.3535
## 6081  60.98400     637835   2522.1522
## 6082  61.15700     651865   2728.0067
## 6083  61.31700     664518   2816.1088
## 6084  61.46200     675861   2888.2835
## 6085  61.58800     686144   2874.1541
## 6086  61.69700     695743   3032.7560
## 6087  61.78900     704930   3120.6073
## 6088  61.86800     713684   3178.2785
## 6089  61.93800     721949   3037.6553
## 6090  62.00500     729909   3041.9262
## 6091  62.07200     737846   3240.9984
## 6092  62.14000     745847   3478.2162
## 6093  62.21100     754101   3493.0175
## 6094  62.28300     762424   3363.7226
## 6095  62.35500     770128   3269.9261
## 6096  62.42700     776257   3184.5561
## 6097  62.49800     780153   3223.5937
## 6098  62.56500     781734   3265.2070
## 6099  62.62600     781249   2836.2815
## 6100  62.68400     778953   2651.4225
## 6101  62.74100     775217   2530.2248
## 6102  62.80100     770439   2607.0100
## 6103  62.86900     764447   2603.7818
## 6104  62.95000     757451   2651.4656
## 6105  63.04600     750641   2576.6991
## 6106  63.15900     745581   2466.6388
## 6107  63.28700     743306   2398.2929
## 6108  63.42700     744477   2539.5775
## 6109  63.57600     748596   2721.5374
## 6110  63.73000     754141   2922.3793
## 6111  63.89100     758896   3151.8561
## 6112  64.06400     761298   3299.9951
## 6113  64.25500     760801   3564.8541
## 6114  64.46800     757975   3799.2983
## 6115  64.70500     753778   3756.3032
## 6116  64.96400     749676   3888.6573
## 6117  65.24200     746718   3850.8178
## 6118  65.53200     745206   3946.5893
## 6119  65.82800     744789   3993.5241
## 6120  66.12200     745142   3966.3961
## 6121  66.41200     745737   4025.1907
## 6122  66.69400     746156   3944.4447
## 6123  66.97200     746335   4145.7848
## 6124  67.24700     746477   4443.0726
## 6125  67.52100     746815   4512.3853
## 6126  67.79200     747718   4681.6483
## 6127  68.05900     749430   4847.4315
## 6128  68.32100     752029   5088.6070
## 6129  68.57500     755388   5338.7127
## 6130  68.81900     759281   5505.3900
## 6131  69.04900     763371   5568.2182
## 6132  69.26200     767433   5576.8259
## 6133  69.45400     771363   5759.6917
## 6134  69.62400     775218   5945.0687
## 6135  69.77400     779007   6178.8897
## 6136  69.90600     782775   6478.2877
## 6137  70.02300     786559   9250.3017
## 6138        NA     790329  11040.7120
## 6139  41.76200    3866162   1729.6414
## 6140  42.18200    3941956   1646.6471
## 6141  42.59100    4019171   1742.3975
## 6142  43.00000    4097755   1676.6355
## 6143  43.41400    4177631   1617.4863
## 6144  43.83700    4258734   1620.9839
## 6145  44.26700    4341325   1580.9898
## 6146  44.70000    4425318   1518.1375
## 6147  45.13400    4509811   1537.0910
## 6148  45.57300    4593666   1566.5557
## 6149  46.02700    4676237   1548.9147
## 6150  46.50800    4757175   1621.2294
## 6151  47.01900    4837334   1609.9428
## 6152  47.55900    4918625   1658.6277
## 6153  48.11900    5003708   1724.6611
## 6154  48.68300    5094570   1712.9200
## 6155  49.23200    5191637   1822.7418
## 6156  49.74600    5294625   1853.5621
## 6157  50.21500    5404020   1928.7954
## 6158  50.63500    5520187   2030.9620
## 6159  51.00900    5643175   2133.2119
## 6160  51.34700    5773367   2025.6249
## 6161  51.66800    5910223   1908.2034
## 6162  51.98700    6051617   1880.5439
## 6163  52.30900    6194686   1842.6401
## 6164  52.63700    6337275   1812.0531
## 6165  52.97000    6478537   1763.7235
## 6166  53.30200    6618742   1712.6613
## 6167  53.62800    6758222   1680.6762
## 6168  53.94900    6897755   1598.7035
## 6169  54.26500    7037915   1583.1313
## 6170  54.58000    7178611   1581.2910
## 6171  54.89400    7319491   1468.5061
## 6172  55.20900    7460684   1362.5373
## 6173  55.52300    7602318   1177.3545
## 6174  55.82900    7744509   1270.1296
## 6175  56.12100    7887312   1298.7743
## 6176  56.39300    8030721   1310.0822
## 6177  56.64800    8174680   1315.0918
## 6178  56.89100    8319070   1327.2900
## 6179  57.13100    8463802   1315.9439
## 6180  57.38200    8608810   1289.3436
## 6181  57.65500    8754148   1281.2741
## 6182  57.95900    8900108   1304.1283
## 6183  58.29200    9047082   1266.0348
## 6184  58.65200    9195289   1283.8971
## 6185  59.02800    9344784   1285.7034
## 6186  59.40800    9495336   1324.8707
## 6187  59.78200    9646570   1338.7634
## 6188  60.14800    9798046   1395.7055
## 6189  60.51100    9949318   1296.8057
## 6190  60.87900   10100320   1342.5436
## 6191  61.26000   10250922   1329.4658
## 6192  61.65800   10400672   1366.9926
## 6193  62.06900   10549007   1370.9869
## 6194  62.48500   10695540   1386.8542
## 6195  62.89600   10839976   1393.1766
## 6196  63.29000   10982367   1409.6325
## 6197  63.66000   11123183   1414.9994
## 6198  64.00100   11263079   1373.8831
## 6199  64.31500   11402533   1311.7081
## 6200        NA   11541683   1272.5905
## 6201  39.77966  161734348    751.8500
## 6202  40.22140  165573136    731.8533
## 6203  40.65232  169567052    767.7229
## 6204  41.07103  173722891    769.9954
## 6205  41.47818  178048131    773.3322
## 6206  41.87599  182548798    784.1130
## 6207  42.26878  187227553    782.8393
## 6208  42.66054  192084675    776.7326
## 6209  43.05455  197119416    789.5880
## 6210  43.45175  202329958    804.6511
## 6211  43.85301  207714326    819.3569
## 6212  44.25843  213272593    832.6809
## 6213  44.66457  219004306    820.6510
## 6214  45.06776  224905337    824.7286
## 6215  45.46576  230970270    849.9323
## 6216  45.85422  237195030    849.9151
## 6217  46.22905  243590882    867.2998
## 6218  46.58948  250160343    878.8060
## 6219  46.93633  256880818    871.3469
## 6220  47.27141  263721632    851.0115
## 6221  47.59882  270668519    831.6657
## 6222  47.92443  277719154    838.4897
## 6223  48.25028  284905161    825.0785
## 6224  48.57393  292290400    809.1624
## 6225  48.88997  299959455    794.5459
## 6226  49.18323  307980326    781.9316
## 6227  49.43486  316358167    786.3533
## 6228  49.63177  325095129    794.3944
## 6229  49.77107  334249174    779.9353
## 6230  49.86464  343887503    776.0838
## 6231  49.93685  354047283    748.5897
## 6232  50.01769  364782214    732.7599
## 6233  50.13036  376055877    708.0220
## 6234  50.28054  387705086    692.3382
## 6235  50.45924  399503994    672.6318
## 6236  50.66227  411298637    686.2501
## 6237  50.89472  423019239    701.4969
## 6238  51.16404  434736157    724.9143
## 6239  51.47749  446608371    729.8865
## 6240  51.84219  458867418    731.6240
## 6241  52.26410  471680803    733.0701
## 6242  52.74934  485112670    741.8275
## 6243  53.29665  499113608    746.5019
## 6244  53.90032  513601222    754.5644
## 6245  54.55208  528444638    774.6222
## 6246  55.24228  543555314    795.2636
## 6247  55.96162  558909246    819.1581
## 6248  56.69696  574560319    840.4681
## 6249  57.43357  590590409    862.6087
## 6250  58.15822  607115601    866.0973
## 6251  58.85895  624219296    892.2563
## 6252  59.52887  641921373    901.6465
## 6253  60.16657  660193919    899.4398
## 6254  60.77034  679013004    922.9762
## 6255  61.33431  698336663    949.0909
## 6256  61.85295  718128408    965.7696
## 6257  62.32328  738387077    980.3914
## 6258  62.74867  759106118    999.4030
## 6259  63.13499  780234453   1011.4675
## 6260  63.48646  801708019   1025.1313
## 6261  63.80963  823480038   1000.0809
## 6262        NA  845522272   1018.7591
## 6263  68.47264  779313752  11271.7224
## 6264  68.86521  789211684  11616.0336
## 6265  68.85510  799334016  12118.5405
## 6266  69.06529  809385030  12601.8264
## 6267  69.45658  819344462  13238.8854
## 6268  69.56160  828931850  13803.1404
## 6269  69.81651  837984905  14459.3943
## 6270  70.03575  846615712  14934.8799
## 6271  69.98017  855118538  15671.4861
## 6272  70.17703  863734899  16346.9710
## 6273  70.49171  872321331  16681.6754
## 6274  70.78050  882572657  17127.6416
## 6275  71.06775  891567144  17893.4260
## 6276  71.24983  900281397  18837.0696
## 6277  71.66238  908856696  18846.5350
## 6278  72.00447  917253488  18653.2758
## 6279  72.26137  925062260  19445.7337
## 6280  72.60768  932721106  20057.7060
## 6281  72.75317  940435282  20738.9041
## 6282  73.06312  948459572  21408.8990
## 6283  73.08699  956248921  21499.7940
## 6284  73.44189  964047910  21731.3452
## 6285  73.76979  971441774  21536.2279
## 6286  73.87296  978357881  21987.7641
## 6287  74.14456  984908998  22860.6969
## 6288  74.27121  991502342  23511.8227
## 6289  74.50950  998279807  24125.3447
## 6290  74.76625 1005128469  24793.1082
## 6291  74.88514 1012114531  25795.8032
## 6292  75.12976 1019532534  26613.4424
## 6293  75.29392 1027335329  27231.0953
## 6294  75.46781 1035674907  27399.4848
## 6295  75.72496 1041867977  27833.7991
## 6296  75.79518 1049927786  27995.1067
## 6297  76.06943 1057433274  28711.2086
## 6298  76.13454 1066126401  29292.6461
## 6299  76.49152 1073216638  29995.0706
## 6300  76.81743 1080137470  30847.1168
## 6301  77.01336 1086903084  31527.2899
## 6302  77.16995 1093621979  32412.2598
## 6303  77.45567 1100273778  33533.7123
## 6304  77.75336 1107011730  33816.3374
## 6305  77.88921 1113896452  34137.9524
## 6306  78.02152 1120929677  34683.2794
## 6307  78.43305 1128394861  35640.6575
## 6308  78.53840 1136053424  36437.8386
## 6309  78.84838 1144406539  37309.7128
## 6310  79.08900 1153028462  38078.8477
## 6311  79.23682 1162203098  37983.6073
## 6312  79.52696 1170539840  36495.1783
## 6313  79.70730 1178066137  37354.8322
## 6314  79.96170 1183478609  37907.4391
## 6315  80.07975 1190276979  38221.5705
## 6316  80.26669 1197153389  38578.1652
## 6317  80.51906 1204216436  39147.5681
## 6318  80.39818 1211083838  39847.2618
## 6319  80.54731 1217994923  40344.5196
## 6320  80.59038 1224138952  41095.2810
## 6321  80.69046 1229836619  41862.3391
## 6322  80.88625 1234830048  42435.1603
## 6323  80.21053 1240684527  40335.8277
## 6324        NA 1241374277  42372.6209
## 6325  46.27400    2038636   1220.5311
## 6326  46.95300    2096407   1208.9215
## 6327  47.62500    2155648   1243.4754
## 6328  48.28500    2216712   1252.5167
## 6329  48.92600    2280044   1283.6859
## 6330  49.54800    2346005   1360.3403
## 6331  50.15100    2414805   1392.6028
## 6332  50.74200    2486418   1433.3394
## 6333  51.33000    2560723   1483.5779
## 6334  51.92100    2637515   1449.8240
## 6335  52.52200    2716652   1458.6395
## 6336  53.14000    2798125   1472.7443
## 6337  53.77800    2882102   1512.2236
## 6338  54.43900    2968978   1583.5014
## 6339  55.12400    3059245   1517.9120
## 6340  55.83400    3153252   1504.0366
## 6341  56.56700    3251145   1611.9284
## 6342  57.31700    3352825   1725.3488
## 6343  58.08000    3458102   1772.6272
## 6344  58.85100    3566661   1815.0898
## 6345  59.63200    3678274   1770.5616
## 6346  60.42700    3792922   1696.0603
## 6347  61.23600    3910642   1610.8764
## 6348  62.05000    4031333   1576.8025
## 6349  62.85900    4154864   1626.7242
## 6350  63.64300    4281167   1667.5557
## 6351  64.38200    4410270   1705.0324
## 6352  65.06200    4542218   1765.4006
## 6353  65.67900    4677023   1744.4528
## 6354  66.22900    4814696   1740.7967
## 6355  66.72300    4955302   1738.6216
## 6356  67.17500    5098594   1633.6706
## 6357  67.60500    5244677   1684.6274
## 6358  68.02800    5394416   1744.2564
## 6359  68.45000    5548969   1699.2675
## 6360  68.87100    5709010   1753.8564
## 6361  69.28400    5874814   1736.2423
## 6362  69.67600    6045704   1764.7423
## 6363  70.04100    6220405   1776.7582
## 6364  70.37800    6397140   1714.9617
## 6365  70.68900    6574510   1790.3641
## 6366  70.97600    6751912   1790.7975
## 6367  71.24900    6929267   1810.4737
## 6368  71.51100    7106323   1845.6371
## 6369  71.77000    7282953   1913.1118
## 6370  72.02600    7458982   1980.9861
## 6371  72.28500    7634295   2062.6036
## 6372  72.54400    7808520   2141.3752
## 6373  72.80300    7980955   2183.7657
## 6374  73.06100    8150780   2086.2713
## 6375  73.31700    8317467   2120.7429
## 6376  73.56900    8480670   2159.7108
## 6377  73.81400    8640692   2207.2302
## 6378  74.05100    8798524   2228.1467
## 6379  74.27800    8955579   2256.0151
## 6380  74.49500    9112904   2302.2044
## 6381  74.70100    9270794   2351.0936
## 6382  74.89800    9429016   2423.5923
## 6383  75.08800    9587523   2475.1703
## 6384  75.27000    9746115   2499.4928
## 6385  75.44800    9904608   2239.0081
## 6386        NA   10062994   2479.9897
## 6387  66.96168    3075605          NA
## 6388  67.54876    3168100   3955.9929
## 6389  68.10598    3305200   4333.7943
## 6390  68.62585    3420900   4847.2623
## 6391  69.10437    3504600   5139.7280
## 6392  69.54288    3597900   5739.4994
## 6393  69.94622    3629900   5791.0116
## 6394  70.32578    3722800   5737.0397
## 6395  70.69054    3802700   5807.3260
## 6396  71.04456    3863900   6363.6737
## 6397  71.38651    3959000   6782.6150
## 6398  71.45854    4045300   7122.0169
## 6399  71.45610    4123600   7728.2022
## 6400  72.10976    4241600   8435.7970
## 6401  72.61220    4377800   8370.7568
## 6402  73.36829    4461600   8253.9466
## 6403  72.81951    4518000   9468.4483
## 6404  73.31951    4583700  10427.0693
## 6405  73.57561    4667500  11085.7650
## 6406  73.67317    4929700  11709.1556
## 6407  74.67317    5063100  12553.0511
## 6408  75.32439    5183400  13397.2455
## 6409  75.42927    5264500  13579.9713
## 6410  75.27561    5345100  14174.6314
## 6411  76.02927    5397900  15435.9039
## 6412  76.43415    5456200  15386.5902
## 6413  76.68537    5524600  16876.1787
## 6414  76.88293    5580500  18945.6258
## 6415  77.08293    5627600  20386.1437
## 6416  77.02927    5686200  20635.4756
## 6417  77.38049    5704500  21357.2122
## 6418  77.88293    5752000  22388.5615
## 6419  77.67805    5800500  23585.5727
## 6420  78.03171    5901000  24621.5434
## 6421  78.52927    6035400  25526.3195
## 6422  78.68293    6156100  25619.9043
## 6423  79.62683    6435500  25551.2790
## 6424  80.12683    6489300  26631.7066
## 6425  80.13171    6543700  24856.6830
## 6426  80.38293    6606500  25237.5922
## 6427  80.87805    6665000  26933.1716
## 6428  81.42439    6714300  26885.3714
## 6429  81.42683    6744100  27209.9796
## 6430  81.37805    6730800  28097.0180
## 6431  81.82927    6783500  30304.1988
## 6432  81.62927    6813200  32401.2548
## 6433  82.37561    6857100  34457.8930
## 6434  82.32683    6916300  36371.5093
## 6435  82.37561    6957800  36923.8965
## 6436  82.77561    6972800  35938.4005
## 6437  82.97805    7024200  38089.8121
## 6438  83.42195    7071600  39656.1118
## 6439  83.48049    7150100  39887.5981
## 6440  83.83171    7178900  40959.7332
## 6441  83.98049    7229500  41796.5937
## 6442  84.27805    7291300  42431.8883
## 6443  84.22683    7336600  43087.2864
## 6444  84.68049    7393200  44380.5349
## 6445  84.93415    7452600  45280.2188
## 6446  85.07805    7507900  44192.3785
## 6447  85.38780    7481000  41469.9755
## 6448        NA    7413100  44535.9366
## 6449  68.00317    9983967          NA
## 6450  68.93610   10029321          NA
## 6451  67.86585   10061734          NA
## 6452  68.87415   10087947          NA
## 6453  69.38098   10119835          NA
## 6454  69.07122   10147935          NA
## 6455  69.82244   10178653          NA
## 6456  69.40707   10216604          NA
## 6457  69.23024   10255815          NA
## 6458  69.31463   10298723          NA
## 6459  69.16463   10337910          NA
## 6460  69.05244   10367537          NA
## 6461  69.66463   10398489          NA
## 6462  69.51805   10432055          NA
## 6463  69.24805   10478720          NA
## 6464  69.29000   10540525          NA
## 6465  69.57317   10598677          NA
## 6466  69.84805   10648031          NA
## 6467  69.39390   10684822          NA
## 6468  69.61537   10704152          NA
## 6469  69.06171   10711122          NA
## 6470  69.13927   10711848          NA
## 6471  69.35780   10705535          NA
## 6472  68.97366   10689463          NA
## 6473  69.02585   10668095          NA
## 6474  68.97220   10648713          NA
## 6475  69.17341   10630564          NA
## 6476  69.65122   10612741          NA
## 6477  70.02341   10596487          NA
## 6478  69.46171   10481719          NA
## 6479  69.31561   10373988          NA
## 6480  69.37707   10373400   7592.2846
## 6481  69.11707   10369341   7362.5242
## 6482  69.10122   10357523   7328.4603
## 6483  69.46976   10343355   7554.7755
## 6484  69.79171   10328965   7677.9877
## 6485  70.32878   10311238   7697.5259
## 6486  70.70244   10290486   7955.4799
## 6487  70.55780   10266570   8284.9988
## 6488  70.67707   10237530   8563.6565
## 6489  71.24634   10210971   8970.5112
## 6490  72.24878   10187576   9357.4174
## 6491  72.34878   10158608   9829.0275
## 6492  72.30000   10129552  10259.8419
## 6493  72.64878   10107146  10796.7619
## 6494  72.64878   10087065  11282.9299
## 6495  73.09756   10071370  11746.6312
## 6496  73.15122   10055780  11797.4290
## 6497  73.70244   10038188  11937.0491
## 6498  73.90488   10022650  11167.0294
## 6499  74.20732   10000023  11313.5229
## 6500  74.85854    9971727  11556.6726
## 6501  75.06341    9920362  11470.4034
## 6502  75.56585    9893082  11709.8014
## 6503  75.76341    9866468  12237.3117
## 6504  75.56829    9843028  12720.7120
## 6505  76.06341    9814023  13037.9647
## 6506  75.81707    9787966  13630.6882
## 6507  76.06585    9775564  14379.4442
## 6508  76.31951    9771141  15041.0986
## 6509  75.61707    9750149  14400.7192
## 6510        NA    9709886  15486.6340
## 6511  48.67614 1919643259    963.8455
## 6512  49.19617 1940356959    963.9137
## 6513  49.79466 1974018983    976.5391
## 6514  50.53218 2019553695    998.3664
## 6515  51.39510 2065153294   1054.1649
## 6516  52.36455 2111931236   1092.5565
## 6517  53.37466 2161881347   1126.3736
## 6518  54.36894 2211446261   1146.4588
## 6519  55.32964 2262350288   1187.1781
## 6520  56.18370 2315407668   1251.2663
## 6521  56.97615 2369907013   1317.1347
## 6522  57.67599 2425733326   1368.2852
## 6523  58.32124 2480636089   1425.7665
## 6524  58.93400 2535259156   1494.3638
## 6525  59.52940 2589035943   1544.5399
## 6526  60.05277 2641036429   1585.2868
## 6527  60.57550 2691929607   1649.4569
## 6528  61.05868 2741759767   1693.8375
## 6529  61.51068 2792102883   1730.9390
## 6530  61.91517 2843436775   1779.4770
## 6531  62.29165 2895270850   1838.1999
## 6532  62.66835 2948643246   1847.4798
## 6533  63.02714 3004914790   1864.3875
## 6534  63.34284 3061809639   1866.4900
## 6535  63.63217 3118212761   1925.0238
## 6536  63.96456 3175484847   1974.8673
## 6537  64.33961 3234352999   2020.5657
## 6538  64.63901 3294789920   2083.6767
## 6539  64.92526 3355391546   2128.5321
## 6540  65.18188 3414926034   2158.5993
## 6541  65.42949 3472795732   2163.6612
## 6542  65.67124 3529273394   2155.2671
## 6543  65.85184 3583654056   2158.7299
## 6544  66.02415 3636953514   2207.1313
## 6545  66.26812 3689444106   2256.1577
## 6546  66.53916 3740821342   2315.3534
## 6547  66.87276 3791695401   2410.7774
## 6548  67.21089 3842263818   2505.7872
## 6549  67.52017 3892057436   2537.9818
## 6550  67.77000 3940452377   2601.2688
## 6551  68.05262 3987186829   2722.4421
## 6552  68.34250 4032814517   2789.4805
## 6553  68.62332 4077635144   2886.0547
## 6554  68.90468 4122139637   3026.0614
## 6555  69.20958 4166298061   3224.2169
## 6556  69.49564 4210302243   3421.0927
## 6557  69.83292 4253850306   3666.5665
## 6558  70.16343 4296851873   3956.5521
## 6559  70.48350 4340107147   4149.8644
## 6560  70.83254 4383682686   4227.4189
## 6561  71.16180 4427039470   4514.5164
## 6562  71.51025 4471931983   4754.3509
## 6563  71.82972 4518944265   4962.2867
## 6564  72.14643 4566062769   5170.3282
## 6565  72.43264 4612371789   5363.8177
## 6566  72.70218 4657516187   5547.6796
## 6567  72.96134 4701907494   5748.9428
## 6568  73.20755 4746018766   5993.3074
## 6569  73.41233 4787343661   6233.5842
## 6570  73.61554 4826259460   6430.4811
## 6571  73.70172 4862446431   6290.0348
## 6572        NA 4895295243   6693.3678
## 6573  73.42317     175574          NA
## 6574  73.50341     179029          NA
## 6575  73.72195     182378          NA
## 6576  73.04293     185653          NA
## 6577  73.54171     188983          NA
## 6578  73.86878     192286          NA
## 6579  73.30049     195570          NA
## 6580  73.78317     198751          NA
## 6581  74.00585     201488          NA
## 6582  73.77634     203369          NA
## 6583  73.93390     204438          NA
## 6584  73.57049     206098          NA
## 6585  74.45585     209137          NA
## 6586  74.45098     212317          NA
## 6587  74.51171     215209          NA
## 6588  75.57878     217979          NA
## 6589  76.97220     220154          NA
## 6590  76.37366     221799          NA
## 6591  76.64927     223537          NA
## 6592  76.77317     225735          NA
## 6593  76.84659     228138          NA
## 6594  76.52146     230755          NA
## 6595  77.03780     233860          NA
## 6596  76.84561     236977          NA
## 6597  77.57659     239511          NA
## 6598  77.60244     241405          NA
## 6599  77.99073     243180          NA
## 6600  77.33902     245859          NA
## 6601  77.08293     249740          NA
## 6602  78.14098     252852          NA
## 6603  78.03634     254826          NA
## 6604  77.99195     257797          NA
## 6605  78.76024     261057          NA
## 6606  78.93463     263725          NA
## 6607  79.24707     266021          NA
## 6608  77.98439     267468  34188.3821
## 6609  78.77780     268916  35557.3100
## 6610  78.88537     271128  37302.6717
## 6611  79.60244     274047  39622.6070
## 6612  79.35122     277381  40725.8860
## 6613  79.65366     281205  42174.6651
## 6614  80.69024     284968  43288.0763
## 6615  80.50244     287523  43143.4606
## 6616  80.96341     289521  43763.7756
## 6617  80.99756     292074  46766.0169
## 6618  81.50244     296734  48850.7659
## 6619  81.15854     303782  50731.6907
## 6620  81.45366     311566  53646.3690
## 6621  81.60976     317414  53821.4708
## 6622  81.75122     318499  49527.3988
## 6623  81.89756     318041  48193.7014
## 6624  82.35854     319014  48933.5457
## 6625  82.91707     320716  49191.5744
## 6626  82.06098     323764  50946.8163
## 6627  82.86098     327386  51233.2440
## 6628  82.46829     330815  52951.6815
## 6629  82.20488     335439  55513.6423
## 6630  82.66098     343400  56501.4577
## 6631  82.86098     352721  57699.4589
## 6632  83.16341     360563  57818.8595
## 6633  83.06585     366463  53188.0398
## 6634        NA     372295  54291.8701
## 6635  47.53031 2299245319    930.6281
## 6636  48.04026 2329154652    928.6909
## 6637  48.62023 2372380699    943.7174
## 6638  49.31941 2427869417    964.5551
## 6639  50.11970 2483839827   1013.6025
## 6640  51.00418 2541414856   1047.6507
## 6641  51.91716 2602626879   1072.7784
## 6642  52.80877 2663895780   1080.7695
## 6643  53.66548 2726850543   1115.3924
## 6644  54.42844 2792171255   1177.1859
## 6645  55.13710 2859058030   1243.2109
## 6646  55.76888 2927364907   1291.4231
## 6647  56.35653 2994908497   1336.7057
## 6648  56.92042 3062459678   1395.2999
## 6649  57.47351 3129647875   1445.0128
## 6650  57.97051 3195675150   1472.3747
## 6651  58.47101 3261263509   1530.1040
## 6652  58.94097 3326428526   1568.6317
## 6653  59.38565 3392709227   1594.2882
## 6654  59.78964 3460519136   1634.3240
## 6655  60.16699 3529315742   1682.3332
## 6656  60.54320 3600136821   1682.4181
## 6657  60.90004 3674370514   1689.7012
## 6658  61.21718 3749764704   1683.3556
## 6659  61.50766 3825225748   1726.4795
## 6660  61.82687 3902131693   1767.1932
## 6661  62.17291 3981206664   1802.8170
## 6662  62.44948 4062409031   1853.6879
## 6663  62.70641 4144329655   1891.3953
## 6664  62.93391 4225751603   1912.8860
## 6665  63.14740 4306159746   1916.6057
## 6666  63.35789 4385564153   1906.1401
## 6667  63.51091 4463428329   1905.4522
## 6668  63.66277 4540599237   1938.6960
## 6669  63.87476 4617236728   1972.2931
## 6670  64.11202 4693043793   2018.2058
## 6671  64.40342 4768632422   2095.1531
## 6672  64.70581 4844171403   2169.9982
## 6673  64.98076 4919044671   2193.8955
## 6674  65.21804 4992700760   2241.2331
## 6675  65.49043 5065355830   2335.6111
## 6676  65.77260 5137393838   2388.0428
## 6677  66.05610 5209071406   2465.3162
## 6678  66.34977 5280906028   2575.4146
## 6679  66.67047 5352906491   2733.9846
## 6680  66.98403 5425273244   2889.9050
## 6681  67.34297 5497768362   3082.8537
## 6682  67.70003 5570325587   3309.3130
## 6683  68.04952 5643683607   3457.9702
## 6684  68.41899 5717805879   3517.1146
## 6685  68.76826 5792386087   3739.6927
## 6686  69.12772 5868805803   3919.4407
## 6687  69.46115 5947406419   4071.2615
## 6688  69.78776 6026674017   4229.6641
## 6689  70.08556 6105863361   4377.2594
## 6690  70.36393 6184735051   4509.5899
## 6691  70.62710 6263736146   4653.3694
## 6692  70.87333 6343292514   4830.4323
## 6693  71.08110 6420905201   5004.5554
## 6694  71.28110 6496952025   5143.8774
## 6695  71.38823 6571053159   5016.5681
## 6696        NA 6642614110   5305.5315
## 6697  43.25096  120391642    937.2515
## 6698  43.90892  123270998    927.1140
## 6699  44.54694  126289838    944.4149
## 6700  45.16227  129443834    994.6295
## 6701  45.75418  132726682   1020.1588
## 6702  46.32413  136134348   1050.8792
## 6703  46.87548  139672971   1021.1429
## 6704  47.41093  143347860    914.9327
## 6705  47.93459  147154758    911.3056
## 6706  48.44562  151087339   1029.6253
## 6707  48.94363  155145837   1184.1462
## 6708  49.42739  159323709   1277.8148
## 6709  49.89567  163635977   1295.7154
## 6710  50.34671  168129765   1332.8347
## 6711  50.78216  172867304   1408.2500
## 6712  51.20569  177892039   1339.2129
## 6713  51.62172  183221937   1383.0148
## 6714  52.03215  188841826   1412.1772
## 6715  52.43706  194720560   1360.8410
## 6716  52.83412  200810543   1398.4610
## 6717  53.21639  207074946   1430.7105
## 6718  53.57649  213499720   1327.5752
## 6719  53.91037  220088448   1272.6710
## 6720  54.19441  226841896   1196.5571
## 6721  54.43981  233765810   1179.8431
## 6722  54.63700  240860675   1215.1402
## 6723  54.78514  248127780   1213.3448
## 6724  54.89434  255551895   1222.6071
## 6725  54.95960  263097505   1263.2893
## 6726  55.00013  270718966   1265.1553
## 6727  55.01988  278496624   1309.5038
## 6728  55.00932  286142541   1299.0263
## 6729  54.98689  293874928   1301.5644
## 6730  54.94566  301679823   1264.4419
## 6731  54.90935  309568084   1242.4225
## 6732  54.88443  317616125   1234.3214
## 6733  54.88165  325908669   1258.5356
## 6734  54.90899  334399195   1251.3097
## 6735  54.95881  342980973   1253.0659
## 6736  55.04929  351519915   1248.4157
## 6737  55.19354  360173395   1263.2345
## 6738  55.39922  368820674   1287.3879
## 6739  55.67027  377512139   1346.5683
## 6740  55.99179  386309887   1382.8635
## 6741  56.37096  395320129   1452.6858
## 6742  56.79777  404615733   1503.7644
## 6743  57.26156  414232540   1554.0141
## 6744  57.74881  424192620   1605.2564
## 6745  58.24290  434469632   1631.5942
## 6746  58.73065  444998547   1687.0397
## 6747  59.20835  456049577   1746.8467
## 6748  59.66462  467267685   1784.8959
## 6749  60.09325  478335316   1823.3660
## 6750  60.50418  489624577   1879.9321
## 6751  60.89369  501146189   1944.0713
## 6752  61.25628  512877239   1972.1472
## 6753  61.58797  524794580   1959.8828
## 6754  61.88913  536871945   1964.5470
## 6755  62.16187  549127807   1992.2044
## 6756  62.40900  561571929   2001.4610
## 6757  62.63495  574159138   1930.2333
## 6758        NA  586883422   1981.0253
## 6759  41.03666  259210418          NA
## 6760  41.51556  265526695    643.7154
## 6761  41.99365  272071878    674.9987
## 6762  42.46948  278871888    670.6633
## 6763  42.93793  285959851    684.5921
## 6764  43.38461  293349272    689.2870
## 6765  43.79245  301072561    685.1556
## 6766  44.15160  309101659    675.7210
## 6767  44.46034  317345497    690.0530
## 6768  44.72542  325676248    701.2915
## 6769  44.96494  334005180    714.6167
## 6770  45.20495  342307872    713.9127
## 6771  45.47035  350636431    688.5564
## 6772  45.77905  359070757    688.3161
## 6773  46.14182  367744628    718.7282
## 6774  46.56447  376746682    711.5668
## 6775  47.04524  386111965    733.9922
## 6776  47.56456  395826933    740.3991
## 6777  48.09699  405885784    738.2890
## 6778  48.62193  416271818    725.7077
## 6779  49.12608  426969946    715.0741
## 6780  49.66633  437993855    723.1435
## 6781  50.13381  449367276    711.5471
## 6782  50.59018  461113169    700.6105
## 6783  51.03239  473247177    688.5906
## 6784  51.44928  485786171    682.7063
## 6785  51.82789  498725885    685.7534
## 6786  52.16415  512067216    693.3818
## 6787  52.45404  525840604    693.5609
## 6788  52.72716  540106603    686.6009
## 6789  52.97293  554867390    674.7290
## 6790  53.22615  570148218    668.4916
## 6791  53.49770  585899345    658.6215
## 6792  53.79295  601965900    654.2577
## 6793  54.10925  618224538    642.9643
## 6794  54.45048  634606326    658.7061
## 6795  54.81550  651028352    675.4868
## 6796  55.19337  667508390    697.6028
## 6797  55.58308  684006262    708.3667
## 6798  55.99514  700728468    715.3369
## 6799  56.42641  717995606    725.6269
## 6800  56.88507  735758647    739.8510
## 6801  57.37109  753924123    749.9570
## 6802  57.89444  772456504    766.8408
## 6803  58.44576  791288301    792.4248
## 6804  59.01939  810355268    821.5065
## 6805  59.60886  829685516    852.4801
## 6806  60.20586  849281094    884.4401
## 6807  60.79602  869106828    914.5519
## 6808  61.36721  889124646    929.4612
## 6809  61.90857  909297040    965.3978
## 6810  62.42208  929606135    974.7026
## 6811  62.91112  950126838    963.9853
## 6812  63.37647  970986671    989.8935
## 6813  63.81754  992345383   1019.2490
## 6814  64.23167 1014341625   1024.8861
## 6815  64.61707 1037034072   1048.2020
## 6816  64.97390 1060401803   1076.1033
## 6817  65.30531 1084433733   1103.7064
## 6818  65.61431 1109120636   1135.8185
## 6819  65.90163 1134447590   1119.8064
## 6820        NA 1160435445   1131.2787
## 6821  41.74048  379602060    728.5889
## 6822  42.27606  388797693    719.2671
## 6823  42.80490  398361716    744.2229
## 6824  43.32505  408315722    759.6817
## 6825  43.83270  418686533    777.2049
## 6826  44.31845  429483620    791.0463
## 6827  44.77166  440745532    777.8377
## 6828  45.18656  452449519    733.9959
## 6829  45.56346  464500255    741.3453
## 6830  45.90699  476763587    790.3488
## 6831  46.22970  489151017    853.6657
## 6832  46.54905  501631581    886.9640
## 6833  46.88160  514272408    878.5290
## 6834  47.23901  527200522    892.2916
## 6835  47.62898  540611932    938.4420
## 6836  48.05643  554638721    910.1850
## 6837  48.52135  569333902    940.4241
## 6838  49.01079  584668759    955.9017
## 6839  49.50722  600606344    937.0503
## 6840  49.99572  617082361    944.4015
## 6841  50.46491  634044892    951.0127
## 6842  50.94749  651493575    919.2033
## 6843  51.37546  669455724    893.2199
## 6844  51.77843  687955065    860.0547
## 6845  52.15884  707012987    847.2327
## 6846  52.50577  726646846    856.6755
## 6847  52.81025  746853665    858.4493
## 6848  53.07308  767619111    866.9492
## 6849  53.28950  788938109    882.3549
## 6850  53.48598  810825569    879.0106
## 6851  53.65692  833364014    887.8559
## 6852  53.82196  856290759    880.2012
## 6853  53.99518  879774273    874.6615
## 6854  54.17774  903645723    858.8502
## 6855  54.37619  927792622    843.8365
## 6856  54.59521  952222451    851.1798
## 6857  54.83756  976937021    870.4142
## 6858  55.09845 1001907585    882.3854
## 6859  55.37461 1026987235    890.0963
## 6860  55.67920 1052248383    893.0771
## 6861  56.01460 1078169001    904.8416
## 6862  56.38898 1104579321    922.2742
## 6863  56.80357 1131436262    948.9815
## 6864  57.26018 1158766391    972.1992
## 6865  57.75458 1186608430   1012.5300
## 6866  58.27958 1214971001   1048.8380
## 6867  58.82724 1243918056   1086.1781
## 6868  59.38747 1273473714   1124.5861
## 6869  59.94514 1303576460   1153.3978
## 6870  60.48783 1334123193   1182.0481
## 6871  61.00670 1365346617   1226.3049
## 6872  61.49973 1396873820   1245.6374
## 6873  61.96757 1428462154   1251.7460
## 6874  62.41367 1460611248   1288.2513
## 6875  62.83648 1493491572   1329.5763
## 6876  63.23251 1527218864   1342.9994
## 6877  63.59930 1561828652   1354.5385
## 6878  63.93710 1597273748   1374.7249
## 6879  64.24868 1633561540   1402.3783
## 6880  64.53695 1670692565   1426.7880
## 6881  64.80394 1708606728   1392.0336
## 6882        NA 1747318867   1416.7406
## 6883  41.42200  450547675    302.6718
## 6884  42.02700  459642166    307.7279
## 6885  42.63700  469077191    310.3767
## 6886  43.25200  478825602    322.2841
## 6887  43.87300  488848139    339.2037
## 6888  44.50000  499123328    323.4641
## 6889  45.13600  509631509    316.6193
## 6890  45.77900  520400577    334.3330
## 6891  46.42800  531513834    338.4326
## 6892  47.08100  543084333    352.8832
## 6893  47.73700  555189797    362.9911
## 6894  48.39800  567868021    360.7175
## 6895  49.06100  581087255    350.5610
## 6896  49.72200  594770136    353.7833
## 6897  50.37400  608802595    349.7257
## 6898  51.01200  623102900    372.9646
## 6899  51.63000  637630085    370.5288
## 6900  52.22200  652408766    388.4075
## 6901  52.78600  667499815    401.3125
## 6902  53.31900  682995348    371.6631
## 6903  53.81400  698952837    387.6409
## 6904  54.26800  715384997    401.4846
## 6905  54.68600  732239498    405.8766
## 6906  55.07400  749428958    425.4725
## 6907  55.44100  766833411    431.7030
## 6908  55.80100  784360012    444.2327
## 6909  56.16900  801975250    455.2282
## 6910  56.55300  819682095    463.0558
## 6911  56.96300  837468938    496.8561
## 6912  57.40000  855334675    515.4106
## 6913  57.86500  873277799    532.7546
## 6914  58.35300  891273202    527.5145
## 6915  58.85100  909307018    545.3995
## 6916  59.34900  927403866    560.1619
## 6917  59.84000  945601828    585.9646
## 6918  60.32000  963922586    618.3678
## 6919  60.78300  982365248    652.5661
## 6920  61.23300 1000900028    666.4202
## 6921  61.66900 1019483586    694.7353
## 6922  62.09300 1038058154    742.6590
## 6923  62.50500 1056575548    757.6687
## 6924  62.90700 1075000094    780.6062
## 6925  63.30400 1093317187    796.7248
## 6926  63.69900 1111523146    845.2748
## 6927  64.09500 1129623466    897.6282
## 6928  64.50000 1147609924    953.5680
## 6929  64.91800 1165486291   1014.6276
## 6930  65.35000 1183209471   1075.9941
## 6931  65.79400 1200669762   1093.0766
## 6932  66.24400 1217726217   1162.4988
## 6933  66.69300 1234281163   1244.3660
## 6934  67.13000 1250287939   1292.8212
## 6935  67.54500 1265780243   1346.6759
## 6936  67.93100 1280842119   1415.8287
## 6937  68.28600 1295600768   1503.4215
## 6938  68.60700 1310152392   1605.6054
## 6939  68.89700 1324517250   1719.3181
## 6940  69.16500 1338676779   1816.7309
## 6941  69.41600 1352642283   1914.0124
## 6942  69.65600 1366417756   1965.5393
## 6943  69.88700 1380004385   1817.8158
## 6944        NA 1393409033   1961.4210
## 6945  46.66400   87751066    601.4469
## 6946  47.27600   90098396    619.4049
## 6947  47.87700   92518373    614.3141
## 6948  48.46800   95015295    584.7892
## 6949  49.05100   97596728    589.4169
## 6950  49.62900  100267070    579.9246
## 6951  50.20800  103025423    580.1523
## 6952  50.78900  105865576    572.3816
## 6953  51.37400  108779926    617.8495
## 6954  51.96300  111758566    642.4104
## 6955  52.55300  114793179    672.6767
## 6956  53.14000  117880146    701.0726
## 6957  53.72000  121017316    730.9584
## 6958  54.28800  124199693    769.9479
## 6959  54.84300  127422198    804.7672
## 6960  55.38600  130680730    828.7021
## 6961  55.92000  133966940    865.6041
## 6962  56.44800  137278057    914.5380
## 6963  56.97100  140621731    954.1291
## 6964  57.48800  144009844    998.2301
## 6965  57.99500  147447834   1072.4502
## 6966  58.48900  150938222   1130.1923
## 6967  58.96600  154468235   1129.1815
## 6968  59.42300  158009248   1152.3984
## 6969  59.86300  161523353   1204.4597
## 6970  60.28700  164982452   1208.2510
## 6971  60.70000  168374287   1252.2138
## 6972  61.10700  171702756   1289.3365
## 6973  61.51200  174975953   1336.4202
## 6974  61.91500  178209147   1414.3514
## 6975  62.32000  181413398   1489.7429
## 6976  62.72700  184591897   1563.2950
## 6977  63.13100  187739786   1636.9549
## 6978  63.52900  190851184   1714.8776
## 6979  63.91900  193917458   1815.0182
## 6980  64.29100  196934257   1934.1234
## 6981  64.63700  199901231   2054.3858
## 6982  64.95400  202826444   2119.9181
## 6983  65.24400  205724597   1815.6981
## 6984  65.51300  208615171   1804.7052
## 6985  65.77200  211513822   1867.5488
## 6986  66.03700  214427419   1909.2919
## 6987  66.32100  217357790   1968.3011
## 6988  66.63100  220309473   2034.7615
## 6989  66.96900  223285666   2108.6418
## 6990  67.33400  226289468   2199.0939
## 6991  67.71700  229318262   2289.4220
## 6992  68.10500  232374239   2402.6675
## 6993  68.48500  235469755   2513.6716
## 6994  68.85300  238620554   2595.2988
## 6995  69.20500  241834226   2720.1916
## 6996  69.54200  245115988   2849.3550
## 6997  69.86600  248451714   2980.6101
## 6998  70.17900  251805314   3104.3480
## 6999  70.48100  255128076   3217.3175
## 7000  70.76800  258383257   3331.6951
## 7001  71.03500  261556386   3456.9281
## 7002  71.28200  264650969   3589.7155
## 7003  71.50900  267670549   3732.8671
## 7004  71.71600  270625567   3877.4246
## 7005  71.90800  273523621   3757.1216
## 7006        NA  276361788   3855.7971
## 7007  44.94700   21906909   2292.8891
## 7008  45.51200   22480371   2466.5733
## 7009  46.06900   23071309   2593.4866
## 7010  46.62100   23680246   2704.7339
## 7011  47.17200   24307855   2858.2137
## 7012  47.72900   24954865   3258.4008
## 7013  48.29800   25624380   3538.2671
## 7014  48.88800   26317776   3832.7082
## 7015  49.50300   27032576   4268.8354
## 7016  50.14800   27764928   4801.1459
## 7017  50.85500   28513872   5185.9089
## 7018  51.66100   29281583   5741.8658
## 7019  52.55900   30075295   6400.8765
## 7020  53.51300   30905721   6692.4212
## 7021  54.46300   31786481   6884.4567
## 7022  55.26400   32729772   6664.2317
## 7023  55.74400   33733975   7646.5411
## 7024  55.82700   34803041   7206.0896
## 7025  55.51400   35960811   6078.5546
## 7026  54.88200   37237145   5164.5636
## 7027  54.11400   38650244   3900.9984
## 7028  53.45300   40199911   3536.9540
## 7029  53.12600   41869231   4182.8169
## 7030  53.28700   43636838   4458.3349
## 7031  53.98300   45472792   3972.8642
## 7032  55.19600   47347197   3886.8462
## 7033  56.82800   49260263   3370.3431
## 7034  58.66500   51193782   3237.4683
## 7035  60.51600   53077312   2932.6665
## 7036  62.27200   54822005   3013.4466
## 7037  63.83700   56366212   3329.3427
## 7038  65.15300   57679025   3667.2927
## 7039  66.24300   58780376   3717.2602
## 7040  67.13700   59723761   3604.7255
## 7041  67.84000   60590608   3492.8114
## 7042  68.37700   61442658   3527.0761
## 7043  68.79100   62294919   3699.7454
## 7044  69.13900   63136309   3699.7361
## 7045  69.47100   63971836   3727.3642
## 7046  69.81300   64800875   3753.3704
## 7047  70.17600   65623397   3922.9801
## 7048  70.55300   66449111   3966.9104
## 7049  70.92100   67284801   4234.1401
## 7050  71.26500   68122947   4543.3451
## 7051  71.59200   68951279   4683.4273
## 7052  71.91700   69762345   4776.6324
## 7053  72.25700   70554756   4959.1250
## 7054  72.62600   71336476   5304.8047
## 7055  73.02700   72120608   5260.2910
## 7056  73.45700   72924833   5254.6868
## 7057  73.90500   73762519   5496.2153
## 7058  74.35200   74634959   5575.6823
## 7059  74.77600   75539881   5302.4615
## 7060  75.16200   76481963   5157.4390
## 7061  75.50200   77465769   5345.7619
## 7062  75.79600   78492208   5200.6808
## 7063  76.04700   79563991   5582.8929
## 7064  76.27100   80673888   5657.9701
## 7065  76.47900   81800204   5454.2978
## 7066  76.67700   82913893   5308.9199
## 7067  76.87000   83992953   5333.0468
## 7068        NA   85028760          NA
## 7069  48.02200    7289753          NA
## 7070  49.22200    7475349          NA
## 7071  50.40900    7674217          NA
## 7072  51.58000    7888910          NA
## 7073  52.73000    8122199          NA
## 7074  53.83900    8375795          NA
## 7075  54.88500    8651162          NA
## 7076  55.85000    8947397          NA
## 7077  56.72300    9260687   1265.5606
## 7078  57.50000    9585585   1262.3307
## 7079  58.20100    9917978   1275.4670
## 7080  58.85600   10255853   1299.7395
## 7081  59.48400   10599661   1304.5560
## 7082  60.08600   10950888   1318.5113
## 7083  60.64400   11312062   1482.0868
## 7084  61.07800   11684579   1614.0569
## 7085  61.29100   12068675   1831.0814
## 7086  61.23800   12462059   1806.9721
## 7087  60.93300   12860678   2049.6262
## 7088  60.43500   13259107   2402.9243
## 7089  59.88200   13653348   2911.1778
## 7090  59.44800   14044115   2809.5522
## 7091  59.27500   14432466   2827.8357
## 7092  59.45400   14815653   2394.5673
## 7093  60.00200   15190396   2300.8062
## 7094  60.87700   15555807   2279.4251
## 7095  61.97900   15909764   2332.2944
## 7096  63.14700   16257072   2494.8585
## 7097  64.24600   16612319   2441.0423
## 7098  65.21200   16994942   2311.6739
## 7099  66.01100   17419113   3559.3958
## 7100  66.65300   17889457   1246.0601
## 7101  67.19100   18402740   1606.0967
## 7102  67.66800   18955087   2031.6033
## 7103  68.08900   19539348   2046.8220
## 7104  68.44600   20149342   2026.9367
## 7105  68.73100   20783073   2181.7028
## 7106  68.93600   21439579   2564.0567
## 7107  69.06000   22114330   3352.3078
## 7108  69.10800   22802061   3822.8337
## 7109  69.08200   23497589   4337.4172
## 7110  68.98300   24208178   4284.2599
## 7111  68.82700   24931922   3818.8454
## 7112  68.63600   25644503   2351.7127
## 7113  68.43700   26313838   3515.3468
## 7114  68.26600   26922279   3493.3447
## 7115  68.15700   27448124   3619.8859
## 7116  68.13000   27911242   3626.9459
## 7117  68.19000   28385739   3859.7582
## 7118  68.34000   28973157   3909.2916
## 7119  68.56700   29741977   4052.0626
## 7120  68.84800   30725305   4218.3824
## 7121  69.14800   31890012   4630.7365
## 7122  69.43700   33157061   4793.5394
## 7123  69.70000   34411949   4627.8348
## 7124  69.92900   35572269   4688.3180
## 7125  70.12200   36610632   5183.4090
## 7126  70.29400   37552789   4961.4045
## 7127  70.45400   38433604   4975.3810
## 7128  70.60400   39309789   5132.7011
## 7129  70.74800   40222503   4448.1837
## 7130        NA   41179351   4465.7562
## 7131  69.79651    2828600          NA
## 7132  69.97827    2824400          NA
## 7133  70.13407    2836050          NA
## 7134  70.27293    2852650          NA
## 7135  70.40129    2866550          NA
## 7136  70.52315    2877300          NA
## 7137  70.63844    2888800          NA
## 7138  70.74515    2902450          NA
## 7139  70.84429    2915550          NA
## 7140  70.93788    2932650          NA
## 7141  71.03144    2957250  12017.4828
## 7142  71.12854    2992050  12289.8526
## 7143  71.23224    3036850  12894.3731
## 7144  71.34556    3085950  13288.3252
## 7145  71.47202    3137500  13626.8060
## 7146  71.61661    3189550  14162.6723
## 7147  71.78278    3238050  14145.1249
## 7148  71.96900    3282200  15100.7290
## 7149  72.17373    3329100  15957.9512
## 7150  72.39346    3373750  16230.6587
## 7151  72.62324    3412800  16539.0205
## 7152  72.85610    3453000  16890.0280
## 7153  73.08807    3485800  17113.1487
## 7154  73.31368    3510600  16950.7439
## 7155  73.53146    3532423  17579.5623
## 7156  73.74237    3538082  18093.0145
## 7157  73.95141    3539690  18007.3326
## 7158  74.16254    3540057  18845.0770
## 7159  74.37771    3524949  19913.2872
## 7160  74.59590    3511009  21154.6893
## 7161  74.80910    3513974  22926.3960
## 7162  75.00527    3534235  23234.8246
## 7163  75.18095    3558430  23848.3651
## 7164  75.33612    3576261  24368.4003
## 7165  75.47680    3590386  25669.6172
## 7166  75.61756    3608841  27998.8192
## 7167  75.83171    3637510  29826.2922
## 7168  75.98537    3674171  32781.2302
## 7169  76.18049    3712696  35282.0031
## 7170  76.08293    3754786  38557.4495
## 7171  76.53659    3805174  41623.0575
## 7172  77.13415    3866243  43138.6171
## 7173  77.63415    3931947  44918.8073
## 7174  78.13902    3996521  45523.0558
## 7175  78.53902    4070262  47731.4846
## 7176  78.94390    4159914  49381.7756
## 7177  79.24146    4273591  50462.2653
## 7178  79.64146    4398942  51625.2761
## 7179  80.09512    4489544  48313.9671
## 7180  80.19024    4535375  45386.4052
## 7181  80.74390    4560155  45932.0137
## 7182  80.74634    4580084  46220.8132
## 7183  80.84634    4599533  46001.2733
## 7184  80.94878    4623816  46339.4693
## 7185  81.34878    4657740  50010.4342
## 7186  81.45366    4701957  62012.4849
## 7187  81.65366    4755335  62568.6266
## 7188  82.15610    4807388  67424.2286
## 7189  82.20488    4867316  72607.6319
## 7190  82.70244    4934340  75143.0185
## 7191  82.20488    4985674  78732.5533
## 7192        NA    5028230  88588.4841
## 7193        NA      48444          NA
## 7194        NA      48286          NA
## 7195        NA      48421          NA
## 7196        NA      48800          NA
## 7197        NA      49396          NA
## 7198        NA      50145          NA
## 7199        NA      51051          NA
## 7200        NA      52117          NA
## 7201        NA      53252          NA
## 7202        NA      54378          NA
## 7203        NA      55431          NA
## 7204        NA      56352          NA
## 7205        NA      57166          NA
## 7206        NA      57919          NA
## 7207        NA      58673          NA
## 7208        NA      59482          NA
## 7209        NA      60374          NA
## 7210        NA      61335          NA
## 7211        NA      62260          NA
## 7212        NA      63026          NA
## 7213        NA      63546          NA
## 7214        NA      63778          NA
## 7215        NA      63765          NA
## 7216        NA      63697          NA
## 7217        NA      63812  18510.0812
## 7218        NA      64277  18453.1555
## 7219        NA      65200  21667.5896
## 7220        NA      66476  23354.8226
## 7221        NA      67927  25559.6465
## 7222        NA      69263  26782.4960
## 7223        NA      70292  27495.3900
## 7224        NA      70928  27686.1852
## 7225        NA      71262  27776.8741
## 7226        NA      71431  28431.6451
## 7227  76.52927      71662  29473.5969
## 7228        NA      72133  30540.2347
## 7229        NA      72884  32552.9157
## 7230        NA      73851  34889.5618
## 7231        NA      74936  39026.2905
## 7232        NA      75996  43753.9735
## 7233        NA      76942  45506.4691
## 7234        NA      77707  47491.6299
## 7235  77.96585      78318  50042.6314
## 7236        NA      78878  52668.5910
## 7237        NA      79515  54963.4873
## 7238        NA      80293  57642.3418
## 7239        NA      81283  61324.6777
## 7240        NA      82406  65025.6392
## 7241        NA      83515  67306.1069
## 7242        NA      84379  68015.8807
## 7243        NA      84856  69933.0832
## 7244        NA      84889  71304.0148
## 7245        NA      84534  76833.1981
## 7246        NA      83985  80538.4642
## 7247        NA      83488  85194.6244
## 7248        NA      83232  85126.9705
## 7249        NA      83296  90975.3085
## 7250        NA      83610  94883.2885
## 7251        NA      84073  96449.3396
## 7252        NA      84589  96105.3032
## 7253        NA      85032          NA
## 7254        NA      85410          NA
## 7255        NA    2114020          NA
## 7256  72.00659    2185000          NA
## 7257  72.11220    2293000          NA
## 7258        NA    2379000          NA
## 7259        NA    2475000          NA
## 7260        NA    2563000          NA
## 7261  72.28561    2629000          NA
## 7262  71.50976    2745000          NA
## 7263  71.05659    2803000          NA
## 7264  70.97049    2877000          NA
## 7265  71.21341    2974000          NA
## 7266  71.71902    3069000          NA
## 7267  71.07805    3148000          NA
## 7268  71.69341    3278000          NA
## 7269  71.66171    3377000          NA
## 7270  72.04512    3455000          NA
## 7271  72.95610    3533000          NA
## 7272  72.95854    3613000          NA
## 7273  73.20732    3690000          NA
## 7274  73.50732    3786000          NA
## 7275  73.87561    3878000          NA
## 7276  74.26098    3956000          NA
## 7277  74.10976    4031000          NA
## 7278  74.45854    4105000          NA
## 7279  74.80732    4159000          NA
## 7280  75.20732    4233000          NA
## 7281  74.95610    4299000          NA
## 7282  75.25854    4369000          NA
## 7283  74.43659    4442000          NA
## 7284  76.30732    4518000          NA
## 7285  76.60732    4660000          NA
## 7286  76.75854    4949000          NA
## 7287  76.50488    5123000          NA
## 7288  77.15366    5261000          NA
## 7289  77.40244    5399000          NA
## 7290  77.45122    5545000  25179.9699
## 7291  78.10488    5692000  26008.2786
## 7292  78.00000    5836000  26362.1535
## 7293  78.14878    5971000  26847.7314
## 7294  78.65854    6125000  27107.2211
## 7295  78.95366    6289000  28747.9291
## 7296  79.40732    6439000  28106.9451
## 7297  79.45122    6570000  27492.5620
## 7298  79.64878    6689700  27310.9659
## 7299  80.14634    6809000  28151.2719
## 7300  80.15122    6930100  28809.6425
## 7301  80.55366    7053700  29939.9372
## 7302  80.50488    7180100  31207.6020
## 7303  80.95122    7308800  31718.4891
## 7304  81.40488    7485600  31323.3120
## 7305  81.60244    7623600  32504.7134
## 7306  81.65610    7765800  33678.1315
## 7307  81.70488    7910500  33995.4277
## 7308  82.05610    8059500  34960.9434
## 7309  82.15366    8215700  35710.8863
## 7310  82.05122    8380100  35808.4364
## 7311  82.40732    8546000  36680.3221
## 7312  82.55122    8713300  37550.7277
## 7313  82.80244    8882800  38301.4537
## 7314  82.80488    9054000  38995.2305
## 7315  82.70000    9215100  37488.4550
## 7316        NA    9364000  39913.0985
## 7317  69.12390   50199700   9687.6470
## 7318  69.76024   50536350  10412.9048
## 7319  69.14976   50879450  10984.3107
## 7320  69.24805   51252000  11516.1768
## 7321  70.31171   51675350  11741.3794
## 7322  70.17171   52112350  12023.4127
## 7323  70.92610   52519000  12644.3214
## 7324  70.95659   52900500  13454.2758
## 7325  70.78000   53235750  14244.5255
## 7326  70.81195   53537950  15027.8575
## 7327  71.55878   53821850  15736.1836
## 7328  71.80683   54073490  15947.7221
## 7329  72.07537   54381345  16442.6580
## 7330  72.02634   54751406  17495.2850
## 7331  72.73439   55110868  18337.1606
## 7332  72.64732   55441001  17846.9746
## 7333  72.99195   55718260  19023.5042
## 7334  73.36463   55955411  19427.9111
## 7335  73.69317   56155143  19986.0626
## 7336  74.00268   56317749  21115.9195
## 7337  73.94317   56433883  21795.2545
## 7338  74.35390   56501675  21952.8849
## 7339  74.81463   56543548  22027.3545
## 7340  74.64024   56564074  22276.8124
## 7341  75.38951   56576718  22990.2903
## 7342  75.47073   56593071  23626.7493
## 7343  75.77073   56596155  24301.1434
## 7344  76.21951   56601931  25074.2673
## 7345  76.37073   56629288  26113.3555
## 7346  76.81951   56671781  26977.9327
## 7347  76.97073   56719240  27490.6320
## 7348  77.01951   56758521  27894.2428
## 7349  77.41951   56797087  28107.8590
## 7350  77.72195   56831821  27851.1214
## 7351  77.92195   56843400  28444.4103
## 7352  78.17073   56844303  29265.0890
## 7353  78.52195   56860281  29627.4869
## 7354  78.82439   56890372  30153.7752
## 7355  78.97561   56906744  30690.9117
## 7356  79.42439   56916317  31184.6164
## 7357  79.77805   56942108  32350.9044
## 7358  80.12683   56974100  32963.6706
## 7359  80.22927   57059007  32998.2032
## 7360  79.98293   57313203  32897.3908
## 7361  80.78049   57685327  33150.4762
## 7362  80.78293   57969484  33257.7698
## 7363  81.28293   58143979  33751.7000
## 7364  81.43415   58438310  34081.0903
## 7365  81.48537   58826731  33530.3601
## 7366  81.63659   59095365  31615.2708
## 7367  82.03659   59277417  32058.1740
## 7368  82.18780   59379449  32229.4568
## 7369  82.23902   59539717  31184.5584
## 7370  82.69024   60233948  30257.6274
## 7371  83.09024   60789140  29979.9187
## 7372  82.54390   60730582  30242.3861
## 7373  83.24390   60627498  30685.6459
## 7374  82.94634   60536709  31244.2271
## 7375  83.34634   60421760  31593.4803
## 7376  83.49756   59729081  32119.7444
## 7377  82.34390   59449527  29358.1294
## 7378        NA   59066225  31511.7949
## 7379  64.77000    1628524          NA
## 7380  65.13300    1651067          NA
## 7381  65.46500    1676500          NA
## 7382  65.78400    1703660          NA
## 7383  66.10000    1730739          NA
## 7384  66.42000    1756508          NA
## 7385  66.74000    1780522   3945.1294
## 7386  67.05100    1803324   3965.6964
## 7387  67.34900    1825873   4141.7029
## 7388  67.63600    1849658   4316.3616
## 7389  67.91700    1875637   4770.1075
## 7390  68.20000    1904281   4813.8451
## 7391  68.49100    1935089   5590.3075
## 7392  68.79100    1966978   5197.9912
## 7393  69.09900    1998313   4900.0935
## 7394  69.41000    2028019   4815.9530
## 7395  69.71800    2055371   4433.7629
## 7396  70.01500    2080824   4265.7679
## 7397  70.29400    2105903   4212.7039
## 7398  70.55300    2132784   4115.5146
## 7399  70.79300    2162839   3826.4259
## 7400  71.01200    2196921   3866.4942
## 7401  71.21700    2234062   3880.8908
## 7402  71.41600    2271735   3889.3932
## 7403  71.61400    2306367   3771.9037
## 7404  71.82300    2335510   3615.1914
## 7405  72.05600    2358165   3647.8654
## 7406  72.31700    2375400   3905.6905
## 7407  72.60100    2389415   4037.0953
## 7408  72.90300    2403464   4301.3976
## 7409  73.20400    2419901   4451.6351
## 7410  73.48500    2439329   4629.8455
## 7411  73.72700    2461047   4678.7281
## 7412  73.91800    2484583   5070.8343
## 7413  74.05300    2509042   5090.8676
## 7414  74.13300    2533705   5159.7820
## 7415  74.16700    2558631   5103.7046
## 7416  74.17200    2583914   4996.1299
## 7417  74.16400    2608874   4832.8088
## 7418  74.15200    2632677   4839.2878
## 7419  74.14200    2654698   4841.3157
## 7420  74.13900    2674706   4869.7257
## 7421  74.14000    2692843   4933.5343
## 7422  74.14200    2709438   5083.0882
## 7423  74.14600    2725017   5120.9294
## 7424  74.14800    2740000   5138.4474
## 7425  74.14300    2754414   5259.7481
## 7426  74.12900    2768229   5308.4403
## 7427  74.10300    2781869   5239.5328
## 7428  74.07100    2795839   4986.8165
## 7429  74.03800    2810464   4888.5791
## 7430  74.01200    2825932   4945.9488
## 7431  74.00100    2842128   4887.5870
## 7432  74.01000    2858710   4884.3920
## 7433  74.04200    2875137   4889.9863
## 7434  74.09800    2891024   4907.9274
## 7435  74.17500    2906242   4949.3695
## 7436  74.26700    2920848   4973.7242
## 7437  74.36800    2934853   5043.5408
## 7438  74.47500    2948277   5065.3749
## 7439  74.58600    2961161   4539.0019
## 7440        NA    2973462   4728.1547
## 7441  67.66610   93216000   6260.6760
## 7442  68.31000   94055000   6952.1096
## 7443  68.59488   94933000   7501.4454
## 7444  69.65805   95900000   8055.0414
## 7445  70.13244   96903000   8902.4956
## 7446  70.20195   97952000   9319.7066
## 7447  70.98659   98851000  10217.4142
## 7448  71.27659   99879000  11232.9061
## 7449  71.61122  101011000  12537.8809
## 7450  71.83878  102219000  13935.6863
## 7451  71.95024  103403000  14114.3158
## 7452  72.88293  105697000  14456.8212
## 7453  73.50659  107188000  15455.1369
## 7454  73.75756  108707000  16463.2792
## 7455  74.39390  110162000  16046.7847
## 7456  75.05732  111573000  16333.6748
## 7457  75.45683  112775000  16801.9250
## 7458  75.89829  113872000  17370.6165
## 7459  76.03829  114913000  18120.7284
## 7460  76.33756  115890000  18953.3339
## 7461  76.09171  116807000  19334.3747
## 7462  76.41439  117661000  20011.8293
## 7463  76.92293  118480000  20525.2959
## 7464  76.96146  119307000  21122.9648
## 7465  77.36537  120083000  21912.1519
## 7466  77.65049  120837000  22898.9942
## 7467  78.06463  121482000  23527.7125
## 7468  78.48366  122069000  24503.0846
## 7469  78.39927  122578000  26026.8649
## 7470  78.81805  123069000  27199.9400
## 7471  78.83683  123478000  28422.2131
## 7472  79.10073  123964000  29308.2741
## 7473  79.15390  124425000  29462.6540
## 7474  79.29366  124829000  29232.4398
## 7475  79.68707  125178000  29466.7552
## 7476  79.53634  125472000  30171.1638
## 7477  80.20024  125757000  31046.1702
## 7478  80.42415  126057000  31276.1931
## 7479  80.50146  126400000  30795.0889
## 7480  80.57073  126631000  30636.2661
## 7481  81.07610  126843000  31430.6311
## 7482  81.41707  127149000  31476.0521
## 7483  81.56341  127445000  31416.1242
## 7484  81.76000  127718000  31830.2176
## 7485  82.03024  127761000  32515.1158
## 7486  81.92512  127773000  33098.5475
## 7487  82.32195  127854000  33531.5186
## 7488  82.50707  128001000  33990.0360
## 7489  82.58756  128063000  33557.6454
## 7490  82.93146  128047000  31651.0838
## 7491  82.84268  128070000  32942.2021
## 7492  82.59122  127833000  33011.1342
## 7493  83.09610  127629000  33518.4449
## 7494  83.33195  127445000  34239.8862
## 7495  83.58780  127276000  34386.9059
## 7496  83.79390  127141000  34960.6394
## 7497  83.98488  127076000  35242.1994
## 7498  84.09976  126972000  35861.9729
## 7499  84.21098  126811000  36117.2277
## 7500  84.35634  126633000  36081.0653
## 7501  84.61561  126261000  34556.4399
## 7502        NA  125681593  35278.4205
## 7503  52.65100     933102          NA
## 7504  53.43800     973983          NA
## 7505  54.22000    1010647          NA
## 7506  54.99500    1050212          NA
## 7507  55.76500    1102404          NA
## 7508  56.52600    1173603          NA
## 7509  57.27900    1267063          NA
## 7510  58.02200    1378995          NA
## 7511  58.75200    1500168          NA
## 7512  59.46800    1617427          NA
## 7513  60.17100    1721315          NA
## 7514  60.86400    1809193          NA
## 7515  61.54500    1883923          NA
## 7516  62.21500    1948443          NA
## 7517  62.86900    2007735          NA
## 7518  63.50200    2065916          NA
## 7519  64.10800    2123180   2698.7217
## 7520  64.68300    2179361   2847.3300
## 7521  65.22400    2237936   3179.8407
## 7522  65.73100    2303116   3732.6271
## 7523  66.20700    2377997   4019.4323
## 7524  66.65600    2464870   4543.9207
## 7525  67.08600    2563525   4676.0190
## 7526  67.50000    2671413   4387.5692
## 7527  67.89900    2784457   4390.0978
## 7528  68.28300    2900055   4101.0051
## 7529  68.64900    3015294   4161.3900
## 7530  68.99200    3131800   4099.6661
## 7531  69.31100    3256552   4000.2639
## 7532  69.60400    3399333   3421.0725
## 7533  69.87200    3565888   3252.2835
## 7534  70.11300    3760493   3133.5850
## 7535  70.33100    3977667   3387.6082
## 7536  70.52900    4201559   3350.9916
## 7537  70.71200    4410357   3351.0536
## 7538  70.88500    4588842   3420.4252
## 7539  71.05300    4732848   3385.5652
## 7540  71.21900    4848536   3414.1222
## 7541  71.38600    4943975   3449.0697
## 7542  71.55600    5031754   3503.7685
## 7543  71.73000    5122495   3587.8267
## 7544  71.90700    5217328   3708.2526
## 7545  72.08300    5317514   3848.8236
## 7546  72.25600    5434036   3923.0338
## 7547  72.42700    5580241   4147.5374
## 7548  72.59500    5765639   4341.1887
## 7549  72.76300    5991547   4515.5911
## 7550  72.93100    6255290   4678.8351
## 7551  73.09900    6556473   4786.7485
## 7552  73.26600    6893258   4781.6051
## 7553  73.42800    7261541   4644.1694
## 7554  73.58100    7662858   4521.4081
## 7555  73.72200    8089963   4386.7451
## 7556  73.85100    8518992   4274.5479
## 7557  73.96900    8918822   4221.0895
## 7558  74.07800    9266573   4164.1088
## 7559  74.18400    9554286   4119.2521
## 7560  74.29200    9785840   4105.7210
## 7561  74.40500    9965322   4109.7524
## 7562  74.52600   10101697   4133.5498
## 7563  74.65500   10203140   4028.9630
## 7564        NA   10269022   4091.5742
## 7565  58.36759    9934564          NA
## 7566  58.78159   10349422          NA
## 7567  59.19956   10756931          NA
## 7568  59.61954   11147860          NA
## 7569  60.03800   11511856          NA
## 7570  60.45195   11841926          NA
## 7571  60.85541   12132560          NA
## 7572  61.24339   12385706          NA
## 7573  61.61288   12611432          NA
## 7574  61.95988   12824614          NA
## 7575  62.27939   13036140          NA
## 7576  62.56690   13250211          NA
## 7577  62.82593   13463985          NA
## 7578  63.06093   13673014          NA
## 7579  63.27993   13869975          NA
## 7580  63.49188   14050227          NA
## 7581  63.70927   14212145          NA
## 7582  63.94010   14359629          NA
## 7583  64.19190   14499957          NA
## 7584  64.46673   14643133          NA
## 7585  66.62439   14796175          NA
## 7586  66.70610   14958897          NA
## 7587  66.78780   15128090          NA
## 7588  67.66220   15303316          NA
## 7589  68.53659   15483411          NA
## 7590  68.53659   15665594          NA
## 7591  68.91341   15852524          NA
## 7592  69.29024   16039253          NA
## 7593  68.84878   16205998          NA
## 7594  68.29024   16249500          NA
## 7595  68.33659   16348000   5831.0804
## 7596  67.60000   16451711   5156.9461
## 7597  67.40000   16439095   4887.3758
## 7598  65.40000   16380672   4453.5648
## 7599  64.90000   16145766   3949.0467
## 7600  63.50000   15816243   3700.7545
## 7601  63.60000   15578227   3776.0839
## 7602  64.00000   15334405   3901.3390
## 7603  64.50000   15071640   3893.9387
## 7604  65.63000   14928374   4037.4538
## 7605  65.45000   14883626   4446.4525
## 7606  65.76000   14858335   5055.3139
## 7607  65.95000   14858948   5550.5056
## 7608  65.74000   14909019   6046.3280
## 7609  66.06000   15012984   6580.8850
## 7610  65.86000   15147029   7155.3437
## 7611  66.15000   15308085   7837.6291
## 7612  66.34000   15484192   8438.1046
## 7613  67.11000   15776938   8554.8236
## 7614  68.39000   16092822   8487.5448
## 7615  68.45000   16321872   8979.3323
## 7616  68.69000   16557202   9506.7341
## 7617  69.52000   16792090   9823.6939
## 7618  70.62000   17035551  10264.2981
## 7619  71.44000   17288285  10539.0447
## 7620  71.97000   17542806  10510.7719
## 7621  72.41000   17794055  10476.3476
## 7622  72.95000   18037776  10758.5209
## 7623  73.15000   18276452  11053.3621
## 7624  73.18000   18513673  11402.7601
## 7625  71.37000   18755666  10974.2463
## 7626        NA   19002586  11264.9126
## 7627  46.76000    8120082    751.4767
## 7628  47.41700    8377693    671.7410
## 7629  48.05800    8647002    712.3702
## 7630  48.67400    8928510    750.4724
## 7631  49.26100    9222692    762.6027
## 7632  49.82100    9530163    752.8260
## 7633  50.36400    9851453    835.5380
## 7634  50.90200   10187487    835.1358
## 7635  51.44600   10539909    871.6486
## 7636  51.99800   10910677    909.0470
## 7637  52.55700   11301394    836.7620
## 7638  53.11800   11713046    986.3760
## 7639  53.67400   12146070   1113.7002
## 7640  54.21800   12600799   1136.8101
## 7641  54.74900   13077341   1139.9186
## 7642  55.27300   13575898   1107.7436
## 7643  55.80200   14096258   1089.8312
## 7644  56.33700   14638887   1148.6450
## 7645  56.87200   15205381   1182.2928
## 7646  57.39300   15797771   1224.6169
## 7647  57.88100   16417203   1244.3078
## 7648  58.31600   17063870   1242.3275
## 7649  58.67600   17736326   1213.2317
## 7650  58.94000   18431760   1182.7388
## 7651  59.09300   19146403   1158.5776
## 7652  59.12000   19877078   1163.9825
## 7653  59.01000   20622560   1202.4312
## 7654  58.77300   21382111   1228.5713
## 7655  58.42200   22153685   1259.3385
## 7656  57.96700   22935088   1273.4876
## 7657  57.40600   23724574   1282.7183
## 7658  56.73600   24521714   1258.8705
## 7659  55.97300   25326080   1209.1433
## 7660  55.15100   26136217   1175.8021
## 7661  54.31000   26950508   1170.2971
## 7662  53.48600   27768297   1185.8785
## 7663  52.70900   28589456   1199.5812
## 7664  52.01400   29415660   1171.4251
## 7665  51.44800   30250488   1176.5758
## 7666  51.05900   31098763   1170.8674
## 7667  50.92100   31964557   1145.9846
## 7668  51.10100   32848569   1157.2956
## 7669  51.60600   33751746   1132.4865
## 7670  52.41000   34678781   1134.5349
## 7671  53.47500   35635267   1160.4385
## 7672  54.73200   36624897   1195.7738
## 7673  56.09300   37649039   1238.5370
## 7674  57.46300   38705934   1287.2498
## 7675  58.76000   39791984   1255.0251
## 7676  59.93200   40901798   1261.3485
## 7677  60.95900   42030684   1326.3858
## 7678  61.85100   43178270   1357.2536
## 7679  62.65900   44343469   1381.9687
## 7680  63.41900   45519986   1397.3787
## 7681  64.13500   46700063   1430.4452
## 7682  64.79800   47878339   1464.5540
## 7683  65.39300   49051531   1489.7588
## 7684  65.90900   50221146   1510.9081
## 7685  66.34200   51392570   1559.8591
## 7686  66.69900   52573967   1602.7884
## 7687  66.99100   53771300   1563.1787
## 7688        NA   54985702   1643.5691
## 7689  47.06100      41196          NA
## 7690  47.55700      42234          NA
## 7691  48.07100      43283          NA
## 7692  48.60100      44342          NA
## 7693  49.14500      45392          NA
## 7694  49.69700      46429          NA
## 7695  50.25000      47429          NA
## 7696  50.79600      48403          NA
## 7697  51.32700      49354          NA
## 7698  51.83700      50267          NA
## 7699  52.32300      51142   2161.0309
## 7700  52.78200      51979   2077.5405
## 7701  53.21800      52775   2293.3710
## 7702  53.63300      53558   2732.3731
## 7703  54.02700      54334   3913.5107
## 7704  54.39900      55114   4064.3192
## 7705  54.74800      55922   2933.3680
## 7706  55.07400      56759   2756.8008
## 7707  55.38200      57613   2744.7145
## 7708  55.67900      58469   2391.2115
## 7709  55.97100      59296   1968.6319
## 7710  56.26600      60101   1878.0567
## 7711  56.56900      60887   1980.5690
## 7712  56.88600      61736   1937.7054
## 7713  57.22100      62745   1998.7974
## 7714  57.57900      63989   1824.2510
## 7715  57.96200      65504   1767.3313
## 7716  58.36600      67244   1563.7866
## 7717  58.78300      69087   1661.7097
## 7718  59.20900      70849   1565.9167
## 7719  59.63600      72394   1519.1715
## 7720  60.05300      73692   1492.4131
## 7721  60.45500      74767   1483.8583
## 7722  60.83700      75711   1478.0991
## 7723  61.19800      76668   1484.8152
## 7724  61.53900      77716   1464.7925
## 7725  61.86600      78904   1467.1914
## 7726  62.18800      80188   1467.7598
## 7727  62.50900      81558   1537.7344
## 7728  62.82900      82969   1488.3280
## 7729  63.14400      84405   1554.4447
## 7730  63.44600      85844   1505.9113
## 7731  63.73100      87308   1536.7393
## 7732  63.99500      88840   1540.5393
## 7733  64.24200      90498   1487.6743
## 7734  64.47800      92319   1530.5409
## 7735  64.71200      94341   1496.9987
## 7736  64.95300      96531   1492.8082
## 7737  65.20800      98760   1428.5993
## 7738  65.48000     100928   1409.1347
## 7739  65.76900     102930   1366.2480
## 7740  66.07200     104735   1366.3681
## 7741  66.38100     106359   1414.6117
## 7742  66.69000     107887   1452.6135
## 7743  66.99500     109387   1416.9879
## 7744  67.29100     110927   1535.1628
## 7745  67.57700     112529   1506.0717
## 7746  67.85100     114153   1481.0131
## 7747  68.11600     115842   1536.3918
## 7748  68.36900     117608   1505.1552
## 7749  68.61100     119446   1473.8880
## 7750        NA     121388          NA
## 7751  51.29700   11424189          NA
## 7752  51.67400   11665592          NA
## 7753  52.07600   11871726          NA
## 7754  52.61000   12065468          NA
## 7755  53.33500   12282417          NA
## 7756  54.26400   12547524          NA
## 7757  55.35600   12864947          NA
## 7758  56.50600   13222703          NA
## 7759  57.62500   13609976          NA
## 7760  58.68100   14010339          NA
## 7761  59.65600   14410391          NA
## 7762  60.54900   14809518          NA
## 7763  61.37900   15207765          NA
## 7764  62.16100   15593353          NA
## 7765  62.89600   15952077          NA
## 7766  63.57900   16274737          NA
## 7767  64.20600   16554744          NA
## 7768  64.77600   16796568          NA
## 7769  65.29400   17015984          NA
## 7770  65.76200   17235668          NA
## 7771  66.18600   17472144          NA
## 7772  66.57100   17731229          NA
## 7773  66.92400   18008568          NA
## 7774  67.25500   18298212          NA
## 7775  67.56900   18590142          NA
## 7776  67.90000   18877226          NA
## 7777  68.28400   19156791          NA
## 7778  68.71900   19431992          NA
## 7779  69.17700   19708316          NA
## 7780  69.61100   19993757          NA
## 7781  69.89600   20293057          NA
## 7782  69.87900   20609151          NA
## 7783  69.49200   20937407          NA
## 7784  68.74200   21265832          NA
## 7785  67.69800   21577979          NA
## 7786  66.53700   21862300          NA
## 7787  65.49500   22113428          NA
## 7788  64.77200   22335263          NA
## 7789  64.49300   22536754          NA
## 7790  64.68400   22731470          NA
## 7791  65.26800   22929078          NA
## 7792  66.08700   23132982          NA
## 7793  66.92500   23339453          NA
## 7794  67.61500   23542434          NA
## 7795  68.10200   23732740          NA
## 7796  68.38900   23904167          NA
## 7797  68.54000   24054866          NA
## 7798  68.67500   24188330          NA
## 7799  68.88400   24310143          NA
## 7800  69.18500   24428340          NA
## 7801  69.57100   24548840          NA
## 7802  70.01200   24673392          NA
## 7803  70.45400   24800638          NA
## 7804  70.85300   24929500          NA
## 7805  71.19800   25057793          NA
## 7806  71.48100   25183832          NA
## 7807  71.71100   25307665          NA
## 7808  71.91000   25429816          NA
## 7809  72.09500   25549606          NA
## 7810  72.27400   25666158          NA
## 7811  72.45300   25778815          NA
## 7812        NA   25887045          NA
## 7813  55.41554   25012374   1027.4685
## 7814  56.01498   25765673   1066.6105
## 7815  56.51232   26513030   1076.9208
## 7816  56.97061   27261747   1141.8207
## 7817  57.44093   27984155   1217.7263
## 7818  57.96829   28704674   1274.0415
## 7819  58.57517   29435571   1391.4202
## 7820  59.24146   30130983   1482.7265
## 7821  59.94461   30838302   1639.4530
## 7822  60.67502   31544266   1836.1459
## 7823  62.16341   32240827   1977.0710
## 7824  62.61220   32882704   2142.9007
## 7825  63.00976   33505406   2254.7980
## 7826  63.40732   34103149   2545.3162
## 7827  63.80488   34692266   2740.0886
## 7828  64.15366   35280725   2905.6238
## 7829  64.50244   35848523   3237.6830
## 7830  64.90000   36411795   3580.8192
## 7831  65.19756   36969185   3913.1239
## 7832  65.54634   37534236   4188.4223
## 7833  66.04634   38123775   4055.7908
## 7834  66.54634   38723248   4282.3434
## 7835  67.09512   39326352   4568.2591
## 7836  67.54634   39910403   5103.5230
## 7837  68.19512   40405956   5572.8326
## 7838  68.79512   40805744   5950.8004
## 7839  69.44634   41213674   6559.2907
## 7840  69.99756   41621690   7321.3928
## 7841  70.54878   42031247   8119.1680
## 7842  71.04878   42449038   8607.8658
## 7843  71.59756   42869283   9365.3950
## 7844  72.04634   43295704  10272.6207
## 7845  72.49756   43747962  10796.6047
## 7846  72.99756   44194628  11422.5147
## 7847  73.39756   44641540  12356.2783
## 7848  73.70000   45092991  13408.6814
## 7849  74.15122   45524681  14329.5393
## 7850  74.60244   45953580  15071.7564
## 7851  75.00488   46286503  14195.8131
## 7852  75.40976   46616677  15711.5640
## 7853  75.90976   47008111  16992.4791
## 7854  76.41220   47370164  17680.8455
## 7855  76.76585   47644736  18936.9517
## 7856  77.21463   47892330  19431.9711
## 7857  77.66585   48082519  20361.0693
## 7858  78.16829   48184561  21193.3575
## 7859  78.66829   48438292  22192.1851
## 7860  79.11951   48683638  23360.9057
## 7861  79.51707   49054708  23882.7305
## 7862  79.96829   49307835  23948.4722
## 7863  80.11707   49554112  25451.0042
## 7864  80.56829   49936638  26186.8975
## 7865  80.81951   50199853  26675.4402
## 7866  81.27073   50428893  27394.6503
## 7867  81.72195   50746659  28094.9177
## 7868  82.02439   51014947  28732.2311
## 7869  82.27561   51217803  29461.7840
## 7870  82.62683   51361911  30307.3952
## 7871  82.62683   51585058  31053.6379
## 7872  83.22683   51764822  31640.2146
## 7873  83.42683   51836239  31327.4094
## 7874        NA   51744876  32644.6714
## 7875        NA     947000          NA
## 7876        NA     966000          NA
## 7877        NA     994000          NA
## 7878        NA    1022000          NA
## 7879        NA    1050000          NA
## 7880        NA    1078000          NA
## 7881        NA    1106000          NA
## 7882        NA    1135000          NA
## 7883        NA    1163000          NA
## 7884        NA    1191000          NA
## 7885        NA    1219000          NA
## 7886        NA    1247000          NA
## 7887        NA    1278000          NA
## 7888        NA    1308000          NA
## 7889        NA    1339000          NA
## 7890        NA    1369000          NA
## 7891        NA    1400000          NA
## 7892        NA    1430000          NA
## 7893        NA    1460000          NA
## 7894        NA    1491000          NA
## 7895        NA    1521000          NA
## 7896  65.89756    1552000          NA
## 7897  66.19756    1582000          NA
## 7898  66.39756    1614000          NA
## 7899  66.59756    1647000          NA
## 7900  66.79756    1682000          NA
## 7901  66.99756    1717000          NA
## 7902  67.19756    1753000          NA
## 7903  67.39756    1791000          NA
## 7904  67.54878    1827000          NA
## 7905  67.74878    1862000          NA
## 7906  67.94878    1898000          NA
## 7907  68.10000    1932000          NA
## 7908  68.24878    1965000          NA
## 7909  68.40000    1997000          NA
## 7910  68.55122    2029000          NA
## 7911  68.70000    2059000          NA
## 7912  68.85122    2086000          NA
## 7913  68.95122    1966000          NA
## 7914  66.95122    1762000          NA
## 7915  67.95122    1700000          NA
## 7916  67.99756    1701154          NA
## 7917  67.94390    1702310          NA
## 7918  68.19512    1703466          NA
## 7919  68.49512    1704622          NA
## 7920  68.69512    1705780          NA
## 7921  68.94634    1719536          NA
## 7922  69.19756    1733404          NA
## 7923  69.44878    1747383   2621.4236
## 7924  69.64878    1761474   2731.3832
## 7925  69.90000    1775680   2843.3800
## 7926  70.20000    1791000   2997.2194
## 7927  70.49756    1807106   3021.3672
## 7928  70.79756    1818117   3163.4602
## 7929  71.09756    1812771   3279.0400
## 7930  71.34634    1788196   3520.7664
## 7931  71.84634    1777557   3739.1815
## 7932  72.29512    1791003   3890.1962
## 7933  72.69512    1797085   4009.1064
## 7934  73.09268    1788878   4219.0807
## 7935  71.08780    1790133   3990.9703
## 7936        NA    1806279   4316.3184
## 7937  59.34300     269026          NA
## 7938  60.09900     300581          NA
## 7939  60.84100     337346          NA
## 7940  61.56500     378756          NA
## 7941  62.26500     423900          NA
## 7942  62.93400     472032          NA
## 7943  63.56600     523169          NA
## 7944  64.15800     577164          NA
## 7945  64.71300     632911          NA
## 7946  65.23100     688972          NA
## 7947  65.71500     744444          NA
## 7948  66.16900     798639          NA
## 7949  66.60200     851918          NA
## 7950  67.02000     905639          NA
## 7951  67.42600     961773          NA
## 7952  67.82400    1021725          NA
## 7953  68.21700    1085866          NA
## 7954  68.60200    1153573          NA
## 7955  68.97700    1224063          NA
## 7956  69.34200    1296077          NA
## 7957  69.69300    1368680          NA
## 7958  70.02800    1439334          NA
## 7959  70.34400    1507636          NA
## 7960  70.64000    1576975          NA
## 7961  70.91400    1652150          NA
## 7962  71.16700    1735278          NA
## 7963  71.39800    1832302          NA
## 7964  71.61000    1938916          NA
## 7965  71.80500    2034850          NA
## 7966  71.98500    2092786          NA
## 7967  72.15000    2095350          NA
## 7968  72.30000    2031297          NA
## 7969  72.43500         NA          NA
## 7970  72.55600         NA          NA
## 7971  72.66600         NA          NA
## 7972  72.76400    1605907  34712.3110
## 7973  72.85200    1626858  34472.6275
## 7974  72.93100    1710257  33602.6468
## 7975  73.00400    1831121  32534.0128
## 7976  73.07400    1951642  29978.8255
## 7977  73.14200    2045123  29951.5666
## 7978  73.21000    2103273  29185.6140
## 7979  73.28000    2136991  29590.9721
## 7980  73.35500    2161626  34322.2468
## 7981  73.43900    2200498  37168.5540
## 7982  73.53800    2270196  39849.5969
## 7983  73.66000    2373661  40976.6769
## 7984  73.80700    2504026  41170.6708
## 7985  73.97600    2656010  39777.2869
## 7986  74.16200    2821041  34800.3088
## 7987  74.35800    2991884  32035.3785
## 7988  74.55000    3168054  33166.9196
## 7989  74.72800    3348852  33455.2390
## 7990  74.88500    3526382  32136.1332
## 7991  75.01900    3690939  30857.1604
## 7992  75.13000    3835588  29869.5528
## 7993  75.22400    3956862  29801.2380
## 7994  75.31100    4056102  27702.1879
## 7995  75.39800    4137314  27819.4480
## 7996  75.48900    4207077  27207.1318
## 7997  75.58600    4270563  24429.2205
## 7998        NA    4328553          NA
## 7999  56.12807    2172300          NA
## 8000  56.56412    2255900          NA
## 8001  57.00266    2333400          NA
## 8002  57.44320    2413700          NA
## 8003  57.88224    2495300          NA
## 8004  58.31527    2573300          NA
## 8005  58.73829    2655300          NA
## 8006  59.14632    2736500          NA
## 8007  59.53585    2818300          NA
## 8008  59.90388    2894800          NA
## 8009  60.24490    2959900          NA
## 8010  60.55441    3022300          NA
## 8011  60.83541    3088200          NA
## 8012  61.09290    3153800          NA
## 8013  61.33290    3223900          NA
## 8014  61.56485    3292400          NA
## 8015  61.79724    3358700          NA
## 8016  62.04007    3423900          NA
## 8017  62.30090    3487100          NA
## 8018  62.58576    3552000          NA
## 8019  62.90378    3617400          NA
## 8020  63.26363    3685800          NA
## 8021  63.65888    3759300          NA
## 8022  64.07751    3838300          NA
## 8023  64.50493    3916400          NA
## 8024  64.91895    3990300          NA
## 8025  65.29378    4066500   1022.8667
## 8026  65.61120    4144600   1036.7103
## 8027  65.85859    4218400   1153.0252
## 8028  67.90732    4307500   1160.6762
## 8029  68.29756    4391200   1203.4821
## 8030  68.55122    4463600   1089.9085
## 8031  68.10244    4515400    928.3156
## 8032  67.19268    4516700    784.5784
## 8033  66.03902    4515100    627.2168
## 8034  65.79024    4560400    587.3052
## 8035  66.54390    4628400    619.6729
## 8036  66.89268    4696400    671.2531
## 8037  67.05122    4769000    675.0605
## 8038  68.65610    4840400    689.4175
## 8039  68.55854    4898400    718.3373
## 8040  68.70732    4945100    749.4198
## 8041  68.15610    4990700    742.4437
## 8042  68.25610    5043300    786.3518
## 8043  68.15366    5104700    831.4843
## 8044  67.95610    5162600    820.7160
## 8045  67.69512    5218400    837.1338
## 8046  67.89512    5268400    900.0255
## 8047  68.45122    5318700    966.4154
## 8048  69.10244    5383300    982.3772
## 8049  69.30000    5447900    966.1507
## 8050  69.60244    5514600   1011.3155
## 8051  70.00244    5607200    993.7374
## 8052  70.20244    5719600   1080.5482
## 8053  70.40244    5835500   1101.7053
## 8054  70.65122    5956900   1121.0828
## 8055  70.95122    6079500   1146.1032
## 8056  71.20000    6198200   1177.4387
## 8057  71.40000    6322800   1197.6107
## 8058  71.60000    6456200   1226.8245
## 8059  71.80000    6579900   1102.6644
## 8060        NA    6694200   1122.9701
## 8061  43.20400    2120892          NA
## 8062  43.51100    2170340          NA
## 8063  43.81700    2221123          NA
## 8064  44.12100    2273352          NA
## 8065  44.42400    2327137          NA
## 8066  44.72800    2382586          NA
## 8067  45.03300    2439197          NA
## 8068  45.34000    2496927          NA
## 8069  45.65000    2556845          NA
## 8070  45.96200    2620448          NA
## 8071  46.27300    2688429          NA
## 8072  46.57800    2762264          NA
## 8073  46.87600    2840842          NA
## 8074  47.16600    2919288          NA
## 8075  47.44900    2990963          NA
## 8076  47.72200    3051583          NA
## 8077  47.98500    3098962          NA
## 8078  48.24400    3135839          NA
## 8079  48.50300    3168838          NA
## 8080  48.77100    3207331          NA
## 8081  49.06100    3258149          NA
## 8082  49.38600    3323353          NA
## 8083  49.75300    3401193          NA
## 8084  50.16200    3489910          NA
## 8085  50.61000    3586315    588.1993
## 8086  51.08400    3687889    600.9989
## 8087  51.56600    3794204    612.6957
## 8088  52.04000    3905530    586.7442
## 8089  52.49700    4020817    558.4642
## 8090  52.93500    4138845    619.5281
## 8091  53.36400    4258471    642.4946
## 8092  53.79900    4379234    651.6210
## 8093  54.25800    4500346    669.3389
## 8094  54.75300    4619946    690.5618
## 8095  55.28500    4735837    728.6273
## 8096  55.85100    4846477    762.0556
## 8097  56.44000    4951189    797.6200
## 8098  57.04000    5050308    835.7031
## 8099  57.63700    5144601    852.9355
## 8100  58.22500    5235339    899.3912
## 8101  58.80300    5323701    935.7513
## 8102  59.37200    5409584    973.8598
## 8103  59.93700    5493247   1015.7901
## 8104  60.50200    5576640   1061.3064
## 8105  61.06500    5662199   1111.7245
## 8106  61.62500    5751675   1172.2173
## 8107  62.18200    5846075   1252.6939
## 8108  62.73100    5944950   1325.4416
## 8109  63.27100    6046630   1405.1235
## 8110  63.79700    6148621   1485.4766
## 8111  64.30600    6249168   1586.2029
## 8112  64.79700    6347564   1687.1474
## 8113  65.26700    6444527   1795.1376
## 8114  65.71700    6541302   1910.5311
## 8115  66.14400    6639763   2025.4722
## 8116  66.54600    6741160   2140.0443
## 8117  66.92400    6845848   2255.3119
## 8118  67.27700    6953031   2373.5974
## 8119  67.61000    7061498   2483.1616
## 8120  67.92300    7169456   2579.2537
## 8121  68.21900    7275556   2554.4255
## 8122        NA    7379358   2582.1699
## 8123  50.24723 1096903448    847.0214
## 8124  50.74733 1099284940    809.2828
## 8125  51.38669 1113927919    822.7643
## 8126  52.25775 1139889997    838.0568
## 8127  53.36279 1165421495    881.5853
## 8128  54.66518 1191679434    922.2467
## 8129  56.04042 1220687497    972.7632
## 8130  57.39654 1248850553    966.5163
## 8131  58.68184 1277803242    992.9653
## 8132  59.78609 1308225875   1069.2229
## 8133  60.76984 1339320296   1162.1758
## 8134  61.59474 1370950386   1227.7633
## 8135  62.32412 1400911434   1291.9742
## 8136  62.99806 1429901917   1381.1180
## 8137  63.65317 1457475769   1429.2715
## 8138  64.19273 1482809855   1474.4327
## 8139  64.75021 1506611986   1546.0991
## 8140  65.26674 1528866928   1626.7386
## 8141  65.74549 1551073484   1709.6230
## 8142  66.16103 1573488423   1812.4621
## 8143  66.54978 1595481006   1935.7486
## 8144  66.94805 1618039026   1920.3317
## 8145  67.31852 1642764734   1934.7870
## 8146  67.60373 1667457285   1938.4821
## 8147  67.83571 1691255626   2062.9908
## 8148  68.12928 1715762768   2187.5568
## 8149  68.48471 1741726104   2279.7522
## 8150  68.67784 1769123601   2389.5107
## 8151  68.84822 1796650131   2480.0903
## 8152  68.95924 1823252483   2552.7927
## 8153  69.06426 1848493286   2529.9034
## 8154  69.15436 1872533228   2523.7161
## 8155  69.15321 1892668417   2514.3569
## 8156  69.13239 1913821985   2595.8097
## 8157  69.25032 1934464425   2683.5897
## 8158  69.45170 1955853024   2804.6936
## 8159  69.76825 1975201502   2918.2939
## 8160  70.09277 1994262421   3049.9474
## 8161  70.39162 2012567157   3106.4966
## 8162  70.61953 2029606212   3223.1182
## 8163  70.90314 2045117456   3421.8373
## 8164  71.21180 2059865510   3573.8186
## 8165  71.49905 2073728615   3762.7201
## 8166  71.79118 2087283920   3993.3661
## 8167  72.11858 2100722053   4292.6243
## 8168  72.40168 2114284047   4595.7964
## 8169  72.75629 2127728043   4991.0269
## 8170  73.08147 2140885484   5467.8837
## 8171  73.37783 2154327657   5810.5065
## 8172  73.70314 2167824335   5988.8622
## 8173  73.98396 2180813069   6432.7197
## 8174  74.31786 2194720542   6849.7601
## 8175  74.60982 2210411890   7200.0383
## 8176  74.91947 2226143139   7553.5769
## 8177  75.19972 2241445370   7892.2508
## 8178  75.47272 2256036257   8208.0519
## 8179  75.74817 2270527108   8518.8648
## 8180  76.01768 2285348589   8912.6676
## 8181  76.22766 2297874675   9343.4406
## 8182  76.44129 2308520840   9737.8284
## 8183  76.43901 2316803603   9711.4562
## 8184        NA 2322070390  10386.4743
## 8185  56.07767  219828794   3279.0104
## 8186  56.54932  225912719   3387.0883
## 8187  57.00528  232183258   3437.5354
## 8188  57.44666  238612680   3412.0338
## 8189  57.87529  245147710   3560.2300
## 8190  58.29637  251760583   3662.4850
## 8191  58.71506  258440584   3743.7925
## 8192  59.13550  265187879   3806.0310
## 8193  59.56155  272006857   3973.0528
## 8194  59.99483  278898334   4142.1110
## 8195  60.43545  285867424   4304.5957
## 8196  60.88114  292913867   4492.8869
## 8197  61.32734  300028905   4700.6987
## 8198  61.76895  307224818   4958.8084
## 8199  62.20355  314508488   5148.1528
## 8200  62.63051  321883714   5208.8963
## 8201  63.04782  329348136   5368.7266
## 8202  63.45824  336897935   5505.3912
## 8203  63.86230  344553109   5622.7894
## 8204  64.26000  352320721   5902.7597
## 8205  64.65184  360211832   6160.8680
## 8206  65.03701  368220724   6075.8790
## 8207  65.41725  376337306   5927.7382
## 8208  65.78965  384527729   5690.2476
## 8209  66.15818  392750803   5786.9666
## 8210  66.52329  400974913   5851.1941
## 8211  66.88588  409183996   5953.6016
## 8212  67.24680  417376183   6025.3109
## 8213  67.60394  425549887   5946.1634
## 8214  67.96019  433708712   5938.9548
## 8215  68.31373  441855797   5801.5717
## 8216  68.66521  449968703   5867.4556
## 8217  69.01387  458041493   5910.6028
## 8218  69.35812  466082322   6051.0873
## 8219  69.69894  474089591   6268.9138
## 8220  70.03639  482060085   6217.4524
## 8221  70.37228  490002410   6365.0306
## 8222  70.70664  497889881   6595.5403
## 8223  71.03678  505687097   6665.5707
## 8224  71.36265  513366691   6608.1024
## 8225  71.68739  520903474   6744.3908
## 8226  71.99312  528283130   6682.6481
## 8227  72.28763  535509387   6627.2142
## 8228  72.56226  542599527   6707.1526
## 8229  72.81920  549590680   6991.7733
## 8230  73.06053  556504216   7181.8247
## 8231  73.28746  563337657   7453.6995
## 8232  73.50179  570091479   7754.8663
## 8233  73.70416  576783743   7950.8700
## 8234  73.90419  583430021   7703.7427
## 8235  74.09722  589932530   8108.5640
## 8236  74.28312  596538052   8375.5623
## 8237  74.46145  603094656   8495.2504
## 8238  74.63280  609595811   8643.7687
## 8239  74.79905  615999056   8670.7751
## 8240  74.96169  622301041   8629.0096
## 8241  75.12202  628493594   8530.4635
## 8242  75.28209  634566052   8608.6465
## 8243  75.44085  640483827   8668.3402
## 8244  75.60150  646431661   8650.8735
## 8245  75.76243  652365260   8000.2270
## 8246        NA  658089208   8466.1491
## 8247  55.49554  195990480   3141.1801
## 8248  55.97613  201468291   3244.5970
## 8249  56.43975  207117533   3292.8183
## 8250  56.88731  212913161   3254.6848
## 8251  57.32115  218820356   3405.4018
## 8252  57.74642  224812280   3508.6113
## 8253  58.16830  230880082   3573.6824
## 8254  58.59133  237024250   3634.9347
## 8255  59.01917  243239384   3803.6942
## 8256  59.45368  249522963   3966.4846
## 8257  59.89483  255873463   4131.5224
## 8258  60.34048  262286392   4313.9015
## 8259  60.78644  268760622   4533.8164
## 8260  61.22753  275303005   4811.3263
## 8261  61.66192  281923578   5011.6056
## 8262  62.08921  288629183   5101.7962
## 8263  62.50729  295415940   5259.6813
## 8264  62.91926  302282486   5385.2676
## 8265  63.32537  309241517   5485.6870
## 8266  63.72608  316308994   5754.4517
## 8267  64.12203  323491986   6004.0261
## 8268  64.51249  330793664   5907.1233
## 8269  64.89955  338198728   5784.1815
## 8270  65.27936  345670337   5563.4123
## 8271  65.65694  353161237   5656.9893
## 8272  66.03261  360635576   5719.5981
## 8273  66.40770  368077531   5814.0709
## 8274  66.78323  375488008   5875.2790
## 8275  67.15606  382868188   5782.8356
## 8276  67.52988  390225426   5757.4816
## 8277  67.90196  397563135   5618.4476
## 8278  68.27279  404870993   5674.4334
## 8279  68.64121  412137640   5691.8825
## 8280  69.00437  419365508   5823.8804
## 8281  69.36351  426562028   6037.1055
## 8282  69.71812  433730552   5962.8341
## 8283  70.06976  440873439   6099.4697
## 8284  70.41871  447979683   6312.1614
## 8285  70.76197  455022950   6366.0911
## 8286  71.09994  461962271   6300.1905
## 8287  71.42890  468775587   6429.4451
## 8288  71.74452  475440986   6352.3715
## 8289  72.04638  481959768   6293.2560
## 8290  72.33027  488349113   6366.3217
## 8291  72.59766  494646419   6626.8828
## 8292  72.84908  500875746   6811.1198
## 8293  73.08509  507046299   7076.4804
## 8294  73.30944  513157641   7373.9229
## 8295  73.52451  519213109   7568.0281
## 8296  73.73261  525213960   7326.0163
## 8297  73.93482  531056827   7732.1624
## 8298  74.13239  536993385   7989.7912
## 8299  74.32531  542860814   8091.5637
## 8300  74.51330  548716683   8234.9478
## 8301  74.69784  554632891   8257.5835
## 8302  74.87909  560649920   8203.0039
## 8303  75.05644  566801404   8090.1985
## 8304  75.23087  573044918   8162.8703
## 8305  75.40154  579255220   8206.8951
## 8306  75.57018  585257302   8178.0614
## 8307  75.73687  590928198   7569.6557
## 8308        NA  596217644   7985.0715
## 8309  55.65343  209749023   3266.8026
## 8310  56.12639  215629972   3372.1389
## 8311  56.58227  221676249   3417.6019
## 8312  57.02216  227866079   3385.0134
## 8313  57.44892  234169957   3530.7537
## 8314  57.86817  240564863   3627.1012
## 8315  58.28568  247044234   3703.1150
## 8316  58.70617  253607485   3760.2609
## 8317  59.13344  260246118   3925.1805
## 8318  59.56890  266952916   4087.5068
## 8319  60.01228  273723962   4246.6118
## 8320  60.46096  280552945   4431.2997
## 8321  60.91031  287442489   4639.1202
## 8322  61.35521  294409011   4899.1671
## 8323  61.79398  301475452   5098.3497
## 8324  62.22644  308657753   5159.8432
## 8325  62.65070  315955197   5314.9719
## 8326  63.06976  323363576   5441.7205
## 8327  63.48387  330890816   5547.6410
## 8328  63.89303  338545320   5824.0280
## 8329  64.29736  346328178   6092.2679
## 8330  64.69592  354241995   5986.4548
## 8331  65.09011  362272025   5826.8581
## 8332  65.47643  370377355   5579.9113
## 8333  65.85879  378506071   5661.4482
## 8334  66.23762  386619091   5723.9101
## 8335  66.61406  394697236   5825.5939
## 8336  66.98932  402742139   5897.4304
## 8337  67.36102  410761042   5804.5008
## 8338  67.73224  418769937   5791.4062
## 8339  68.10042  426777889   5663.1975
## 8340  68.46556  434776652   5745.8916
## 8341  68.82638  442751009   5800.2696
## 8342  69.18049  450695871   5954.4641
## 8343  69.52902  458608078   6172.9161
## 8344  69.87220  466483148   6111.5010
## 8345  70.21227  474321040   6254.7329
## 8346  70.55015  482112390   6481.6957
## 8347  70.88358  489832061   6546.4467
## 8348  71.21288  497441659   6471.6030
## 8349  71.53436  504921279   6600.8246
## 8350  71.84356  512247446   6523.4149
## 8351  72.13921  519420841   6465.1197
## 8352  72.41716  526462542   6546.5559
## 8353  72.67841  533415243   6817.1726
## 8354  72.92379  540306150   7006.9795
## 8355  73.15409  547139431   7276.9306
## 8356  73.37328  553909998   7581.1369
## 8357  73.58363  560624662   7783.3847
## 8358  73.78690  567289597   7536.1511
## 8359  73.98335  573800616   7952.3942
## 8360  74.17297  580428448   8225.8372
## 8361  74.35527  586999600   8346.8728
## 8362  74.53025  593506947   8498.7001
## 8363  74.70018  599935349   8527.9219
## 8364  74.86656  606271936   8480.6258
## 8365  75.03056  612511541   8381.2287
## 8366  75.19428  618653508   8463.5814
## 8367  75.35733  624698076   8527.4806
## 8368  75.52039  630644771   8508.2175
## 8369  75.68282  636492840   7875.0756
## 8370        NA  642239838   8330.9321
## 8371  69.78683    2120979          NA
## 8372  70.03244    2152681          NA
## 8373  69.43049    2181586          NA
## 8374  69.82902    2210919          NA
## 8375  71.02805    2240623          NA
## 8376  70.72659    2265919          NA
## 8377  70.70732    2283217          NA
## 8378  70.39390    2301220          NA
## 8379  70.04293    2323619          NA
## 8380  69.79683    2343173          NA
## 8381  69.83537    2359164          NA
## 8382  70.16463    2376389          NA
## 8383  69.87878    2395674          NA
## 8384  69.81341    2415819          NA
## 8385  69.74098    2437186          NA
## 8386  68.92537    2456130          NA
## 8387  69.04780    2470989          NA
## 8388  69.10463    2485073          NA
## 8389  68.98780    2497921          NA
## 8390  68.49561    2505953          NA
## 8391  68.80854    2511701          NA
## 8392  68.78634    2519421          NA
## 8393  69.32829    2531080          NA
## 8394  69.11902    2546011          NA
## 8395  69.16293    2562047          NA
## 8396  69.29146    2578873          NA
## 8397  70.62244    2599892          NA
## 8398  70.69293    2626583          NA
## 8399  70.61537    2653434          NA
## 8400  70.15537    2666955          NA
## 8401  69.27317    2663151          NA
## 8402  69.03244    2650581          NA
## 8403  68.39610    2614338          NA
## 8404  66.72268    2563290          NA
## 8405  65.66439    2520742          NA
## 8406  66.39122    2485056   4970.6857
## 8407  68.77659    2457222   5157.0905
## 8408  69.34927    2432851   5669.0442
## 8409  69.01220    2410019   6085.3411
## 8410  69.74293    2390482   6304.1693
## 8411  70.31463    2367550   6726.5049
## 8412  70.76098    2337170   7245.1448
## 8413  70.96098    2310173   7849.2826
## 8414  71.26585    2287955   8593.0311
## 8415  72.02683    2263122   9406.8031
## 8416  71.35610    2238799  10527.9127
## 8417  70.86585    2218357  11896.2208
## 8418  71.01951    2200325  13186.2473
## 8419  72.41951    2177322  12893.4363
## 8420  73.08049    2141669  11240.4012
## 8421  73.48293    2097555  10963.6787
## 8422  73.57561    2059709  11451.4514
## 8423  73.77805    2034319  12410.3080
## 8424  73.98293    2012647  12796.1677
## 8425  74.12439    1993782  13162.6841
## 8426  74.48049    1977527  13786.4568
## 8427  74.58049    1959537  14242.4328
## 8428  74.62927    1942248  14845.2772
## 8429  74.78293    1927174  15558.2761
## 8430  75.38780    1913822  16056.0352
## 8431  75.38780    1900449  15559.5946
## 8432        NA    1883162  16406.2260
## 8433  40.30519  240454708          NA
## 8434  40.76766  246047924          NA
## 8435  41.23086  251832862          NA
## 8436  41.69311  257838094          NA
## 8437  42.14935  264101960          NA
## 8438  42.58424  270646667          NA
## 8439  42.97853  277496711          NA
## 8440  43.32097  284630101          NA
## 8441  43.60836  291965350          NA
## 8442  43.84710  299390774          NA
## 8443  44.05612  306831524          NA
## 8444  44.26273  314257039          NA
## 8445  44.49442  321707146          NA
## 8446  44.77194  329263985          NA
## 8447  45.10824  337046102          NA
## 8448  45.51167  345142878          NA
## 8449  45.98171  353588445          NA
## 8450  46.49718  362368951          NA
## 8451  47.02989  371467960          NA
## 8452  47.55627  380850814          NA
## 8453  48.06029  390496946    652.4251
## 8454  48.53966  400410427    656.1576
## 8455  49.00177  410619225    649.7502
## 8456  49.45032  421154964    646.2984
## 8457  49.88255  432058248    641.7206
## 8458  50.28745  443361310    632.8818
## 8459  50.65172  455060691    639.2532
## 8460  50.97074  467154411    650.8639
## 8461  51.24722  479674708    648.7037
## 8462  51.49267  492660240    646.4718
## 8463  51.72897  506129051    631.6880
## 8464  51.98220  520111718    627.0575
## 8465  52.26917  534575828    615.1301
## 8466  52.59293  549399532    599.2523
## 8467  52.94589  564416992    588.8969
## 8468  53.32094  579513541    606.8495
## 8469  53.71578  594629550    624.4411
## 8470  54.12861  609808367    644.9368
## 8471  54.55854  625164142    654.0293
## 8472  55.00700  640865573    663.2670
## 8473  55.47644  657030890    674.6813
## 8474  55.97247  673713879    692.6250
## 8475  56.49958  690867506    709.2148
## 8476  57.05801  708388980    726.5513
## 8477  57.64382  726127048    753.6752
## 8478  58.25287  743981227    789.7029
## 8479  58.88039  761918122    824.1578
## 8480  59.51770  780000109    863.2649
## 8481  60.15421  798338725    896.9042
## 8482  60.78071  817092371    910.4903
## 8483  61.38675  836378625    944.6993
## 8484  61.96535  856228779    950.4975
## 8485  62.51336  876617729    948.3494
## 8486  63.02859  897536802    978.1639
## 8487  63.50725  918959067   1008.6266
## 8488  63.94607  940860189   1009.4246
## 8489  64.34419  963241392   1025.5356
## 8490  64.70628  986099903   1045.1031
## 8491  65.03827 1009398577   1065.6793
## 8492  65.34393 1033088986   1091.9387
## 8493  65.62894 1057131013   1073.9870
## 8494        NA 1081504804   1073.8926
## 8495  63.26700    1804935          NA
## 8496  63.57500    1864613          NA
## 8497  63.87100    1925295          NA
## 8498  64.15700    1984999          NA
## 8499  64.43500    2041231          NA
## 8500  64.70900    2092374          NA
## 8501  64.98200    2136617          NA
## 8502  65.25500    2174732          NA
## 8503  65.52800    2210769          NA
## 8504  65.80000    2250454          NA
## 8505  66.06700    2297436          NA
## 8506  66.32300    2354046          NA
## 8507  66.56500    2417837          NA
## 8508  66.78900    2481943          NA
## 8509  66.99500    2536772          NA
## 8510  67.18300    2575746          NA
## 8511  67.35200    2596409          NA
## 8512  67.50700    2601734          NA
## 8513  67.65600    2597202          NA
## 8514  67.80200    2590911          NA
## 8515  67.95200    2588928          NA
## 8516  68.11300    2594299          NA
## 8517  68.28700    2606148          NA
## 8518  68.47800    2622072          NA
## 8519  68.68900    2638056          NA
## 8520  68.91800    2651992          NA
## 8521  69.16300    2660873          NA
## 8522  69.42000    2667957          NA
## 8523  69.68900    2684682   5062.3093
## 8524  69.96900    2726438   2868.6845
## 8525  70.26600    2803032   3530.6504
## 8526  70.58400    2921700   5062.1552
## 8527  70.92900    3076133   5598.3751
## 8528  71.30000    3246129   5876.3344
## 8529  71.69900    3403359   6059.1439
## 8530  72.12500    3528379   6221.3528
## 8531  72.57600    3610663   6765.7101
## 8532  73.04600    3658425   6747.8255
## 8533  73.52800    3693514   6928.7268
## 8534  74.01700    3747762   6792.5459
## 8535  74.50700    3842774   6713.4948
## 8536  74.99900    3990999   6712.3591
## 8537  75.48800    4182205   6624.7462
## 8538  75.96900    4388378   6517.2480
## 8539  76.43200    4569377   6677.1639
## 8540  76.86500    4698761   6667.6988
## 8541  77.26000    4759760   6684.2414
## 8542  77.60900    4767347   7294.9578
## 8543  77.91100    4764745   7960.8919
## 8544  78.16100    4813026   8687.4333
## 8545  78.36000    4953064   9115.0595
## 8546  78.50700    5202022   8754.1066
## 8547  78.61100    5537620   8434.4966
## 8548  78.68300    5913016   8201.3854
## 8549  78.73200    6261046   7937.9015
## 8550  78.76800    6532681   7643.0087
## 8551  78.80000    6714281   7551.8904
## 8552  78.83300    6819373   7502.6545
## 8553  78.87500    6859408   7318.2875
## 8554  78.93000    6855709   6815.9090
## 8555  79.00400    6825442   5072.4558
## 8556        NA    6769151   4576.6087
## 8557  47.91900     837264    231.1370
## 8558  48.16200     852892    231.1330
## 8559  48.38300     869132    261.5889
## 8560  48.59000     886061    283.8283
## 8561  48.79700     903757    301.2313
## 8562  49.01500     922307    301.5311
## 8563  49.25400     941798    294.0933
## 8564  49.52300     962279    319.2424
## 8565  49.82900     983683    311.1495
## 8566  50.18000    1005911    308.9827
## 8567  50.58400    1028930    308.6465
## 8568  51.04800    1052619    317.1285
## 8569  51.56500    1077102    309.2918
## 8570  52.12900    1102885    381.8202
## 8571  52.73100    1130634    413.3445
## 8572  53.36700    1160795    348.1986
## 8573  54.03000    1193517    376.0703
## 8574  54.70900    1228527    445.0333
## 8575  55.39000    1265211    511.2825
## 8576  56.05800    1302670    510.9509
## 8577  56.70200    1340258    482.9900
## 8578  57.31900    1377808    473.0904
## 8579  57.90100    1415362    481.0650
## 8580  58.43700    1452727    478.0007
## 8581  58.91000    1489685    491.9423
## 8582  59.30900    1526132    492.7280
## 8583  59.63200    1561687    504.0681
## 8584  59.86800    1596395    496.7073
## 8585  60.00000    1630993    527.9907
## 8586  60.00300    1666564    546.6666
## 8587  59.83700    1703757    567.0600
## 8588  59.46400    1742534    593.0668
## 8589  58.86800    1782284    620.1755
## 8590  58.05000    1822237    627.8675
## 8591  57.02200    1861323    651.4401
## 8592  55.78200    1898598    659.6680
## 8593  54.33400    1934294    683.7348
## 8594  52.72800    1968054    696.8945
## 8595  51.03400    1997524    697.1707
## 8596  49.32800    2019732    692.7872
## 8597  47.69100    2032805    715.0085
## 8598  46.19700    2035738    739.4073
## 8599  44.89800    2029832    746.9263
## 8600  43.84500    2018355    785.4254
## 8601  43.08300    2005953    803.6559
## 8602  42.65800    1996115    835.6098
## 8603  42.59500    1989933    873.6626
## 8604  42.85400    1986926    911.6284
## 8605  43.38400    1987130    961.8700
## 8606  44.14600    1990135    948.3595
## 8607  45.10000    1995575    995.5814
## 8608  46.20700    2003793   1037.2485
## 8609  47.41600    2014988   1096.8285
## 8610  48.66300    2028528   1109.0371
## 8611  49.89100    2043448   1119.7717
## 8612  51.03800    2059011   1146.0647
## 8613  52.05900    2075041   1178.0185
## 8614  52.94700    2091532   1132.0093
## 8615  53.70500    2108327   1109.2559
## 8616  54.33100    2125267   1126.8438
## 8617  54.83600    2142252   1033.4321
## 8618        NA    2159067   1035.8002
## 8619  34.26400    1118655          NA
## 8620  34.56000    1142304          NA
## 8621  34.91100    1166651          NA
## 8622  35.32200    1191796          NA
## 8623  35.79600    1217905          NA
## 8624  36.32400    1245104          NA
## 8625  36.89500    1273458          NA
## 8626  37.49100    1303032          NA
## 8627  38.09900    1333980          NA
## 8628  38.71400    1366500          NA
## 8629  39.33800    1400730          NA
## 8630  39.98000    1436740          NA
## 8631  40.65000    1474567          NA
## 8632  41.34600    1514364          NA
## 8633  42.06100    1556288          NA
## 8634  42.78600    1600454          NA
## 8635  43.51400    1645833          NA
## 8636  44.22600    1692155          NA
## 8637  44.90200    1740919          NA
## 8638  45.52000    1794251          NA
## 8639  46.05300    1852991          NA
## 8640  46.47400    1918832          NA
## 8641  46.77600    1989477          NA
## 8642  46.96200    2057232          NA
## 8643  47.03800    2111667          NA
## 8644  47.00400    2145756          NA
## 8645  46.86200    2158434          NA
## 8646  46.64500    2153312          NA
## 8647  46.39900    2134105          NA
## 8648  46.17400    2106429          NA
## 8649  46.04600    2075917          NA
## 8650  46.09700    2040141          NA
## 8651  46.35700    2001612          NA
## 8652  46.83200    1976701          NA
## 8653  47.50600    1986491          NA
## 8654  48.31400    2044657          NA
## 8655  49.16300    2160480          NA
## 8656  49.96300    2326210          NA
## 8657  50.65700    2517472          NA
## 8658  51.23400    2699708          NA
## 8659  51.73400    2848447    775.9638
## 8660  52.23600    2953928    770.1062
## 8661  52.82600    3024727    780.3815
## 8662  53.55400    3077055    535.8640
## 8663  54.42200    3135654    539.6262
## 8664  55.39300    3218114    553.5676
## 8665  56.40000    3329211    578.1373
## 8666  57.36500    3461911    608.9904
## 8667  58.22900    3607863    626.1106
## 8668  58.97100    3754129    633.6107
## 8669  59.60000    3891357    648.5527
## 8670  60.14600    4017446    679.7146
## 8671  60.66300    4135662    713.0673
## 8672  61.18600    4248337    754.4585
## 8673  61.72300    4359508    740.3760
## 8674  62.26900    4472229    721.5811
## 8675  62.80200    4586788    692.6189
## 8676  63.29500    4702224    692.2030
## 8677  63.73000    4818976    683.2513
## 8678  64.10400    4937374    650.4134
## 8679  64.42300    5057677    616.0054
## 8680        NA    5180208    625.4920
## 8681  42.60900    1448416          NA
## 8682  44.21100    1498076          NA
## 8683  45.83300    1550815          NA
## 8684  47.41500    1607168          NA
## 8685  48.91400    1667822          NA
## 8686  50.30300    1733307          NA
## 8687  51.58100    1803689          NA
## 8688  52.77800    1878869          NA
## 8689  53.92100    1958909          NA
## 8690  55.01100    2043820          NA
## 8691  56.05200    2133527          NA
## 8692  57.04600    2228142          NA
## 8693  57.99500    2327487          NA
## 8694  58.90200    2430754          NA
## 8695  59.77000    2536895          NA
## 8696  60.60000    2645136          NA
## 8697  61.39300    2754698          NA
## 8698  62.15000    2865639          NA
## 8699  62.86900    2979102          NA
## 8700  63.54800    3096724          NA
## 8701  64.18500    3219462          NA
## 8702  64.77100    3347779          NA
## 8703  65.30600    3480443          NA
## 8704  65.79300    3614682          NA
## 8705  66.23500    3746712          NA
## 8706  66.64400    3873781          NA
## 8707  67.03000    3994601          NA
## 8708  67.40500    4109717          NA
## 8709  67.77500    4220451          NA
## 8710  68.14100    4328935          NA
## 8711  68.50300    4436663          NA
## 8712  68.85000    4544245          NA
## 8713  69.17500    4650896          NA
## 8714  69.46900    4755134          NA
## 8715  69.73200    4854871          NA
## 8716  69.96500    4948796          NA
## 8717  70.16900    5036173          NA
## 8718  70.35200    5118008          NA
## 8719  70.52200    5196774          NA
## 8720  70.68400    5275921  10526.4538
## 8721  70.85200    5357893  10746.7778
## 8722  71.03800    5443249  10391.7791
## 8723  71.24400    5531097  10128.6672
## 8724  71.46600    5620545  11264.8450
## 8725  71.69300    5710163  11582.7579
## 8726  71.90200    5798615  12760.0621
## 8727  72.06300    5886874  13385.7920
## 8728  72.15500    5974786  14010.4978
## 8729  72.17400    6058740  13793.9697
## 8730  72.12900    6133987  13025.2420
## 8731  72.04400    6197667  13539.4929
## 8732  71.95600    6247438   6670.3463
## 8733  71.90100    6285751  12386.0326
## 8734  71.90700    6320350  10101.1986
## 8735  71.98100    6362039   7722.6604
## 8736  72.12100    6418315   7590.4430
## 8737  72.31100    6492160   7392.2238
## 8738  72.52000    6580723   9662.2822
## 8739  72.72400    6678565  10276.8043
## 8740  72.91300    6777453   8993.0861
## 8741  73.08200    6871287   6747.6389
## 8742        NA    6958538   8753.3870
## 8743        NA      16501          NA
## 8744        NA      16894          NA
## 8745        NA      17300          NA
## 8746        NA      17724          NA
## 8747        NA      18170          NA
## 8748        NA      18642          NA
## 8749        NA      19160          NA
## 8750        NA      19688          NA
## 8751        NA      20237          NA
## 8752        NA      20766          NA
## 8753        NA      21268          NA
## 8754        NA      21729          NA
## 8755        NA      22161          NA
## 8756        NA      22560          NA
## 8757        NA      22985          NA
## 8758        NA      23436          NA
## 8759        NA      23933          NA
## 8760        NA      24451          NA
## 8761        NA      24968          NA
## 8762        NA      25463          NA
## 8763        NA      25881          NA
## 8764        NA      26229          NA
## 8765        NA      26533          NA
## 8766        NA      26790          NA
## 8767        NA      27028          NA
## 8768        NA      27286          NA
## 8769        NA      27552          NA
## 8770        NA      27835          NA
## 8771        NA      28135          NA
## 8772        NA      28449          NA
## 8773        NA      28790          NA
## 8774        NA      29166          NA
## 8775        NA      29552          NA
## 8776        NA      29987          NA
## 8777  78.42195      30415          NA
## 8778  77.39024      30884          NA
## 8779  76.83659      31354          NA
## 8780  76.04634      31830          NA
## 8781  77.74634      32306          NA
## 8782  79.10976      32765          NA
## 8783  76.82683      33184          NA
## 8784  79.27561      33543          NA
## 8785  79.63659      33885          NA
## 8786  79.96098      34172          NA
## 8787  81.77073      34444          NA
## 8788  80.66829      34718          NA
## 8789  80.94878      34975          NA
## 8790  81.29512      35217          NA
## 8791  82.68293      35469          NA
## 8792  81.50000      35723          NA
## 8793  81.84146      35996          NA
## 8794  81.79268      36299          NA
## 8795  82.38293      36615          NA
## 8796  82.26098      36940          NA
## 8797  82.07317      37219          NA
## 8798  82.65610      37465 167313.2663
## 8799  82.25854      37655          NA
## 8800  83.74634      37805          NA
## 8801  83.04146      37918          NA
## 8802  84.16098      38020          NA
## 8803  81.80732      38137          NA
## 8804        NA      38254          NA
## 8805  69.84732    2778550          NA
## 8806  70.10268    2823550          NA
## 8807  69.09537    2863350          NA
## 8808  70.20439    2898950          NA
## 8809  71.50902    2935200          NA
## 8810  71.32512    2971450          NA
## 8811  71.52024    3008050          NA
## 8812  71.60390    3044400          NA
## 8813  71.31366    3078850          NA
## 8814  70.92854    3107321          NA
## 8815  70.80439    3139689          NA
## 8816  71.73537    3179041          NA
## 8817  71.02463    3213622          NA
## 8818  71.33220    3244438          NA
## 8819  71.24415    3273894          NA
## 8820  70.86732    3301652          NA
## 8821  70.95805    3328664          NA
## 8822  70.80951    3355036          NA
## 8823  70.60463    3379514          NA
## 8824  70.48220    3397842          NA
## 8825  70.48220    3413202          NA
## 8826  70.46073    3432947          NA
## 8827  70.83683    3457179          NA
## 8828  70.77780    3485192          NA
## 8829  70.32000    3514205          NA
## 8830  70.50122    3544543          NA
## 8831  72.08073    3578914          NA
## 8832  71.93463    3616367          NA
## 8833  71.76220    3655049          NA
## 8834  71.42537    3684255          NA
## 8835  71.16073    3697838          NA
## 8836  70.36415    3704134          NA
## 8837  70.23439    3700114          NA
## 8838  68.91049    3682613          NA
## 8839  68.53024    3657144          NA
## 8840  69.00634    3629102   4936.0202
## 8841  70.10805    3601613   5230.2602
## 8842  70.90902    3575137   5706.8953
## 8843  71.21951    3549331   6178.1238
## 8844  71.57073    3524238   6151.0830
## 8845  72.01951    3499536   6423.4207
## 8846  71.65854    3470818   6899.2368
## 8847  71.76098    3443067   7424.3948
## 8848  72.06098    3415213   8275.8034
## 8849  71.96098    3377075   8919.0817
## 8850  71.25366    3322528   9766.4876
## 8851  71.05610    3269909  10659.4002
## 8852  70.90000    3231294  11984.9233
## 8853  71.81220    3198231  12425.3981
## 8854  72.91463    3162916  10699.7895
## 8855  73.26829    3097282  11106.9502
## 8856  73.56341    3028115  12046.7214
## 8857  73.86341    2987773  12678.6927
## 8858  73.91463    2957689  13262.3345
## 8859  74.51707    2932367  13850.0001
## 8860  74.32195    2904910  14263.9646
## 8861  74.67073    2868231  14810.2518
## 8862  75.48049    2828403  15661.9963
## 8863  75.68049    2801543  16443.5853
## 8864  76.28293    2794137  17241.2553
## 8865  74.92927    2794885  17213.8143
## 8866        NA    2795321  18072.2884
## 8867  47.03835 2244700479    887.3202
## 8868  47.55261 2273945110    884.1654
## 8869  48.14885 2316484209    898.6556
## 8870  48.85427 2371218025    918.3631
## 8871  49.67445 2426432129    966.2423
## 8872  50.57689 2483422664    999.7408
## 8873  51.51503 2544090232   1022.3803
## 8874  52.43932 2604644271   1030.1251
## 8875  53.31225 2666962174   1063.4886
## 8876  54.10417 2731770598   1123.1313
## 8877  54.83166 2798258181   1187.5393
## 8878  55.48294 2866198148   1233.3715
## 8879  56.07606 2933235961   1278.1293
## 8880  56.65224 3000249265   1336.3812
## 8881  57.21181 3066813686   1384.1184
## 8882  57.72595 3132064028   1413.7991
## 8883  58.23637 3196797795   1469.5905
## 8884  58.71937 3261100939   1506.2619
## 8885  59.17673 3326539370   1529.8294
## 8886  59.58784 3393547525   1566.6816
## 8887  59.98052 3461532116   1609.9243
## 8888  60.35271 3531518344   1610.8481
## 8889  60.71507 3604927869   1622.2703
## 8890  61.03875 3679529273   1619.3866
## 8891  61.33752 3754210988   1662.0483
## 8892  61.66457 3830354879   1700.9316
## 8893  62.01572 3908696127   1733.8827
## 8894  62.29975 3989195046   1781.2573
## 8895  62.55797 4070474294   1817.5582
## 8896  62.79256 4151278054   1836.4309
## 8897  63.01291 4233094650   1837.8234
## 8898  63.22990 4312368597   1831.9631
## 8899  63.38037 4390151296   1829.0584
## 8900  63.52775 4466940716   1858.6326
## 8901  63.73745 4543177466   1888.8425
## 8902  63.97165 4618696093   1929.9053
## 8903  64.26168 4694052890   2002.9410
## 8904  64.56293 4769309184   2074.7782
## 8905  64.83427 4843812689   2096.4282
## 8906  65.07210 4917122555   2143.5940
## 8907  65.34350 4989857817   2235.4396
## 8908  65.62910 5062005531   2286.7500
## 8909  65.91901 5133727377   2362.0966
## 8910  66.21818 5205374431   2469.6915
## 8911  66.54208 5277135766   2622.9469
## 8912  66.85918 5349238979   2775.9637
## 8913  67.22139 5421454926   2963.3195
## 8914  67.58208 5493905785   3183.3530
## 8915  67.93526 5567161489   3326.6472
## 8916  68.30717 5640982842   3388.5627
## 8917  68.65864 5715348512   3609.5738
## 8918  69.01865 5791393958   3785.0033
## 8919  69.35857 5869616742   3934.9808
## 8920  69.68816 5948565943   4091.9664
## 8921  69.98896 6027587134   4236.9027
## 8922  70.27457 6106513340   4366.0511
## 8923  70.53950 6185804647   4506.6430
## 8924  70.79130 6265829670   4678.2395
## 8925  71.00395 6343992496   4846.2192
## 8926  71.20491 6420460567   4980.6632
## 8927  71.32613 6494812232   4861.6103
## 8928        NA 6566551568   5139.9234
## 8929  39.65931  140853136          NA
## 8930  40.09814  144012757          NA
## 8931  40.53045  147251680          NA
## 8932  40.96542  150606788          NA
## 8933  41.41074  154131490          NA
## 8934  41.87066  157862981          NA
## 8935  42.34563  161813677          NA
## 8936  42.82854  165967397          NA
## 8937  43.31275  170296999          NA
## 8938  43.79335  174762263          NA
## 8939  44.26629  179333360          NA
## 8940  44.72928  184001167          NA
## 8941  45.18047  188773015          NA
## 8942  45.61681  193654964          NA
## 8943  46.03602  198658737          NA
## 8944  46.43540  203792529          NA
## 8945  46.81323  209068338          NA
## 8946  47.17220  214483125          NA
## 8947  47.51740  220012601          NA
## 8948  47.85358  225622921          NA
## 8949  48.18579  231296942          NA
## 8950  48.51846  237032088    709.0316
## 8951  48.85121  242859058    703.0468
## 8952  49.17984  248837038    698.3127
## 8953  49.49818  255044693    672.3615
## 8954  49.79219  261545558    655.9215
## 8955  50.04476  268348714    658.5865
## 8956  50.24403  275457450    679.4879
## 8957  50.38827  282920347    685.4960
## 8958  50.49073  290792401    676.5478
## 8959  50.57542  299105546    646.3433
## 8960  50.67106  307903035    639.3498
## 8961  50.79864  317160375    627.8548
## 8962  50.96047  326758239    620.9192
## 8963  51.14452  336529868    612.3745
## 8964  51.34987  346361618    624.9740
## 8965  51.59003  356203001    642.5651
## 8966  51.87985  366106442    668.4969
## 8967  52.22912  376186991    675.0093
## 8968  52.64278  386612496    673.5746
## 8969  53.12055  397504018    676.9143
## 8970  53.65932  408888293    690.4933
## 8971  54.24964  420724441    700.4542
## 8972  54.88208  432981751    714.4465
## 8973  55.54826  445606231    735.9324
## 8974  56.23763  458551278    761.5741
## 8975  56.94201  471833171    784.2492
## 8976  57.64956  485450408    809.2852
## 8977  58.34387  499316731    829.3381
## 8978  59.00891  513320081    835.2948
## 8979  59.63436  527389304    868.0695
## 8980  60.21803  541490348    850.5921
## 8981  60.76605  555670836    794.8452
## 8982  61.28327  570043355    799.9783
## 8983  61.76922  584767206    813.7089
## 8984  62.22221  599964298    791.7100
## 8985  62.64104  615653729    789.7676
## 8986  63.02852  631818732    792.3638
## 8987  63.39078  648498946    796.0232
## 8988  63.73199  665731857    805.0665
## 8989  64.05753  683532991    784.9217
## 8990        NA  701926973    787.3897
## 8991  45.24539  988626091    615.1277
## 8992  45.82873 1011300866    622.4115
## 8993  46.40419 1034742138    627.2294
## 8994  46.97145 1058918092    651.9976
## 8995  47.52893 1083774162    678.8416
## 8996  48.06963 1109268545    687.8723
## 8997  48.58620 1135402774    689.4460
## 8998  49.07388 1162186728    694.8979
## 8999  49.53391 1189633927    721.5149
## 9000  49.97157 1217759143    769.2240
## 9001  50.40029 1246579469    817.4446
## 9002  50.83873 1276118989    845.9399
## 9003  51.30012 1306406127    871.2053
## 9004  51.79116 1337477891    897.5761
## 9005  52.31140 1369387911    923.8551
## 9006  52.85478 1402176498    929.4172
## 9007  53.40906 1435819972    983.3628
## 9008  53.95558 1470338714   1001.4106
## 9009  54.47930 1505866299    986.7852
## 9010  54.97134 1542579134    962.2821
## 9011  55.42686 1580577179    949.9545
## 9012  55.85044 1619932231    942.7322
## 9013  56.25332 1660412596    962.5563
## 9014  56.64645 1701925574    975.7915
## 9015  57.03493 1744180194    971.0557
## 9016  57.42285 1786906077    981.4433
## 9017  57.81299 1830076547    979.9747
## 9018  58.21868 1873650309    987.2369
## 9019  58.60785 1917488437   1009.9449
## 9020  59.00254 1961443001   1031.6077
## 9021  59.38924 2007304045   1058.1863
## 9022  59.75278 2050963637   1063.0388
## 9023  60.11322 2094542057   1071.7140
## 9024  60.45828 2137843996   1064.8069
## 9025  60.79159 2180801927   1069.8093
## 9026  61.11041 2223706508   1098.0520
## 9027  61.44418 2266705711   1141.5947
## 9028  61.77427 2309745209   1160.6203
## 9029  62.10276 2352708816   1154.8992
## 9030  62.40698 2395500288   1182.3139
## 9031  62.71292 2438276129   1212.9593
## 9032  63.03663 2480944573   1241.0825
## 9033  63.37517 2523627628   1279.0303
## 9034  63.71706 2566374848   1335.2168
## 9035  64.07148 2609199736   1399.4154
## 9036  64.43652 2652117955   1460.5182
## 9037  64.82113 2695156950   1529.6790
## 9038  65.21729 2738371491   1608.9631
## 9039  65.61737 2781815342   1650.8599
## 9040  66.03256 2825555944   1700.8716
## 9041  66.44302 2869900017   1785.1286
## 9042  66.83299 2914508526   1841.7544
## 9043  67.19921 2958978379   1895.2707
## 9044  67.54654 3003828154   1959.9142
## 9045  67.86850 3048756862   2038.3001
## 9046  68.16457 3093861642   2109.3345
## 9047  68.43900 3139004988   2197.6941
## 9048  68.69192 3184107532   2276.1811
## 9049  68.91902 3229156489   2352.7083
## 9050  69.13682 3274021191   2408.2931
## 9051  69.33034 3318682068   2296.9496
## 9052        NA 3363196656   2393.2792
## 9053  68.44639     313970  25520.1824
## 9054  68.73773     316845  26257.1662
## 9055  68.99812     320750  26289.9029
## 9056  69.22307     324100  26912.9550
## 9057  69.41105     327750  28706.5896
## 9058  69.56102     331500  28173.2666
## 9059  69.67446     333895  28280.5167
## 9060  69.76134     334995  28248.7452
## 9061  69.83515     335850  29355.7128
## 9062  69.90485     337500  32125.4868
## 9063  69.98346     339171  35513.8010
## 9064  70.08144     342421  36114.9765
## 9065  70.20532     346600  38033.7402
## 9066  70.35817     350450  40742.7919
## 9067  70.54256     355050  41908.9753
## 9068  70.75761     358950  38729.5605
## 9069  70.99851     360731  39515.0353
## 9070  71.25629     361358  40065.6914
## 9071  71.52246     362007  41623.6010
## 9072  71.79446     362856  42500.2549
## 9073  72.07261     364150  42705.3385
## 9074  72.35768     365225  42345.0452
## 9075  72.65346     365525  42788.9486
## 9076  72.95888     365622  44056.2515
## 9077  73.27193     365998  46733.9236
## 9078  73.58576     366706  47945.8484
## 9079  73.89461     368355  52496.6662
## 9080  74.19376     370750  54218.2754
## 9081  74.48034     373450  58381.7543
## 9082  74.75241     377100  63481.5847
## 9083  75.01041     381850  66027.0758
## 9084  75.46341     387000  70779.9729
## 9085  75.77073     392175  71116.9401
## 9086  75.71220     397475  73116.1947
## 9087  76.37073     402925  74883.1419
## 9088  76.51220     408625  74896.0966
## 9089  76.51951     414225  74916.5068
## 9090  76.88049     419450  77993.0585
## 9091  77.01707     424700  82170.2399
## 9092  77.77073     430475  87695.3396
## 9093  77.87317     436300  92527.7118
## 9094  77.82439     441525  94243.7073
## 9095  77.96585     446175  96269.5794
## 9096  77.72683     451630  97597.9969
## 9097  79.12195     458095 100292.5685
## 9098  79.43171     465158 101222.0457
## 9099  79.28780     472637 105614.1799
## 9100  79.38293     479993 112417.8785
## 9101  80.53902     488650 110094.7923
## 9102  80.63659     497783 104574.3499
## 9103  80.63171     506953 106544.0572
## 9104  80.98780     518347 105290.2490
## 9105  81.39268     530946 104487.7442
## 9106  81.80000     543360 105338.9561
## 9107  82.22927     556319 105583.9370
## 9108  82.29268     569604 105462.0126
## 9109  82.68537     582014 108351.4522
## 9110  82.09512     596336 107142.1276
## 9111  82.29512     607950 107201.8399
## 9112  82.63902     620001 108570.0277
## 9113  81.74146     630419 104879.2562
## 9114        NA     639070 110584.3305
## 9115  64.82800     167795          NA
## 9116  65.30100     170466          NA
## 9117  65.75700     176188          NA
## 9118  66.19900     184245          NA
## 9119  66.62900     193556          NA
## 9120  67.05500     203224          NA
## 9121  67.48600     213189          NA
## 9122  67.92800     223416          NA
## 9123  68.38800     233002          NA
## 9124  68.86500     240837          NA
## 9125  69.36000     246193          NA
## 9126  69.86900     248745          NA
## 9127  70.38400     248770          NA
## 9128  70.89700     246945          NA
## 9129  71.40000     244289          NA
## 9130  71.88700     241631          NA
## 9131  72.35200     239074          NA
## 9132  72.79300     236669          NA
## 9133  73.20900     235175          NA
## 9134  73.60200     235440          NA
## 9135  73.97400     238085          NA
## 9136  74.33000     243373          NA
## 9137  74.67700     251154  23343.6364
## 9138  75.02000     260921  24721.9414
## 9139  75.36200     271914  25729.2481
## 9140  75.70200     283490  24859.3786
## 9141  76.03600     295597  25437.0440
## 9142  76.36300     308181  27886.0295
## 9143  76.68000     320774  28884.0586
## 9144  76.99000     332783  29240.6562
## 9145  77.29600     343816  30560.6063
## 9146  77.60700     353623  30800.3602
## 9147  77.92600     362308  34060.1391
## 9148  78.25300     370195  35063.3469
## 9149  78.58800     377805  35818.0803
## 9150  78.92500     385517  36258.5824
## 9151  79.25600     393376  35385.2821
## 9152  79.57300     401353  34585.1632
## 9153  79.87200     409620  32338.1347
## 9154  80.15000     418388  30913.7992
## 9155  80.40700     427772  31973.2587
## 9156  80.64500     437928  32133.8251
## 9157  80.87000     448813  34148.2852
## 9158  81.08900     460157  37183.5701
## 9159  81.30400     471600  45943.2705
## 9160  81.52300     482863  48495.2072
## 9161  81.74800     493804  53770.4739
## 9162  81.98100     504504  60249.1696
## 9163  82.22000     515232  60995.3522
## 9164  82.46200     526401  60461.8572
## 9165  82.70400     538215  73991.0048
## 9166  82.93800     550833  87924.0301
## 9167  83.15800     564037  93801.7603
## 9168  83.36100     577368 101489.3835
## 9169  83.54300     590210  97247.5554
## 9170  83.70700     602093  74818.9481
## 9171  83.85400     612824  73009.7305
## 9172  83.98900     622578  79040.3877
## 9173  84.11800     631633  82943.6803
## 9174  84.24400     640446  79747.4575
## 9175  84.37000     649342  36172.2928
## 9176        NA     658391  42093.3984
## 9177  39.96200    5099368    814.1078
## 9178  40.44400    5223561    811.0335
## 9179  40.92400    5352497    809.4720
## 9180  41.40100    5486319    782.3876
## 9181  41.87600    5625164    793.3131
## 9182  42.35100    5769215    770.0068
## 9183  42.82800    5918592    766.0688
## 9184  43.31000    6073529    787.7985
## 9185  43.79600    6234468    819.8702
## 9186  44.28300    6401920    828.1365
## 9187  44.77100    6576305    848.7142
## 9188  45.25700    6757853    858.3669
## 9189  45.73500    6946619    824.4149
## 9190  46.20300    7142634    780.7958
## 9191  46.65600    7345773    774.4400
## 9192  47.09400    7556032    762.3665
## 9193  47.51700    7773452    718.3019
## 9194  47.92600    7998157    714.6251
## 9195  48.31700    8230214    675.9901
## 9196  48.68300    8469677    721.6109
## 9197  49.00500    8716549    707.8534
## 9198  49.26000    8971339    620.3505
## 9199  49.44200    9234137    591.2445
## 9200  49.56000    9504283    579.6092
## 9201  49.63400    9780869    573.1325
## 9202  49.69400   10063493    563.4779
## 9203  49.78100   10352117    558.5052
## 9204  49.93200   10647753    549.3780
## 9205  50.17600   10952396    552.2933
## 9206  50.53000   11268653    558.6667
## 9207  51.00300   11598647    559.7549
## 9208  51.59500   11942809    509.3413
## 9209  52.27800   12301338    500.3357
## 9210  53.02200   12675469    495.7642
## 9211  53.80800   13066544    480.7238
## 9212  54.61600   13475403    473.9627
## 9213  55.43000   13902697    469.2919
## 9214  56.23900   14347860    471.5269
## 9215  57.02800   14808791    474.7456
## 9216  57.78200   15282524    481.6471
## 9217  58.48500   15766806    487.6601
## 9218  59.12900   16260933    501.1185
## 9219  59.71700   16765122    425.7393
## 9220  60.25600   17279139    453.4934
## 9221  60.75200   17802992    463.2880
## 9222  61.21200   18336722    471.1949
## 9223  61.65000   18880265    482.3349
## 9224  62.07900   19433520    495.3631
## 9225  62.50900   19996476    513.7331
## 9226  62.94400   20569115    479.5600
## 9227  63.38800   21151640    469.2405
## 9228  63.83600   21743970    463.6627
## 9229  64.28000   22346641    464.7432
## 9230  64.71300   22961259    462.7078
## 9231  65.13300   23589897    465.4163
## 9232  65.53900   24234080    467.2354
## 9233  65.93100   24894370    473.0052
## 9234  66.31100   25570511    478.6107
## 9235  66.68100   26262313    480.9153
## 9236  67.04100   26969306    488.9137
## 9237  67.39000   27691019    442.1696
## 9238        NA   28427333    449.6783
## 9239  36.67200    3659980    178.8129
## 9240  36.93400    3747758    187.9655
## 9241  37.18300    3839047    184.7223
## 9242  37.42100    3933914    177.7600
## 9243  37.65500    4032364    178.0349
## 9244  37.89900    4134464    197.2818
## 9245  38.17400    4240430    217.8366
## 9246  38.49400    4350456    227.7880
## 9247  38.86600    4464427    217.7042
## 9248  39.28900    4582197    224.5859
## 9249  39.75600    4703783    219.8292
## 9250  40.25400    4829092    248.8529
## 9251  40.76200    4958556    257.4576
## 9252  41.26200    5093368    256.4096
## 9253  41.74400    5235074    267.3708
## 9254  42.20600    5384798    275.7584
## 9255  42.64900    5545653    281.1418
## 9256  43.08200    5717954    286.0801
## 9257  43.50400    5896864    304.4333
## 9258  43.91200    6075485    308.4728
## 9259  44.29600    6250434    301.0582
## 9260  44.64600    6412380    277.9308
## 9261  44.95400    6565985    278.2240
## 9262  45.21600    6737924    281.2066
## 9263  45.43200    6964613    286.6366
## 9264  45.60600    7268271    287.2160
## 9265  45.74600    7666390    271.7159
## 9266  45.86000    8141140    260.0293
## 9267  45.95700    8636686    252.8975
## 9268  46.03800    9075568    243.9039
## 9269  46.09600    9404499    248.7713
## 9270  46.12100    9600361    264.9712
## 9271  46.10800    9685974    243.3706
## 9272  46.05500    9710335    266.2880
## 9273  45.96900    9745695    238.1524
## 9274  45.84600    9844418    275.2047
## 9275  45.67700   10022783    290.0846
## 9276  45.47900   10264906    293.9840
## 9277  45.28500   10552345    297.1156
## 9278  45.13600   10854325    297.6371
## 9279  45.09000   11148751    294.3439
## 9280  45.20400   11432001    272.7703
## 9281  45.51700   11713663    270.7370
## 9282  46.05200   12000183    279.3512
## 9283  46.82300   12301837    287.2722
## 9284  47.84400   12625950    289.0469
## 9285  49.11800   12973693    294.5204
## 9286  50.59500   13341808    313.8881
## 9287  52.20600   13727899    328.3659
## 9288  53.88800   14128161    345.6350
## 9289  55.56400   14539609    358.9409
## 9290  57.16100   14962118    365.7361
## 9291  58.62900   15396010    362.1316
## 9292  59.93100   15839287    370.3008
## 9293  61.04200   16289550    380.5890
## 9294  61.95300   16745305    380.5970
## 9295  62.68100   17205253    379.6239
## 9296  63.27900   17670193    384.4208
## 9297  63.79800   18143215    390.8407
## 9298  64.26300   18628749    401.3927
## 9299  64.69400   19129955    394.0032
## 9300        NA   19647681    394.1760
## 9301  59.99100    8156342   1235.2398
## 9302  60.51500    8417821   1287.8082
## 9303  61.01200    8692337   1327.2165
## 9304  61.48600    8973791   1379.9366
## 9305  61.94300    9253827   1409.8899
## 9306  62.39000    9526558   1474.7731
## 9307  62.83300    9790083   1547.2516
## 9308  63.27700   10046321   1565.9455
## 9309  63.71900   10297983   1649.5549
## 9310  64.16100   10549395   1688.9602
## 9311  64.59500   10804131   1747.8648
## 9312  65.01300   11062434   1878.3499
## 9313  65.40700   11324277   2007.1884
## 9314  65.77500   11592638   2190.1494
## 9315  66.11700   11871102   2316.6918
## 9316  66.44200   12162189   2279.3587
## 9317  66.76100   12468688   2480.4231
## 9318  67.08500   12790313   2605.5233
## 9319  67.42000   13122833   2708.4775
## 9320  67.76600   13460035   2887.4991
## 9321  68.11700   13798094   3026.3722
## 9322  68.46100   14134060   3159.5354
## 9323  68.78800   14471215   3269.3247
## 9324  69.09000   14819430   3392.1075
## 9325  69.36600   15192300   3565.6801
## 9326  69.62100   15598924   3437.1278
## 9327  69.86600   16043736   3383.2921
## 9328  70.11000   16522004   3455.9282
## 9329  70.35800   17022470   3687.6661
## 9330  70.61200   17528961   3905.5472
## 9331  70.86500   18029824   4139.1108
## 9332  71.10600   18519941   4414.2137
## 9333  71.32600   19002660   4684.3256
## 9334  71.51900   19484901   5020.4308
## 9335  71.68700   19977508   5347.7168
## 9336  71.83400   20487604   5727.1151
## 9337  71.97200   21017619   6141.1105
## 9338  72.11000   21562790   6424.1731
## 9339  72.25700   22114647   5802.8783
## 9340  72.41800   22661293   6010.4654
## 9341  72.59400   23194252   6392.5809
## 9342  72.78200   23709115   6286.1349
## 9343  72.97600   24208391   6488.3847
## 9344  73.17000   24698821   6727.6710
## 9345  73.36400   25190647   7043.7762
## 9346  73.55500   25690615   7274.9711
## 9347  73.74400   26201954   7531.3649
## 9348  73.93100   26720367   7850.4265
## 9349  74.11800   27236003   8073.9344
## 9350  74.30500   27735038   7808.6580
## 9351  74.49300   28208028   8247.7823
## 9352  74.68300   28650962   8550.1546
## 9353  74.87700   29068189   8888.7025
## 9354  75.07200   29468923   9179.3668
## 9355  75.26800   29866606   9601.1780
## 9356  75.46100   30270965   9955.2427
## 9357  75.64900   30684652  10258.0415
## 9358  75.82800   31104655  10707.7483
## 9359  75.99700   31528033  11075.5797
## 9360  76.15600   31949789  11414.5784
## 9361  76.30600   32365998  10631.5077
## 9362        NA   32776195  10827.3269
## 9363  37.34300      89873          NA
## 9364  37.93600      92328          NA
## 9365  38.56000      94902          NA
## 9366  39.20900      97540          NA
## 9367  39.87800     100177          NA
## 9368  40.56000     102710          NA
## 9369  41.25200     105129          NA
## 9370  41.95400     107481          NA
## 9371  42.66900     109893          NA
## 9372  43.39700     112582          NA
## 9373  44.14200     115688          NA
## 9374  44.90800     119303          NA
## 9375  45.70000     123347          NA
## 9376  46.52000     127700          NA
## 9377  47.36800     132102          NA
## 9378  48.25000     136418          NA
## 9379  49.16700     140563          NA
## 9380  50.11600     144625          NA
## 9381  51.08700     148774          NA
## 9382  52.06900     153276          NA
## 9383  53.04600     158271          NA
## 9384  53.99800     163821          NA
## 9385  54.91300     169849          NA
## 9386  55.78700     176255          NA
## 9387  56.62100     182848          NA
## 9388  57.42400     189540          NA
## 9389  58.21300     196262          NA
## 9390  59.00800     203024          NA
## 9391  59.82300     209787          NA
## 9392  60.66400     216502          NA
## 9393  61.52900     223159          NA
## 9394  62.41300     229743          NA
## 9395  63.30200     236271          NA
## 9396  64.18500     242596          NA
## 9397  65.05900     248582          NA
## 9398  65.92300     254144   5538.7930
## 9399  66.78400     259178   5858.0332
## 9400  67.64400     263836   6237.8789
## 9401  68.50100     268445   6590.2617
## 9402  69.34800     273522   6867.3735
## 9403  70.17300     279396   6981.5480
## 9404  70.96400     286309   6544.2979
## 9405  71.70800     294185   6832.0224
## 9406  72.39900     302681   7553.2915
## 9407  73.03400     311265   7788.1669
## 9408  73.61200     319604   6589.1272
## 9409  74.13800     327489   8109.5741
## 9410  74.62100     335172   8534.9042
## 9411  75.07300     343448   9119.2964
## 9412  75.49900     353391   8222.0445
## 9413  75.90500     365730   8521.8381
## 9414  76.29300     380493   8892.9114
## 9415  76.66400     397231   8732.6292
## 9416  77.01800     415592   8954.5566
## 9417  77.36000     435018   9181.7117
## 9418  77.69100     454914   9033.4103
## 9419  78.01300     475505   9190.0033
## 9420  78.32500     496398   9437.9063
## 9421  78.62700     515704   9822.5396
## 9422  78.92100     530957  10197.0928
## 9423  79.20800     540542   6660.8333
## 9424        NA     543620   8673.8254
## 9425  28.19900    5263727          NA
## 9426  28.34500    5322269          NA
## 9427  28.53500    5381367          NA
## 9428  28.78200    5441618          NA
## 9429  29.09700    5503750          NA
## 9430  29.48900    5568495          NA
## 9431  29.95900    5635864          NA
## 9432  30.49600    5706192    351.1402
## 9433  31.08600    5780836    359.4597
## 9434  31.72000    5861417    355.3369
## 9435  32.38800    5949042    371.5887
## 9436  33.07800    6044524    375.1142
## 9437  33.78200    6147464    390.3875
## 9438  34.49300    6256191    378.0211
## 9439  35.20500    6368346    365.6861
## 9440  35.92100    6482282    401.0226
## 9441  36.64500    6596721    447.7511
## 9442  37.38500    6712267    467.9802
## 9443  38.14200    6831090    453.1103
## 9444  38.90900    6956409    491.2029
## 9445  39.67700    7090124    461.0912
## 9446  40.43500    7234725    458.6933
## 9447  41.17300    7388670    415.9970
## 9448  41.87900    7545163    414.7866
## 9449  42.54500    7694857    405.5501
## 9450  43.17000    7831888    479.2874
## 9451  43.75900    7952863    484.7058
## 9452  44.31500    8062216    477.4660
## 9453  44.83800    8171525    505.8904
## 9454  45.32300    8296919    519.0584
## 9455  45.74600    8449915    496.9065
## 9456  46.07600    8635528    543.3341
## 9457  46.30500    8850334    513.0833
## 9458  46.44500    9087173    515.5624
## 9459  46.52000    9334893    520.8517
## 9460  46.57300    9585660    511.8976
## 9461  46.65800    9837575    533.9827
## 9462  46.82300   10094363    545.5290
## 9463  47.10300   10360564    571.7567
## 9464  47.51500   10642937    588.3179
## 9465  48.06900   10946448    571.6577
## 9466  48.75800   11271603    640.5307
## 9467  49.54000   11616890    640.7978
## 9468  50.37300   11982692    677.8866
## 9469  51.22400   12369078    666.9554
## 9470  52.05700   12775509    687.9349
## 9471  52.83900   13203378    696.6751
## 9472  53.55300   13651455    697.3486
## 9473  54.19300   14113578    706.7108
## 9474  54.75600   14581427    716.9128
## 9475  55.25100   15049352    731.5338
## 9476  55.70100   15514593    732.3974
## 9477  56.13500   15979492    705.1394
## 9478  56.57800   16449854    700.6976
## 9479  57.03600   16934213    728.8783
## 9480  57.50900   17438772    751.4729
## 9481  57.98700   17965448    772.1318
## 9482  58.45200   18512429    789.0726
## 9483  58.89300   19077755    802.0336
## 9484  59.30600   19658023    815.3791
## 9485  59.69200   20250834    781.7315
## 9486        NA   20855724    782.3606
## 9487  69.43324     326550          NA
## 9488  69.61439     325250          NA
## 9489  69.77066     323900          NA
## 9490  69.91995     322550          NA
## 9491  70.07573     321250          NA
## 9492  70.24793     318800          NA
## 9493  70.44105     315200          NA
## 9494  70.64807     311550          NA
## 9495  70.86305     307900          NA
## 9496  71.08295     304300          NA
## 9497  71.30529     302650   3135.2716
## 9498  71.52254     302700   3211.6803
## 9499  71.73124     302450   3401.9984
## 9500  71.92744     302200   3545.9810
## 9501  72.11120     301996   3904.5058
## 9502  72.28110     304222   4634.0727
## 9503  72.43678     305774   5395.1335
## 9504  72.58380     306970   6028.9044
## 9505  72.73212     310182   6632.4014
## 9506  72.89120     313342   7254.2880
## 9507  73.07785     316645   7684.6886
## 9508  73.31090     318982   7881.0212
## 9509  73.59815     325898   7889.9927
## 9510  73.94000     330524   7731.9234
## 9511  74.33098     330593   7803.1579
## 9512  74.75815     336452   7865.4935
## 9513  75.20420     342121   8035.6868
## 9514  75.64483     344485   8308.5839
## 9515  76.06266     347325   8934.0339
## 9516  76.44527     350722   9571.1477
## 9517  76.78607     354170  10074.2644
## 9518  77.08446     363845  10419.9151
## 9519  77.35080     367618  10796.7461
## 9520  77.59349     371308  11168.4172
## 9521  77.81754     374797  11689.7137
## 9522  77.29024     377419  12344.7716
## 9523  77.34146     379905  12727.2427
## 9524  77.73902     382791  13295.3116
## 9525  77.58780     385287  13886.2307
## 9526  77.50000     387578  14455.7006
## 9527  78.34878     390087  17189.4893
## 9528  78.84390     393028  16860.4481
## 9529  78.73902     395969  17164.5221
## 9530  78.54634     398582  17746.7060
## 9531  79.25366     401268  17652.6398
## 9532  79.30000     403834  18133.9716
## 9533  79.43902     405308  18521.5561
## 9534  79.79268     406724  19338.3447
## 9535  79.63659     409379  19948.0828
## 9536  80.24146     412477  19573.7711
## 9537  81.39756     414508  20557.6464
## 9538  80.74634     416268  20566.3364
## 9539  80.74634     420028  21221.5116
## 9540  81.74634     425967  22070.9673
## 9541  82.04634     434558  23286.1231
## 9542  81.89756     445053  24921.6037
## 9543  82.45366     455356  25181.3653
## 9544  82.34634     467999  27215.6035
## 9545  82.44878     484630  27867.5391
## 9546  82.85854     504062  28363.6102
## 9547  82.65366     515332  25427.0818
## 9548        NA     516869  27737.9403
## 9549        NA      14674          NA
## 9550        NA      15056          NA
## 9551        NA      15547          NA
## 9552        NA      16111          NA
## 9553        NA      16710          NA
## 9554        NA      17282          NA
## 9555        NA      17834          NA
## 9556        NA      18383          NA
## 9557        NA      18966          NA
## 9558        NA      19617          NA
## 9559        NA      20394          NA
## 9560        NA      21305          NA
## 9561        NA      22335          NA
## 9562        NA      23440          NA
## 9563        NA      24530          NA
## 9564        NA      25579          NA
## 9565        NA      26548          NA
## 9566        NA      27479          NA
## 9567        NA      28400          NA
## 9568        NA      29417          NA
## 9569        NA      30574          NA
## 9570        NA      31883   2500.0539
## 9571        NA      33330   2507.0553
## 9572        NA      34881   2767.0842
## 9573        NA      36564   2741.7706
## 9574        NA      38331   2451.7273
## 9575        NA      40212   2910.6113
## 9576  72.14146      42168   3035.5004
## 9577        NA      44092   3129.1626
## 9578        NA      45827   2959.7640
## 9579        NA      47265   2946.5162
## 9580        NA      48403   2879.7678
## 9581        NA      49242   3032.8378
## 9582        NA      49828   3177.1875
## 9583        NA      50214   3338.0750
## 9584        NA      50454   3595.0569
## 9585        NA      50523   3220.2561
## 9586        NA      50453   3016.8692
## 9587        NA      50356   2997.9129
## 9588  67.50488      50418   2956.6445
## 9589  65.23902      50754   2976.8412
## 9590        NA      51411   3139.4040
## 9591        NA      52368   3197.3457
## 9592        NA      53465   3081.1372
## 9593        NA      54476   3052.6617
## 9594        NA      55257   3080.3428
## 9595        NA      55765   3041.5727
## 9596        NA      56046   3124.0856
## 9597        NA      56166   2924.7677
## 9598        NA      56255   3013.1331
## 9599        NA      56361   3208.0233
## 9600        NA      56524   3179.1858
## 9601        NA      56712   3095.9197
## 9602        NA      56933   3207.8127
## 9603        NA      57183   3163.4367
## 9604        NA      57444   3199.8868
## 9605        NA      57723   3226.2408
## 9606        NA      58053   3312.1751
## 9607        NA      58412   3409.4929
## 9608        NA      58791   3612.6023
## 9609        NA      59194   3508.7982
## 9610        NA      59618   3396.7476
## 9611  44.43200     850377          NA
## 9612  45.13200     875586   1216.0133
## 9613  45.83400     901690   1189.3895
## 9614  46.53100     928742   1131.8380
## 9615  47.21400     956794   1402.8809
## 9616  47.86800     985907   1581.1712
## 9617  48.47600    1016093   1537.7413
## 9618  49.03200    1047345   1545.0727
## 9619  49.53600    1079580   1651.7771
## 9620  49.99000    1112749   1622.5489
## 9621  50.40400    1146776   1763.1119
## 9622  50.78800    1181659   1742.5971
## 9623  51.16000    1217443   1678.9812
## 9624  51.53900    1254156   1555.1084
## 9625  51.93500    1291857   1693.3467
## 9626  52.35800    1330594   1559.6374
## 9627  52.81700    1370364   1643.7945
## 9628  53.30600    1411139   1566.3089
## 9629  53.82000    1453028   1513.4767
## 9630  54.35700    1496174   1540.2373
## 9631  54.91300    1540644   1546.2049
## 9632  55.48600    1586496   1553.3240
## 9633  56.06600    1633655   1473.1866
## 9634  56.64300    1681859   1484.4147
## 9635  57.20400    1730737   1395.9459
## 9636  57.73500    1780033   1397.9342
## 9637  58.22600    1829678   1437.7087
## 9638  58.67100    1879756   1426.0012
## 9639  59.06500    1930427   1412.4596
## 9640  59.40500    1981902   1441.5033
## 9641  59.68800    2034347   1379.4665
## 9642  59.91400    2087914   1368.1085
## 9643  60.09200    2142645   1358.1471
## 9644  60.23100    2198538   1401.3638
## 9645  60.34100    2255520   1324.1523
## 9646  60.42600    2313630   1417.6576
## 9647  60.49300    2372900   1462.6781
## 9648  60.54500    2433567   1368.5286
## 9649  60.59300    2496217   1371.2423
## 9650  60.64300    2561584   1385.3335
## 9651  60.70600    2630217   1296.3231
## 9652  60.78800    2702405   1251.6079
## 9653  60.89200    2778097   1234.3263
## 9654  61.01800    2857150   1283.3257
## 9655  61.17000    2939246   1306.5214
## 9656  61.34900    3024198   1378.5967
## 9657  61.55200    3111908   1585.3579
## 9658  61.77600    3202512   1510.1666
## 9659  62.01500    3296237   1462.3689
## 9660  62.26600    3393408   1421.8840
## 9661  62.52700    3494200   1417.0509
## 9662  62.79900    3598646   1433.3371
## 9663  63.07900    3706555   1453.8135
## 9664  63.36600    3817497   1470.1549
## 9665  63.65400    3930894   1488.7780
## 9666  63.93600    4046304   1524.0733
## 9667  64.20800    4163532   1499.8378
## 9668  64.46400    4282582   1549.5779
## 9669  64.70400    4403312   1575.3138
## 9670  64.92500    4525698   1620.9967
## 9671  65.12900    4649660   1549.9588
## 9672        NA    4775110   1543.9476
## 9673  58.74522     659351          NA
## 9674  59.74837     680757          NA
## 9675  60.62690     700349          NA
## 9676  61.35766     718861          NA
## 9677  61.93495     736381          NA
## 9678  62.35829     753000          NA
## 9679  62.63871     768813          NA
## 9680  62.81532     783917          NA
## 9681  62.93168     798413          NA
## 9682  63.02020     812405          NA
## 9683  63.11805     826000          NA
## 9684  63.25334     839230          NA
## 9685  63.43995     852053          NA
## 9686  63.68554     864819          NA
## 9687  63.99998     878042          NA
## 9688  64.39054     892000          NA
## 9689  64.85563     906507   2350.0711
## 9690  65.37244     921379   2463.5286
## 9691  65.91332     933499   2524.6913
## 9692  66.45578     949888   2568.3809
## 9693  66.96539     966039   2271.3496
## 9694  67.40739     980462   2369.5804
## 9695  67.76537     992521   2469.4654
## 9696  68.03761    1001691   2456.2495
## 9697  68.23037    1012221   2544.9010
## 9698  68.37068    1020528   2699.7297
## 9699  68.49937    1028360   2940.1740
## 9700  68.65551    1036082   3177.7244
## 9701  68.86302    1043239   3370.2538
## 9702  69.12402    1051260   3493.8777
## 9703  69.40488    1058775   3718.3924
## 9704  69.95610    1070266   3841.6261
## 9705  70.05854    1084441   4038.3344
## 9706  70.10732    1097374   4193.5530
## 9707  70.15854    1112846   4306.2894
## 9708  70.32585    1122457   4452.4783
## 9709  70.32293    1133996   4653.4379
## 9710  70.40488    1148284   4856.9057
## 9711  70.60732    1160421   5097.9305
## 9712  70.96098    1175267   5164.9555
## 9713  71.66341    1186873   5533.9769
## 9714  71.76585    1196287   5674.2224
## 9715  71.96585    1204621   5725.9663
## 9716  72.11707    1213370   6021.5218
## 9717  72.26585    1221003   6242.9818
## 9718  72.43220    1228254   6316.4430
## 9719  72.43220    1233996   6592.9507
## 9720  72.57073    1239630   6938.8497
## 9721  72.57073    1244121   7286.2459
## 9722  72.88244    1247429   7507.8280
## 9723  72.96732    1250400   7817.8411
## 9724  73.26683    1252404   8123.5970
## 9725  73.86341    1255882   8384.3238
## 9726  74.01707    1258653   8646.9922
## 9727  74.19439    1260934   8954.5575
## 9728  74.35317    1262605   9260.4473
## 9729  74.39488    1263473   9609.2510
## 9730  74.51463    1264613   9966.7697
## 9731  74.41634    1265303  10335.8486
## 9732  74.23585    1265711  10643.7711
## 9733  74.17707    1265740   9058.2084
## 9734        NA    1266060   9421.7979
## 9735  57.07700   37771861   3741.9298
## 9736  57.66800   38966049   3808.6138
## 9737  58.19300   40195318   3864.3539
## 9738  58.65600   41462373   4049.9678
## 9739  59.06900   42771077   4393.4622
## 9740  59.44700   44123863   4561.1360
## 9741  59.80700   45519746   4690.7934
## 9742  60.16500   46956208   4813.5356
## 9743  60.53600   48431971   5106.6346
## 9744  60.93200   49945278   5121.1940
## 9745  61.36200   51493565   5290.2043
## 9746  61.82900   53076366   5325.5506
## 9747  62.32700   54689944   5593.7247
## 9748  62.84500   56324310   5858.3810
## 9749  63.37800   57966812   6021.2216
## 9750  63.92200   59607947   6191.8096
## 9751  64.46700   61242189   6292.8026
## 9752  65.00900   62869908   6337.7224
## 9753  65.54000   64494872   6731.4056
## 9754  66.05500   66123908   7202.3100
## 9755  66.55300   67761367   7677.2031
## 9756  67.03100   69407623   8134.1137
## 9757  67.49300   71058650   7903.7411
## 9758  67.94200   72709306   7455.0074
## 9759  68.38000   74352631   7538.8950
## 9760  68.80900   75983486   7538.4735
## 9761  69.23200   77599105   7154.2482
## 9762  69.64900   79200081   7130.3665
## 9763  70.06200   80788725   7079.8557
## 9764  70.46900   82368930   7229.1202
## 9765  70.86600   83943135   7460.6966
## 9766  71.24800   85512621   7632.4428
## 9767  71.61000   87075136   7760.9056
## 9768  71.95300   88625440   7773.1618
## 9769  72.27900   90156396   8018.7210
## 9770  72.59800   91663290   7390.7147
## 9771  72.92500   93147045   7765.6050
## 9772  73.26800   94611008   8168.9162
## 9773  73.62500   96056313   8461.4927
## 9774  73.98800   97484823   8567.0784
## 9775  74.34000   98899845   8861.8696
## 9776  74.65800  100298152   8702.9849
## 9777  74.92200  101684764   8580.8873
## 9778  75.11800  103081020   8587.0886
## 9779  75.24300  104514934   8801.3219
## 9780  75.30000  106005199   8877.8513
## 9781  75.29600  107560155   9142.8048
## 9782  75.25500  109170503   9214.3535
## 9783  75.19400  110815272   9181.4000
## 9784  75.12800  112463886   8568.6181
## 9785  75.06500  114092961   8878.5614
## 9786  75.01100  115695468   9076.3015
## 9787  74.96600  117274156   9280.2586
## 9788  74.93000  118827158   9282.9919
## 9789  74.90800  120355137   9426.3246
## 9790  74.90400  121858251   9616.6456
## 9791  74.91700  123333379   9751.5691
## 9792  74.94700  124777326   9842.4007
## 9793  74.99200  126190782   9945.7768
## 9794  75.05400  127575529   9819.5329
## 9795  75.13100  128932753   8922.6125
## 9796        NA  130262220   9255.2138
## 9797  54.51300      44510          NA
## 9798  54.95400      45939          NA
## 9799  55.39600      47372          NA
## 9800  55.83800      48856          NA
## 9801  56.27900      50476          NA
## 9802  56.71700      52224          NA
## 9803  57.15300      54192          NA
## 9804  57.58500      56308          NA
## 9805  58.01200      58386          NA
## 9806  58.43400      60146          NA
## 9807  58.85100      61415          NA
## 9808  59.26500      62089          NA
## 9809  59.67500      62275          NA
## 9810  60.07900      62268          NA
## 9811  60.47300      62456          NA
## 9812  60.85000      63122          NA
## 9813  61.20600      64360          NA
## 9814  61.53500      66079          NA
## 9815  61.83400      68196          NA
## 9816  62.10000      70515          NA
## 9817  62.33100      72936          NA
## 9818  62.52800      75422          NA
## 9819  62.69300      78015          NA
## 9820  62.83400      80630          NA
## 9821  62.95500      83192          NA
## 9822  63.06400      85641          NA
## 9823  63.16900      87904   2481.8635
## 9824  63.27300      89985   2453.5556
## 9825  63.38000      91984   2461.4145
## 9826  63.49200      94062   2491.9098
## 9827  63.60500      96304   2524.9473
## 9828  63.71500      98779   2644.5200
## 9829  63.81400     101386   2679.7871
## 9830  63.90100     103901   2827.7926
## 9831  63.97800     106030   2756.2011
## 9832  64.04900     107535   2908.2538
## 9833  64.12100     108311   2795.5291
## 9834  64.20200     108473   2622.1719
## 9835  64.29800     108206   2703.5720
## 9836  64.41300     107769   2751.8445
## 9837  64.55000     107405   2894.6429
## 9838  64.71000     107170   2963.8722
## 9839  64.88800     107027   2984.0662
## 9840  65.08000     106902   3034.5233
## 9841  65.28200     106624   2948.7235
## 9842  65.48900     106135   3022.7957
## 9843  65.69700     105374   3042.1582
## 9844  65.90100     104442   3012.9471
## 9845  66.09900     103549   2965.7382
## 9846  66.29000     102971   3014.9860
## 9847  66.47100     102916   3084.7539
## 9848  66.64600     103448   3166.7439
## 9849  66.81700     104506   3076.1654
## 9850  66.98600     105922   2923.3597
## 9851  67.15200     107444   2815.4975
## 9852  67.31500     108886   2906.6170
## 9853  67.47100     110215   2897.4176
## 9854  67.61800     111461   2941.8733
## 9855  67.75500     112640   2917.2422
## 9856  67.88300     113811   2921.1456
## 9857  68.00200     115021   2839.3884
## 9858        NA     116255   2719.6846
## 9859  46.44164  105203230          NA
## 9860  47.54703  108061826          NA
## 9861  48.14302  111045418          NA
## 9862  48.23120  114101578          NA
## 9863  48.82611  117271192          NA
## 9864  49.41987  120541198          NA
## 9865  50.48080  123908187          NA
## 9866  51.03925  127444919          NA
## 9867  51.58861  131026902          NA
## 9868  52.14787  134704201          NA
## 9869  52.73254  138473057          NA
## 9870  53.35716  142307871          NA
## 9871  53.99671  146213398          NA
## 9872  54.70712  150292311          NA
## 9873  55.42403  154509840          NA
## 9874  56.13675  158917282   5417.7189
## 9875  56.80557  163532333   6136.7331
## 9876  57.37213  168361040   6235.7452
## 9877  57.85439  173447050   5803.4041
## 9878  58.26239  178866336   5917.4384
## 9879  58.63716  184628581   5855.9934
## 9880  59.03590  190731389   5762.4232
## 9881  59.50275  197157155   5374.5166
## 9882  60.09308  203834175   5047.9195
## 9883  60.80084  210648804   4861.2934
## 9884  61.61609  217572797   4659.7119
## 9885  62.48808  224549836   4567.5397
## 9886  63.38293  231570125   4402.4937
## 9887  64.21949  238565130   4428.7397
## 9888  65.04125  245453236   4418.2472
## 9889  65.76999  254215127   4824.8624
## 9890  66.39132  261046286   4895.2281
## 9891  66.88675  265656639   5039.5487
## 9892  67.38788  272107854   5029.3517
## 9893  67.83172  278384977   5037.6292
## 9894  68.25403  286096967   5039.9339
## 9895  68.62672  292041169   5187.5985
## 9896  68.95879  297891711   5273.8611
## 9897  69.27533  303641719   5411.7472
## 9898  69.58631  309436718   5416.2347
## 9899  69.88726  315326781   5673.7126
## 9900  70.18606  321297196   5650.4474
## 9901  70.47002  327362274   5627.8733
## 9902  70.75154  333608806   5800.2374
## 9903  71.03757  340143477   6137.0779
## 9904  71.31003  347029862   6317.1408
## 9905  71.58494  354302465   6548.6658
## 9906  71.84130  361929175   6745.5946
## 9907  72.09133  369823227   6906.3523
## 9908  72.32599  377883960   6805.2661
## 9909  72.53918  385917928   6998.9993
## 9910  72.73749  393942668   7102.3572
## 9911  72.93166  401968363   7259.3970
## 9912  73.13240  409968633   7276.3686
## 9913  73.32644  417924350   7338.3475
## 9914  73.51484  425821771   7375.4648
## 9915  73.71077  433616042   7533.9749
## 9916  73.89982  441298977   7534.9934
## 9917  74.08883  448974232   7556.0519
## 9918  74.27087  456709496   7540.4350
## 9919  74.44773  464542370   7120.4760
## 9920        NA  472494995   7303.8277
## 9921  46.36311   97553136          NA
## 9922  46.96400  100147125          NA
## 9923  47.55821  102808039          NA
## 9924  48.14912  105546241          NA
## 9925  48.73992  108376349          NA
## 9926  49.32753  111307810   1724.9281
## 9927  49.90658  114351844   1789.8997
## 9928  50.47397  117503838   1891.4649
## 9929  51.03117  120739199   2034.2738
## 9930  51.58403  124023275   2212.0698
## 9931  52.14921  127335093   2344.6195
## 9932  52.74821  130670746   2467.6620
## 9933  53.38991  134051048   2731.5274
## 9934  54.07143  137511232   2813.3361
## 9935  54.77919  141099598   2916.0667
## 9936  55.47528  144855662   2921.2686
## 9937  56.11207  148781943   3288.0528
## 9938  56.65941  152881163   3214.4533
## 9939  57.10986  157192250   3005.3724
## 9940  57.47736  161761403   2843.4275
## 9941  57.80939  166616386   2597.2412
## 9942  58.17151  171766018   2521.6368
## 9943  58.62408  177185651   2761.1740
## 9944  59.20574  182825252   2819.0324
## 9945  59.92376  188614684   2727.4451
## 9946  60.76310  194494177   2733.8181
## 9947  61.68502  200443463   2597.1822
## 9948  62.62529  206447529   2564.7371
## 9949  63.52873  212456877   2495.9170
## 9950  64.36466  218415839   2474.4307
## 9951  65.13629  226259024   2673.5526
## 9952  65.78211  232101413   2585.2335
## 9953  66.34894  237828686   2656.6194
## 9954  66.85473  243429317   2649.6563
## 9955  67.30725  248897278   2644.9274
## 9956  67.71427  254233340   2667.8528
## 9957  68.08394  259431598   2785.1325
## 9958  68.42514  264504158   2838.8159
## 9959  68.74579  269440674   2974.7141
## 9960  69.05321  274350014   3054.6428
## 9961  69.35469  279279614   3181.8803
## 9962  69.65396  284249005   3211.2102
## 9963  69.94988  289264351   3253.0830
## 9964  70.24136  294343659   3269.4143
## 9965  70.52966  299502746   3463.3526
## 9966  70.81302  304755514   3557.8935
## 9967  71.08731  310109431   3676.3402
## 9968  71.34764  315573363   3833.6010
## 9969  71.58862  321168746   3907.1799
## 9970  71.80986  326900966   3940.0776
## 9971  72.01470  332777842   4074.4862
## 9972  72.21086  338813060   3959.5209
## 9973  72.40502  344998428   4029.9413
## 9974  72.60232  351290405   3974.4193
## 9975  72.80117  357629838   3971.9186
## 9976  73.00030  363975556   3931.5563
## 9977  73.19818  370294017   4073.6259
## 9978  73.39422  376588457   4127.5320
## 9979  73.58734  382955167   4126.4252
## 9980  73.77759  389457075   4113.8845
## 9981  73.96542  396147843   3907.6539
## 9982        NA  403051615   4002.8946
## 9983  46.36311   97553136          NA
## 9984  46.96400  100147125          NA
## 9985  47.55821  102808039          NA
## 9986  48.14912  105546241          NA
## 9987  48.73992  108376349          NA
## 9988  49.32753  111307810   1711.8804
## 9989  49.90658  114351844   1776.3605
## 9990  50.47397  117503838   1877.1574
## 9991  51.03117  120739199   2018.8861
## 9992  51.58403  124023275   2195.3372
## 9993  52.14921  127335093   2326.8842
## 9994  52.74821  130670746   2448.9961
## 9995  53.38991  134051048   2710.8654
## 9996  54.07143  137511232   2792.0554
## 9997  54.77919  141099598   2894.0089
## 9998  55.47528  144855662   2899.1714
## 9999  56.11207  148781943   3263.1812
## 10000 56.65941  152881163   3190.1384
## 10001 57.10986  157192250   2982.6391
## 10002 57.47736  161761403   2821.9192
## 10003 57.80939  166616386   2577.5950
## 10004 58.17151  171766018   2502.5625
## 10005 58.62408  177185651   2740.2878
## 10006 59.20574  182825252   2797.7086
## 10007 59.92376  188614684   2706.8141
## 10008 60.76310  194494177   2713.1389
## 10009 61.68502  200443463   2577.5365
## 10010 62.62529  206447529   2545.3368
## 10011 63.52873  212456877   2477.0373
## 10012 64.36466  218415839   2455.7135
## 10013 65.11061  224280776   2676.7326
## 10014 65.75827  230032568   2588.7531
## 10015 66.32648  235665095   2660.7295
## 10016 66.83333  241166641   2654.2853
## 10017 67.28664  246530980   2650.1156
## 10018 67.69419  251758674   2672.8160
## 10019 68.06422  256843601   2792.1990
## 10020 68.40566  261797640   2844.3406
## 10021 68.72690  266664106   2978.8002
## 10022 69.03491  271501583   3058.0203
## 10023 69.33706  276357461   3189.7752
## 10024 69.63706  281251221   3222.4974
## 10025 69.93379  286188978   3268.3189
## 10026 70.22612  291188690   3282.7325
## 10027 70.51532  296266120   3474.6920
## 10028 70.79963  301435118   3568.0986
## 10029 71.07492  306703097   3688.9695
## 10030 71.33624  312078867   3847.7636
## 10031 71.57812  317576769   3921.0042
## 10032 71.80020  323211867   3952.6428
## 10033 72.00580  328991681   4087.7003
## 10034 72.20270  334930074   3969.1636
## 10035 72.39760  341018430   4039.1874
## 10036 72.59565  347213697   3982.2247
## 10037 72.79524  353456440   3980.7041
## 10038 72.99505  359705464   3939.3841
## 10039 73.19351  365926929   4080.6735
## 10040 73.39008  372133652   4135.4873
## 10041 73.58362  378386080   4134.9820
## 10042 73.77424  384771769   4122.8400
## 10043 73.96238  391344574   3919.7814
## 10044       NA  398128866   4014.6703
## 10045 47.53418 2103847343    905.7384
## 10046 48.05848 2129932353    904.3638
## 10047 48.66787 2169232529    916.7851
## 10048 49.39121 2220611237    938.2176
## 10049 50.23694 2272300639    989.7712
## 10050 51.16992 2325559683   1024.6356
## 10051 52.13997 2382276555   1049.2571
## 10052 53.09559 2438676874   1057.6965
## 10053 53.99656 2496665175   1093.0746
## 10054 54.81116 2557008335   1155.5844
## 10055 55.55744 2618924821   1224.0518
## 10056 56.22297 2682196981   1272.3539
## 10057 56.82782 2744462946   1320.6895
## 10058 57.41601 2806594301   1383.3314
## 10059 57.98822 2868154949   1432.7155
## 10060 58.51405 2928271499   1464.1179
## 10061 59.03806 2987729457   1522.8483
## 10062 59.53466 3046617814   1562.2944
## 10063 60.00485 3106526769   1589.4594
## 10064 60.42594 3167924604   1630.2855
## 10065 60.82744 3230235174   1676.6810
## 10066 61.20612 3294486256   1677.5237
## 10067 61.57398 3362068811   1690.4182
## 10068 61.90082 3430692235   1687.9363
## 10069 62.20235 3499166295   1735.8028
## 10070 62.53653 3568809321   1779.0398
## 10071 62.90003 3640347413   1814.6707
## 10072 63.19579 3713737596   1864.5654
## 10073 63.46888 3787553947   1903.7211
## 10074 63.72106 3860485653   1925.3513
## 10075 63.96041 3933989104   1929.5221
## 10076 64.19559 4004465562   1924.7866
## 10077 64.36197 4072990921   1923.6882
## 10078 64.52150 4140182477   1957.3420
## 10079 64.74678 4206647598   1991.8974
## 10080 64.99678 4272334475   2036.7250
## 10081 65.30409 4337849889   2115.7323
## 10082 65.61751 4403202742   2192.9368
## 10083 65.89751 4467625698   2217.4399
## 10084 66.13456 4530510059   2270.3068
## 10085 66.40153 4592353799   2371.4826
## 10086 66.68098 4653117238   2428.2685
## 10087 66.96075 4713002936   2511.6938
## 10088 67.24670 4772392680   2630.1994
## 10089 67.55607 4831529535   2798.2222
## 10090 67.85510 4890687701   2966.0938
## 10091 68.20134 4949621755   3172.2393
## 10092 68.54485 5008455377   3414.5555
## 10093 68.88030 5067844758   3573.8054
## 10094 69.23804 5127662761   3645.3078
## 10095 69.57606 5187959208   3889.4378
## 10096 69.92641 5249903610   4088.6596
## 10097 70.25712 5313945906   4263.9754
## 10098 70.57899 5378522588   4441.4448
## 10099 70.87211 5442819928   4605.2638
## 10100 71.15195 5506549042   4755.9356
## 10101 71.41253 5570150918   4917.8443
## 10102 71.66188 5634010938   5114.3425
## 10103 71.87083 5695493550   5307.6598
## 10104 72.06944 5754728710   5463.9939
## 10105 72.18110 5811279241   5341.4794
## 10106       NA 5864624595   5660.8768
## 10107 61.99500    2043664          NA
## 10108 62.36700    2092667          NA
## 10109 62.74300    2140063          NA
## 10110 63.12200    2185050          NA
## 10111 63.49600    2228429          NA
## 10112 63.85600    2269399          NA
## 10113 64.18600    2307959          NA
## 10114 64.47600    2344108          NA
## 10115 64.71800    2377848          NA
## 10116 64.90800    2411588          NA
## 10117 65.04500    2445328          NA
## 10118 65.13400    2479871          NA
## 10119 65.18600    2515217          NA
## 10120 65.21300    2549760          NA
## 10121 65.22100    2582697          NA
## 10122 65.20900    2611616          NA
## 10123 65.17200    2638126          NA
## 10124 65.11100    2660619          NA
## 10125 65.03700    2682309          NA
## 10126 64.97100    2703999          NA
## 10127 64.95100    2728099          NA
## 10128 65.02200    2754609          NA
## 10129 65.20500    2782725          NA
## 10130 65.49900    2811645          NA
## 10131 65.88700    2840565          NA
## 10132 66.33000    2867878          NA
## 10133 66.77200    2893584          NA
## 10134 67.15600    2918487          NA
## 10135 67.44000    2940177          NA
## 10136 67.60500    2957047          NA
## 10137 67.64300    2969097          NA
## 10138 67.56300    2975523          NA
## 10139 67.40800    2977130          NA
## 10140 67.22100    2973114          NA
## 10141 67.03000    2964277          NA
## 10142 66.86700    2952307   1502.2474
## 10143 66.76100    2946401   1416.7936
## 10144 66.72200    2935524   1445.4653
## 10145 66.75200    2934339   1351.4457
## 10146 66.85200    2929735   1307.9778
## 10147 67.00600    2923783   1338.2650
## 10148 67.18500    2917252   1423.0780
## 10149 67.36200    2910504   1537.6349
## 10150 67.52100    2902320   1643.7408
## 10151 67.66500    2895147   1769.7515
## 10152 67.82000    2888111   1907.1176
## 10153 68.02200    2880095   2004.2220
## 10154 68.30200    2873429   2069.1377
## 10155 68.67100    2867964   2234.7808
## 10156 69.11900    2864346   2103.3474
## 10157 69.61600    2861487   2254.9358
## 10158 70.11900    2859833   2387.5117
## 10159 70.58100    2859458   2373.7430
## 10160 70.96800    2858692   2589.1147
## 10161 71.26700    2856950   2720.2184
## 10162 71.47800    2834530   2732.4607
## 10163 71.61700    2802170   2885.8780
## 10164 71.71700    2755158   3072.8010
## 10165 71.80800    2708214   3260.5317
## 10166 71.90100    2664974   3435.4820
## 10167 72.00600    2620495   3235.9458
## 10168       NA    2573928   3753.8930
## 10169       NA      22461          NA
## 10170       NA      22813          NA
## 10171       NA      23043          NA
## 10172       NA      23165          NA
## 10173       NA      23236          NA
## 10174       NA      23289          NA
## 10175       NA      23302          NA
## 10176       NA      23292          NA
## 10177       NA      23295          NA
## 10178       NA      23348          NA
## 10179       NA      23487  75168.6790
## 10180       NA      23721  78318.2611
## 10181       NA      24049  80840.9159
## 10182       NA      24445  84743.6129
## 10183       NA      24829  87166.2879
## 10184       NA      25203  85037.5526
## 10185       NA      25523  87675.8817
## 10186       NA      25811  89778.1614
## 10187       NA      26090  92329.5650
## 10188       NA      26391  94502.4079
## 10189       NA      26752  94798.4665
## 10190       NA      27162  94228.7217
## 10191       NA      27633  94875.5510
## 10192       NA      28091  94443.9383
## 10193       NA      28511  94434.0513
## 10194       NA      28836  94965.1278
## 10195       NA      29050  96577.2920
## 10196       NA      29156  98616.9848
## 10197       NA      29232 102883.8031
## 10198       NA      29309 106885.9858
## 10199       NA      29433 109249.2580
## 10200       NA      29629 109628.2426
## 10201       NA      29859 110270.4729
## 10202       NA      30145 108226.0630
## 10203       NA      30436 109566.2657
## 10204       NA      30731 110811.9083
## 10205       NA      31001 111066.9079
## 10206       NA      31268 112582.1232
## 10207       NA      31554 115470.0006
## 10208       NA      31836 118224.5559
## 10209       NA      32148 121655.1589
## 10210       NA      32474 123068.6602
## 10211       NA      32804 123081.2064
## 10212       NA      33144 123143.4287
## 10213       NA      33499 124848.4362
## 10214       NA      33842 125925.4655
## 10215       NA      34189 131881.8464
## 10216       NA      34524 149446.5950
## 10217       NA      34860 148993.1027
## 10218       NA      35223 130794.9050
## 10219       NA      35609 132094.0117
## 10220       NA      36025 139708.4569
## 10221       NA      36459 139442.7181
## 10222       NA      36899 150972.2203
## 10223       NA      37320 160000.3677
## 10224       NA      37723 165989.5051
## 10225       NA      38070 170153.5378
## 10226       NA      38392 162819.3849
## 10227       NA      38682 171223.9805
## 10228       NA      38967 181709.3436
## 10229       NA      39244 159221.6168
## 10230       NA      39520          NA
## 10231 48.39200     955514          NA
## 10232 49.30400     982181          NA
## 10233 50.18500    1011327          NA
## 10234 51.01200    1042387          NA
## 10235 51.77100    1074518          NA
## 10236 52.46100    1107121          NA
## 10237 53.09800    1139962          NA
## 10238 53.70200    1173186          NA
## 10239 54.28500    1207104          NA
## 10240 54.84500    1242213          NA
## 10241 55.36400    1278819          NA
## 10242 55.81900    1317042          NA
## 10243 56.19200    1356673          NA
## 10244 56.47700    1397305          NA
## 10245 56.67600    1438421          NA
## 10246 56.79600    1479646          NA
## 10247 56.84800    1520868          NA
## 10248 56.86000    1562207          NA
## 10249 56.86100    1603910          NA
## 10250 56.87500    1646290          NA
## 10251 56.93600    1689622          NA
## 10252 57.07400    1733475   1433.1913
## 10253 57.29500    1777727   1514.0983
## 10254 57.59500    1823214   1562.4526
## 10255 57.96800    1871089   1612.8094
## 10256 58.39200    1921889   1659.8814
## 10257 58.83600    1976313   1765.4998
## 10258 59.26600    2033351   1775.3249
## 10259 59.65500    2089709   1815.6831
## 10260 59.99200    2141005   1846.2267
## 10261 60.26800    2184139   1752.1347
## 10262 60.48600    2217918   1575.4469
## 10263 60.67000    2243495   1413.3178
## 10264 60.84100    2263196   1356.6197
## 10265 61.01500    2280475   1375.0768
## 10266 61.21100    2298017   1451.5915
## 10267 61.44700    2316571   1472.1499
## 10268 61.73000    2335744   1516.9604
## 10269 62.06300    2355667   1554.3677
## 10270 62.44600    2376228   1588.2300
## 10271 62.86900    2397417   1592.2340
## 10272 63.31900    2419594   1624.2234
## 10273 63.77700    2443261   1684.6196
## 10274 64.23000    2468765   1783.9988
## 10275 64.67100    2496394   1951.7134
## 10276 65.10300    2526429   2068.3985
## 10277 65.53800    2558854   2216.9229
## 10278 65.98500    2593819   2411.1665
## 10279 66.44700    2631899   2587.7779
## 10280 66.91600    2673794   2514.9166
## 10281 67.38000    2719902   2629.6483
## 10282 67.81800    2770357   3028.1617
## 10283 68.21700    2824698   3335.7936
## 10284 68.56600    2881783   3650.6015
## 10285 68.86300    2940111   3860.3257
## 10286 69.11100    2998433   3875.3217
## 10287 69.32100    3056358   3858.5152
## 10288 69.50900    3113788   4000.8378
## 10289 69.68900    3170214   4233.9727
## 10290 69.87000    3225166   4394.9881
## 10291 70.05600    3278292   4126.6991
## 10292       NA    3329282   4121.2388
## 10293 63.70561     480579          NA
## 10294 64.39178     491140          NA
## 10295 65.06190     502558          NA
## 10296 65.70290     513409          NA
## 10297 66.30827     521753          NA
## 10298 66.88439     526327          NA
## 10299 67.44717     526419          NA
## 10300 68.01220     522796          NA
## 10301 68.58810     517481          NA
## 10302 69.16959     513340          NA
## 10303 69.73983     512407          NA
## 10304 70.27602     515449          NA
## 10305 70.75841     521785          NA
## 10306 71.17527     530220          NA
## 10307 71.52385     538902          NA
## 10308 71.81107     546487          NA
## 10309 72.05027     552562          NA
## 10310 72.26398     557576          NA
## 10311 72.46805     562065          NA
## 10312 72.66976     566888          NA
## 10313 72.87220     572608          NA
## 10314 73.07034     579445          NA
## 10315 73.25571     587001          NA
## 10316 73.42185     594506          NA
## 10317 73.57110     600884          NA
## 10318 73.71134     605398          NA
## 10319 73.85515     607711          NA
## 10320 74.00688     608144          NA
## 10321 74.16390     607413          NA
## 10322 74.31798     606571          NA
## 10323 74.44337     606372          NA
## 10324 74.51041     607105          NA
## 10325 74.50066     608516          NA
## 10326 74.40861     610170          NA
## 10327 74.24222     611389          NA
## 10328 74.02222     611712          NA
## 10329 73.77878     611003          NA
## 10330 73.54905     609520   4488.7925
## 10331 73.36385     607662   4723.1412
## 10332 73.23863     606001   4290.8948
## 10333 73.18207     604950   4431.5984
## 10334 73.18751     607389   4462.3478
## 10335 73.23727     609828   4529.1212
## 10336 73.31854     612267   4623.0739
## 10337 73.42927     613353   4819.1456
## 10338 73.98293     614261   5013.1935
## 10339 73.83902     615025   5435.8837
## 10340 74.33902     615875   5798.0622
## 10341 75.13659     616969   6205.8183
## 10342 75.14390     618294   5833.6568
## 10343 75.99024     619428   5982.1965
## 10344 75.98293     620079   6168.8455
## 10345 76.20000     620601   5995.7716
## 10346 76.49024     621207   6202.5038
## 10347 76.44146     621810   6307.0156
## 10348 76.44878     622159   6517.1896
## 10349 76.44146     622303   6707.8473
## 10350 76.48537     622373   7023.4305
## 10351 76.84146     622227   7381.8042
## 10352 76.68293     622028   7684.1804
## 10353 75.93171     621306   6515.5337
## 10354       NA     620173   7339.0820
## 10355 48.45800   12328532          NA
## 10356 48.88000   12710587          NA
## 10357 49.30700   13094890          NA
## 10358 49.73800   13478425          NA
## 10359 50.16800   13857656          NA
## 10360 50.59300   14230163          NA
## 10361 51.00900   14595351    727.6240
## 10362 51.41300   14954037    781.1280
## 10363 51.80800   15307267    838.3213
## 10364 52.19500   15656846    887.9555
## 10365 52.57200   16004732    909.5479
## 10366 52.94000   16350883    940.2456
## 10367 53.30500   16696890    943.4558
## 10368 53.67600   17048525    957.1430
## 10369 54.06600   17413149    989.6376
## 10370 54.49200   17796171   1041.3403
## 10371 54.97600   18198836   1127.8535
## 10372 55.52500   18620087   1168.2811
## 10373 56.14200   19059773   1165.8539
## 10374 56.82300   19516942   1192.2429
## 10375 57.56000   19990006   1205.7748
## 10376 58.33900   20479709   1156.0591
## 10377 59.13900   20984023   1229.1628
## 10378 59.93600   21495088   1216.5342
## 10379 60.71700   22002641   1264.7358
## 10380 61.46900   22499111   1311.0658
## 10381 62.18800   22980334   1402.4783
## 10382 62.87700   23447256   1369.9081
## 10383 63.53500   23903592   1503.1130
## 10384 64.15700   24355624   1516.9860
## 10385 64.73200   24807461   1539.9675
## 10386 65.25100   25260407   1621.2856
## 10387 65.71500   25711410   1559.2325
## 10388 66.12800   26155204   1521.2167
## 10389 66.50100   26584473   1654.8721
## 10390 66.84600   26994255   1541.3970
## 10391 67.17500   27383472   1707.1971
## 10392 67.50800   27754573   1657.7773
## 10393 67.86000   28110447   1754.8540
## 10394 68.24500   28455504   1751.7129
## 10395 68.68400   28793672   1763.4008
## 10396 69.19300   29126323   1869.6669
## 10397 69.76900   29454765   1905.0720
## 10398 70.39900   29782884   1994.8154
## 10399 71.06700   30115196   2065.9993
## 10400 71.74600   30455563   2109.0623
## 10401 72.40300   30804689   2242.3970
## 10402 73.00900   31163670   2294.5142
## 10403 73.54600   31536807   2401.6018
## 10404 74.00300   31929087   2472.7932
## 10405 74.38200   32343384   2534.2590
## 10406 74.69600   32781860   2631.4541
## 10407 74.97000   33241898   2673.0457
## 10408 75.22700   33715705   2754.8491
## 10409 75.47700   34192358   2788.7209
## 10410 75.72600   34663608   2875.2581
## 10411 75.97400   35126274   2867.0159
## 10412 76.21800   35581257   2950.2122
## 10413 76.45300   36029089   3004.6323
## 10414 76.68000   36471766   3044.9062
## 10415 76.90100   36910558   2818.7717
## 10416       NA   37344787   2990.8079
## 10417 39.43900    7184870          NA
## 10418 39.87900    7342117          NA
## 10419 40.23800    7507309          NA
## 10420 40.50800    7679465          NA
## 10421 40.69800    7857107          NA
## 10422 40.82200    8039217          NA
## 10423 40.90400    8225919          NA
## 10424 40.97500    8417698          NA
## 10425 41.06100    8614445          NA
## 10426 41.17800    8816056          NA
## 10427 41.34300    9022747          NA
## 10428 41.56700    9232655          NA
## 10429 41.83600    9446235          NA
## 10430 42.13500    9668655          NA
## 10431 42.45100    9906963          NA
## 10432 42.75900   10165216          NA
## 10433 43.02800   10443954          NA
## 10434 43.24200   10738534          NA
## 10435 43.39100   11041206          NA
## 10436 43.47900   11341405          NA
## 10437 43.51500   11630194    242.2561
## 10438 43.52100   11913085    248.3286
## 10439 43.52700   12189817    225.9454
## 10440 43.56000   12439773    186.6447
## 10441 43.63700   12636120    171.8012
## 10442 43.77200   12764385    171.7755
## 10443 43.97500   12808566    167.2458
## 10444 44.23500   12786353    192.1642
## 10445 44.54100   12758003    208.3837
## 10446 44.88700   12805950    221.0977
## 10447 45.26100   12987292    220.1906
## 10448 45.64700   13328029    225.1295
## 10449 46.03300   13805999    204.0242
## 10450 46.41000   14370950    216.7771
## 10451 46.77200   14948050    222.0241
## 10452 47.12300   15483277    219.1929
## 10453 47.47000   15960445    236.4607
## 10454 47.82600   16397175    256.1736
## 10455 48.19400   16813946    274.6344
## 10456 48.57200   17244176    299.1090
## 10457 48.94600   17711925    294.6471
## 10458 49.29500   18221884    321.0180
## 10459 49.61000   18764147    340.7050
## 10460 49.88900   19331097    353.4608
## 10461 50.14300   19910549    370.3412
## 10462 50.38700   20493927    383.7110
## 10463 50.64100   21080108    409.2050
## 10464 50.93400   21673319    428.7696
## 10465 51.29200   22276596    447.6846
## 10466 51.73800   22894718    463.1198
## 10467 52.31000   23531567    479.8848
## 10468 53.04300   24187500    501.5006
## 10469 53.93100   24862673    523.2944
## 10470 54.94900   25560752    544.4479
## 10471 56.06200   26286192    568.5917
## 10472 57.20600   27042001    589.8594
## 10473 58.30900   27829930    595.0780
## 10474 59.30900   28649007    599.6919
## 10475 60.16300   29496009    602.5305
## 10476 60.85400   30366043    598.8137
## 10477 61.38700   31255435    574.5955
## 10478       NA   32163045    570.8040
## 10479 42.38100   21736947          NA
## 10480 42.96100   22211626    145.0386
## 10481 43.56700   22697664    145.1738
## 10482 44.21500   23198238    154.5562
## 10483 44.90700   23717785    155.8956
## 10484 45.63000   24259356    155.6885
## 10485 46.35700   24823937    155.9909
## 10486 47.05500   25410054    144.2013
## 10487 47.69800   26015239    144.7800
## 10488 48.27900   26635852    151.9078
## 10489 48.79600   27269063    154.5370
## 10490 49.25800   27913749    157.8283
## 10491 49.68600   28570093    159.2384
## 10492 50.09800   29238168    156.7099
## 10493 50.50300   29918469    156.4726
## 10494 50.90700   30611093    160.1690
## 10495 51.31200   31314347    164.6137
## 10496 51.71400   32026748    170.6324
## 10497 52.11300   32748782    177.2885
## 10498 52.51100   33481397    183.5342
## 10499 52.91000   34224316    191.4087
## 10500 53.31500   34976465    200.6220
## 10501 53.72600   35734273    208.0872
## 10502 54.14000   36491804    213.9171
## 10503 54.55600   37241530    219.3947
## 10504 54.97000   37977087    223.4646
## 10505 55.37500   38698484    221.2054
## 10506 55.76800   39404350    211.7604
## 10507 56.14400   40085653    192.3328
## 10508 56.50500   40731439    181.1795
## 10509 56.84900   41335188    184.3322
## 10510 57.18000   41890192    183.8163
## 10511 57.50400   42401686    189.7497
## 10512 57.82300   42889992    202.1590
## 10513 58.14100   43383421    213.4097
## 10514 58.46000   43901598    226.0822
## 10515 58.78000   44452203    238.2125
## 10516 59.10100   45027223    249.3625
## 10517 59.42200   45611220    260.3536
## 10518 59.74400   46181075    278.9415
## 10519 60.06300   46719698    309.9657
## 10520 60.37700   47225119    344.8804
## 10521 60.68500   47702163    381.3894
## 10522 60.98900   48148907    426.9196
## 10523 61.29400   48564489    481.2338
## 10524 61.60700   48949931    542.2191
## 10525 61.93800   49301049    609.9960
## 10526 62.29400   49621479    681.8170
## 10527 62.67800   49929642    752.6491
## 10528 63.08900   50250366    825.6949
## 10529 63.52500   50600827    902.5419
## 10530 63.98300   50990612    962.9954
## 10531 64.45300   51413703   1017.0143
## 10532 64.92100   51852464   1088.0595
## 10533 65.37800   52280816   1167.6310
## 10534 65.81000   52680724   1196.7433
## 10535 66.20500   53045199   1313.4076
## 10536 66.55800   53382521   1380.1528
## 10537 66.86700   53708318   1459.6430
## 10538 67.13400   54045422   1548.4566
## 10539 67.36300   54409794   1586.9023
## 10540       NA   54806014   1292.0928
## 10541 46.48300     634138          NA
## 10542 47.23100     649274          NA
## 10543 47.95700     665119          NA
## 10544 48.65600     681633          NA
## 10545 49.32500     698797          NA
## 10546 49.95800     716588          NA
## 10547 50.55400     734866          NA
## 10548 51.11600     753683          NA
## 10549 51.65000     773428          NA
## 10550 52.16300     794588          NA
## 10551 52.66900     817474          NA
## 10552 53.18400     842353          NA
## 10553 53.71400     868954          NA
## 10554 54.26200     896264          NA
## 10555 54.82000     922900          NA
## 10556 55.36900     947925          NA
## 10557 55.88200     971117          NA
## 10558 56.33800     992955          NA
## 10559 56.73100    1014055          NA
## 10560 57.06700    1035379          NA
## 10561 57.37400    1057723   3287.9542
## 10562 57.69000    1080938   3248.5946
## 10563 58.04900    1105103   3164.9089
## 10564 58.46400    1131624   3034.3773
## 10565 58.93300    1162282   2947.3397
## 10566 59.45100    1198149   2872.3812
## 10567 60.00700    1239923   2907.9292
## 10568 60.55600    1286796   2901.5813
## 10569 61.04400    1336545   2816.2943
## 10570 61.42000    1386011   2766.2599
## 10571 61.60800    1432899   2730.5257
## 10572 61.53100    1476399   2866.4695
## 10573 61.16500    1516951   2990.4126
## 10574 60.51600    1555098   2870.9809
## 10575 59.60900    1591826   2853.2577
## 10576 58.47900    1627866   2898.8742
## 10577 57.17900    1663378   2927.5226
## 10578 55.80600    1698029   2988.8051
## 10579 54.46200    1731635   3027.2709
## 10580 53.23100    1763861   3072.0959
## 10581 52.19200    1794583   3124.9504
## 10582 51.39900    1823667   3111.3366
## 10583 50.86200    1851519   3211.2836
## 10584 50.58900    1879113   3298.2797
## 10585 50.60000    1907737   3647.4039
## 10586 50.93100    1938316   3680.6592
## 10587 51.60900    1971318   3875.0221
## 10588 52.59300    2006516   4011.6394
## 10589 53.81700    2043382   4043.6459
## 10590 55.20700    2081039   3982.2264
## 10591 56.66500    2118877   4147.3154
## 10592 58.08500    2156698   4282.0368
## 10593 59.38700    2194777   4420.7269
## 10594 60.51300    2233506   4587.9789
## 10595 61.42500    2273426   4782.0319
## 10596 62.11900    2314901   4896.6153
## 10597 62.62500    2358044   4808.6508
## 10598 63.02100    2402623   4670.9493
## 10599 63.37300    2448300   4632.3909
## 10600 63.70800    2494524   4504.6174
## 10601 64.04500    2540916   4074.5112
## 10602       NA    2587344   4098.6566
## 10603       NA       4377          NA
## 10604       NA       4627          NA
## 10605       NA       4942          NA
## 10606       NA       5270          NA
## 10607       NA       5590          NA
## 10608       NA       5859          NA
## 10609       NA       6065          NA
## 10610       NA       6221          NA
## 10611       NA       6343          NA
## 10612       NA       6445          NA
## 10613       NA       6553          NA
## 10614       NA       6669          NA
## 10615       NA       6798          NA
## 10616       NA       6929          NA
## 10617       NA       7062          NA
## 10618       NA       7178          NA
## 10619       NA       7284          NA
## 10620       NA       7396          NA
## 10621       NA       7505          NA
## 10622       NA       7626          NA
## 10623       NA       7751          NA
## 10624       NA       7871          NA
## 10625       NA       8016          NA
## 10626       NA       8163          NA
## 10627       NA       8331          NA
## 10628       NA       8501          NA
## 10629       NA       8679          NA
## 10630       NA       8868          NA
## 10631       NA       9058          NA
## 10632       NA       9275          NA
## 10633       NA       9506          NA
## 10634       NA       9766          NA
## 10635       NA      10030          NA
## 10636       NA      10287          NA
## 10637       NA      10496          NA
## 10638       NA      10626          NA
## 10639       NA      10677          NA
## 10640       NA      10643          NA
## 10641       NA      10567          NA
## 10642       NA      10449          NA
## 10643       NA      10335          NA
## 10644       NA      10219          NA
## 10645       NA      10102          NA
## 10646       NA       9990          NA
## 10647       NA       9906   3431.6369
## 10648       NA       9848   3347.2462
## 10649       NA       9827   3668.8741
## 10650       NA       9846   2824.8127
## 10651       NA       9880   3440.6676
## 10652       NA       9945   3728.9231
## 10653       NA      10009   4116.7550
## 10654       NA      10069   4501.4461
## 10655       NA      10136   4979.8378
## 10656       NA      10208   6458.4014
## 10657       NA      10289   8109.5652
## 10658       NA      10374   8341.0123
## 10659       NA      10474   8556.4260
## 10660       NA      10577   7986.1427
## 10661       NA      10678   8392.9581
## 10662       NA      10764   8325.9017
## 10663       NA      10834   8367.1886
## 10664       NA      10873   8462.2343
## 10665 35.58300   10105060    327.7573
## 10666 35.94100   10267260    328.7351
## 10667 36.35700   10433147    329.6883
## 10668 36.82800   10604620    330.5043
## 10669 37.34600   10783958    349.4890
## 10670 37.90300   10972912    339.3382
## 10671 38.48700   11172530    356.7400
## 10672 39.08700   11382965    344.6425
## 10673 39.69100   11603921    340.3637
## 10674 40.29100   11834657    348.6234
## 10675 40.88100   12074628    350.4969
## 10676 41.45700   12323984    339.3001
## 10677 42.02400   12583142    342.6728
## 10678 42.58800   12852205    333.9002
## 10679 43.15100   13131260    347.5028
## 10680 43.71800   13420367    344.9690
## 10681 44.29400   13719466    352.2911
## 10682 44.88500   14028535    354.9240
## 10683 45.49300   14347653    362.3191
## 10684 46.12400   14676932    362.5807
## 10685 46.77600   15016408    346.1643
## 10686 47.45000   15367229    366.4794
## 10687 48.14200   15729431    371.5721
## 10688 48.85200   16100623    352.1976
## 10689 49.57700   16477488    377.4591
## 10690 50.32400   16858315    391.6029
## 10691 51.09500   17239677    400.4239
## 10692 51.89100   17623697    398.3404
## 10693 52.71200   18020755    419.5476
## 10694 53.55100   18445021    427.6444
## 10695 54.40400   18905480    436.5675
## 10696 55.26200   19405506    452.4033
## 10697 56.11800   19938322    458.3947
## 10698 56.96400   20489973    463.2257
## 10699 57.79300   21040899    488.1589
## 10700 58.60000   21576074    492.5622
## 10701 59.38300   22090352    506.7291
## 10702 60.14400   22584772    520.6587
## 10703 60.88400   23057875    525.3586
## 10704 61.60000   23509971    537.9920
## 10705 62.28800   23941099    561.0588
## 10706 62.94500   24347113    578.1837
## 10707 63.57000   24725625    570.0166
## 10708 64.16500   25080880    584.1115
## 10709 64.72900   25419337    603.3215
## 10710 65.26400   25744500    616.4268
## 10711 65.77300   26066687    629.2918
## 10712 66.26000   26382586    642.9684
## 10713 66.72700   26666581    674.9538
## 10714 67.17800   26883531    699.8562
## 10715 67.61100   27013207    730.0427
## 10716 68.02800   27041220    754.2413
## 10717 68.42600   26989160    790.9881
## 10718 68.80600   26916795    821.0732
## 10719 69.16800   26905982    870.7817
## 10720 69.51500   27015033    901.7496
## 10721 69.84800   27263430    897.4038
## 10722 70.16900   27632682    964.8978
## 10723 70.47800   28095712   1021.3319
## 10724 70.77800   28608715   1069.7891
## 10725 71.06700   29136808   1025.5091
## 10726       NA   29674920   1049.6760
## 10727 73.39268   11486631  14276.8701
## 10728 73.65268   11638712  14131.9602
## 10729 73.32390   11805689  14885.5239
## 10730 73.33707   11965966  15218.4582
## 10731 73.70415   12127120  16258.8024
## 10732 73.56878   12294732  17423.2549
## 10733 73.51293   12456251  17668.7260
## 10734 73.80415   12598201  18392.0437
## 10735 73.61268   12729721  19369.8882
## 10736 73.53951   12877984  20377.9238
## 10737 73.58561   13038526  21362.8477
## 10738 73.80951   13194497  22021.6476
## 10739 73.72707   13328593  22570.4807
## 10740 74.14390   13439322  23603.1815
## 10741 74.53683   13545056  24224.2438
## 10742 74.49878   13666335  24009.7580
## 10743 74.64707   13774037  24883.6038
## 10744 75.22146   13856185  25359.5366
## 10745 75.14512   13941700  25883.5491
## 10746 75.60610   14038270  26223.2462
## 10747 75.74317   14149800  26365.6720
## 10748 75.93439   14247208  25980.2182
## 10749 75.98854   14312690  25540.4796
## 10750 76.16415   14367070  25970.4839
## 10751 76.23317   14424211  26659.5857
## 10752 76.28463   14491632  27220.2194
## 10753 76.27049   14572278  27823.9997
## 10754 76.70512   14665037  28181.9596
## 10755 76.89024   14760094  28964.0213
## 10756 76.73415   14848907  30063.3708
## 10757 76.87805   14951510  31106.0520
## 10758 77.00000   15069798  31614.6529
## 10759 77.21707   15184166  31911.8354
## 10760 76.91659   15290368  32088.7066
## 10761 77.37512   15382838  32840.2781
## 10762 77.40463   15459006  33696.7438
## 10763 77.43561   15530498  34715.1616
## 10764 77.79439   15610650  36032.0402
## 10765 77.88293   15707209  37480.7094
## 10766 77.83659   15812088  39106.3882
## 10767 77.98780   15925513  40456.9422
## 10768 78.19024   16046180  41087.0422
## 10769 78.29268   16148929  40914.3255
## 10770 78.49268   16225302  40785.1222
## 10771 79.09512   16281779  41450.4043
## 10772 79.34634   16319868  42201.7754
## 10773 79.69756   16346101  43592.3027
## 10774 80.09756   16381696  45138.6784
## 10775 80.25122   16445593  45939.1482
## 10776 80.54878   16530388  44027.6026
## 10777 80.70244   16615394  44390.5044
## 10778 81.20488   16693074  44869.3129
## 10779 81.10488   16754962  44242.9735
## 10780 81.30488   16804432  44055.3043
## 10781 81.70732   16865008  44521.8945
## 10782 81.50976   16939923  45193.4032
## 10783 81.56098   17030314  45938.7850
## 10784 81.76098   17131296  46997.3455
## 10785 81.81220   17231624  47826.8191
## 10786 82.11220   17344874  48443.7321
## 10787 81.40976   17441500  46345.3472
## 10788       NA   17533405  48424.0910
## 10789 58.63902      79000          NA
## 10790 59.03902      81200          NA
## 10791 59.43902      83400          NA
## 10792 59.88780      85700          NA
## 10793 60.33659      88100          NA
## 10794 60.78537      90500          NA
## 10795 61.23415      93500          NA
## 10796 61.68293      96500          NA
## 10797 62.13171      99500          NA
## 10798 62.58049     104000          NA
## 10799 63.02927     112000          NA
## 10800 63.47805     120000          NA
## 10801 63.92683     125500          NA
## 10802 64.37561     128500          NA
## 10803 64.82439     131000          NA
## 10804 65.27317     132500          NA
## 10805 65.72195     134000          NA
## 10806 66.17073     136000          NA
## 10807 66.30366     137500          NA
## 10808 66.43659     138500          NA
## 10809 66.56951     140050          NA
## 10810 66.70244     142650          NA
## 10811 66.91951     145700          NA
## 10812 68.58780     148700          NA
## 10813 68.06341     151650          NA
## 10814 68.76585     154450          NA
## 10815 69.06341     157350          NA
## 10816 69.42683     160500          NA
## 10817 69.45366     163650          NA
## 10818 69.08537     166898          NA
## 10819 70.48537     170899          NA
## 10820 70.35854     175362          NA
## 10821 71.61463     179799          NA
## 10822 71.65610     184496          NA
## 10823 70.67317     189482          NA
## 10824 72.00976     193816          NA
## 10825 71.99756     197564          NA
## 10826 71.73902     201418          NA
## 10827 74.37561     205279          NA
## 10828 73.87561     209214          NA
## 10829 75.16341     213230          NA
## 10830 74.83171     217324          NA
## 10831 75.10244     221490          NA
## 10832 75.27073     225296          NA
## 10833 75.47073     228750          NA
## 10834 75.72195     232250          NA
## 10835 76.07561     235750          NA
## 10836 76.47805     239250          NA
## 10837 76.68049     242750          NA
## 10838 76.98049     245950          NA
## 10839 77.28049     249750          NA
## 10840 76.63171     254350          NA
## 10841 77.07805     259000          NA
## 10842 77.17805     263650          NA
## 10843 77.23659     268050          NA
## 10844 77.28049     268700  32520.3046
## 10845 76.93171     269350          NA
## 10846 77.53902     270000          NA
## 10847 77.43415     270650          NA
## 10848 77.63415     271300          NA
## 10849 77.77117     271960          NA
## 10850       NA     272620          NA
## 10851 71.23659    2371800          NA
## 10852 70.98537    2419700          NA
## 10853 71.23171    2482000          NA
## 10854 71.28049    2531800          NA
## 10855 71.32927    2585400          NA
## 10856 71.22683    2628400          NA
## 10857 71.12439    2675900          NA
## 10858 71.47317    2724100          NA
## 10859 71.12439    2748100          NA
## 10860 71.47317    2772800          NA
## 10861 71.27317    2810700          NA
## 10862 71.77317    2853000          NA
## 10863 71.82927    2903900          NA
## 10864 71.66829    2961300          NA
## 10865 71.92439    3023700          NA
## 10866 72.21951    3083100          NA
## 10867 72.42195    3110500          NA
## 10868 72.16829    3120200  22485.1235
## 10869 73.01951    3121200  22549.4471
## 10870 73.06829    3109000  23134.0630
## 10871 72.82927    3112900  23401.7326
## 10872 73.62195    3124900  24397.2493
## 10873 73.72439    3156100  24380.6439
## 10874 73.77561    3199300  24891.2510
## 10875 74.37073    3227100  25859.6630
## 10876 73.82927    3247100  26115.5544
## 10877 74.12195    3246300  26828.6982
## 10878 74.17805    3274400  26856.6438
## 10879 74.42439    3283400  26688.1690
## 10880 74.82439    3299200  26603.1836
## 10881 75.37805    3329800  26399.0289
## 10882 76.03171    3495100  24876.2291
## 10883 76.12439    3531700  24887.8617
## 10884 76.43415    3572200  26178.3906
## 10885 76.88293    3620000  27154.9979
## 10886 76.73415    3673400  28023.9907
## 10887 76.78780    3732000  28581.2522
## 10888 77.33415    3781300  28786.8450
## 10889 78.08537    3815000  28760.0853
## 10890 77.89024    3835100  30168.8850
## 10891 78.63659    3857700  30863.4571
## 10892 78.69268    3880500  31745.0469
## 10893 78.84634    3948500  32656.7428
## 10894 79.14634    4027200  33475.4039
## 10895 79.54878    4087500  34310.1622
## 10896 79.85122    4133900  35051.6108
## 10897 80.04878    4184600  35624.5541
## 10898 80.15122    4223800  36362.6887
## 10899 80.35122    4259800  35654.6200
## 10900 80.70244    4302600  35252.2316
## 10901 80.70244    4350700  35393.7555
## 10902 80.90488    4384000  35915.8397
## 10903 81.15610    4408100  36521.4909
## 10904 81.40732    4442100  37218.8257
## 10905 81.40488    4516500  38002.3873
## 10906 81.45683    4609400  38630.7266
## 10907 81.61244    4714100  39195.8077
## 10908 81.65854    4813600  39759.1507
## 10909 81.85854    4900600  40365.1957
## 10910 81.70732    4979200  40599.0315
## 10911 82.05610    5090200  39216.2249
## 10912       NA    5122600  40778.9619
## 10913 46.99800    1773132   1680.9719
## 10914 47.63600    1829772   1751.0716
## 10915 48.27700    1887426   1882.4630
## 10916 48.92000    1946240   2023.9339
## 10917 49.56600    2006478   2192.8331
## 10918 50.21600    2068379   2329.8274
## 10919 50.87400    2131973   2334.9483
## 10920 51.53800    2197303   2423.4220
## 10921 52.20500    2264623   2382.9595
## 10922 52.86800    2334285   2456.0509
## 10923 53.51900    2406523   2414.5788
## 10924 54.14700    2481345   2419.1598
## 10925 54.74400    2558705   2398.1174
## 10926 55.30700    2638699   2474.6392
## 10927 55.83300    2721417   2739.9582
## 10928 56.31900    2806859   2652.4816
## 10929 56.76400    2894967   2705.7279
## 10930 57.17700    2985480   2843.2599
## 10931 57.57000    3077861   2541.7325
## 10932 57.95500    3171404   1813.5934
## 10933 58.34700    3265520   1842.5511
## 10934 58.75700    3360142   1886.7032
## 10935 59.19600    3455129   1819.8558
## 10936 59.67100    3549711   1853.0827
## 10937 60.18900    3642978   1777.3623
## 10938 60.76100    3734343   1663.1028
## 10939 61.39400    3823133   1607.9522
## 10940 62.07900    3909672   1561.2544
## 10941 62.80300    3995529   1337.5091
## 10942 63.54900    4082958   1286.1179
## 10943 64.29300    4173435   1257.5752
## 10944 65.01100    4267570   1227.5075
## 10945 65.68300    4364514   1204.8794
## 10946 66.29700    4462496   1173.7937
## 10947 66.84900    4559010   1187.2931
## 10948 67.34400    4652185   1232.2996
## 10949 67.79800    4741571   1285.7754
## 10950 68.23400    4827658   1312.9402
## 10951 68.66700    4910642   1338.6617
## 10952 69.10000    4991041   1409.7682
## 10953 69.52700    5069310   1444.9319
## 10954 69.93400    5145367   1465.7232
## 10955 70.30800    5219324   1455.8482
## 10956 70.64000    5292115   1472.0168
## 10957 70.93300    5364930   1529.1728
## 10958 71.19500    5438692   1573.0306
## 10959 71.43600    5513757   1616.0568
## 10960 71.67300    5590066   1674.9187
## 10961 71.91500    5667436   1708.8240
## 10962 72.16700    5745538   1630.0920
## 10963 72.42800    5824058   1679.0272
## 10964 72.69200    5903035   1761.2165
## 10965 72.95100    5982530   1850.6892
## 10966 73.19700    6062462   1916.2787
## 10967 73.42900    6142734   1981.7483
## 10968 73.64900    6223234   2049.8517
## 10969 73.86000    6303970   2115.9461
## 10970 74.06800    6384843   2185.8887
## 10971 74.27500    6465502   2086.0095
## 10972 74.48500    6545503   1982.6286
## 10973 74.69700    6624554   1923.9159
## 10974       NA    6702379   2098.2929
## 10975 35.05300    3388774    767.8825
## 10976 35.14100    3486322    780.3312
## 10977 35.22300    3588228    836.0998
## 10978 35.29800    3693985    888.7352
## 10979 35.36800    3802802    864.4354
## 10980 35.43500    3914118    897.9668
## 10981 35.50100    4027969    869.2481
## 10982 35.57300    4144588    845.8275
## 10983 35.65800    4263925    825.3077
## 10984 35.76000    4385925    758.3342
## 10985 35.88300    4510645    759.8984
## 10986 36.03100    4637984    781.0071
## 10987 36.20300    4768225    720.4275
## 10988 36.40200    4902151    581.2854
## 10989 36.63300    5040795    614.9037
## 10990 36.90500    5184940    581.1110
## 10991 37.22700    5335083    568.5872
## 10992 37.60000    5491158    595.3198
## 10993 38.02000    5652655    656.2252
## 10994 38.48000    5818763    683.0534
## 10995 38.96200    5989000    647.3451
## 10996 39.45000    6163711    627.8786
## 10997 39.92700    6343530    623.3462
## 10998 40.38500    6528646    582.2706
## 10999 40.82100    6719310    470.5904
## 11000 41.24100    6915994    492.4952
## 11001 41.65400    7118885    508.8512
## 11002 42.07900    7328934    494.7038
## 11003 42.53000    7548429    513.3221
## 11004 43.01400    7780242    502.7940
## 11005 43.53800    8026592    480.9853
## 11006 44.10300    8288739    463.7262
## 11007 44.70300    8566773    457.6529
## 11008 45.33000    8860297    443.9151
## 11009 45.97900    9168316    436.9583
## 11010 46.64100    9490289    432.5067
## 11011 47.30700    9826600    418.1243
## 11012 47.97000   10178196    409.8467
## 11013 48.62700   10545720    435.0113
## 11014 49.27900   10929922    418.7985
## 11015 49.92800   11331561    399.0728
## 11016 50.58400   11751364    412.7854
## 11017 51.25600   12189988    417.5046
## 11018 51.95000   12647983    411.1206
## 11019 52.66800   13125914    397.5924
## 11020 53.41100   13624474    411.1275
## 11021 54.18000   14143969    419.5158
## 11022 54.96800   14685404    416.7468
## 11023 55.76400   15250913    432.3194
## 11024 56.55700   15843131    424.3268
## 11025 57.33300   16464025    443.3513
## 11026 58.08100   17114770    436.5497
## 11027 58.79000   17795209    464.1477
## 11028 59.45500   18504287    470.0865
## 11029 60.07000   19240182    482.1362
## 11030 60.63100   20001663    484.1531
## 11031 61.13700   20788789    492.5640
## 11032 61.59900   21602388    497.7199
## 11033 62.02400   22442831    513.6268
## 11034 62.42000   23310719    523.8842
## 11035 62.79200   24206636    522.5556
## 11036       NA   25130810    510.1443
## 11037 36.97600   45138460   1433.9199
## 11038 37.43100   46063570   1407.8170
## 11039 37.87100   47029818   1435.4686
## 11040 38.29100   48032932   1526.0622
## 11041 38.69100   49066762   1567.8640
## 11042 39.07200   50127920   1609.6424
## 11043 39.44200   51217969   1508.4231
## 11044 39.80900   52342231   1243.6439
## 11045 40.18400   53506201   1201.4024
## 11046 40.56900   54717035   1459.0914
## 11047 40.97100   55982142   1782.7511
## 11048 41.39200   57296988   1989.8358
## 11049 41.82900   58665813   2008.7891
## 11050 42.27600   60114615   2066.0943
## 11051 42.72900   61677167   2238.4993
## 11052 43.18700   63374289   2064.6645
## 11053 43.64700   65221379   2187.5995
## 11054 44.10400   67203134   2250.9868
## 11055 44.54700   69271915   2057.8864
## 11056 44.96300   71361141   2132.6670
## 11057 45.33300   73423646   2159.9154
## 11058 45.63700   75440505   1826.2007
## 11059 45.86700   77427539   1658.2796
## 11060 46.02300   79414841   1440.1637
## 11061 46.10600   81448757   1388.5347
## 11062 46.12700   83562776   1433.4341
## 11063 46.10100   85766396   1397.4556
## 11064 46.04800   88048029   1404.8041
## 11065 45.99000   90395278   1468.6797
## 11066 45.93900   92788039   1458.2689
## 11067 45.90000   95212454   1588.5023
## 11068 45.87500   97667632   1554.1197
## 11069 45.85700  100161708   1585.6035
## 11070 45.84500  102700751   1514.9319
## 11071 45.84300  105293701   1450.8076
## 11072 45.85400  107948339   1414.1014
## 11073 45.88000  110668784   1437.2162
## 11074 45.92300  113457661   1443.0632
## 11075 45.99400  116319763   1443.8885
## 11076 46.10300  119260055   1416.5164
## 11077 46.26700  122283853   1450.7838
## 11078 46.51000  125394046   1498.5229
## 11079 46.83500  128596079   1685.2009
## 11080 47.24200  131900634   1763.6940
## 11081 47.72000  135320420   1878.1507
## 11082 48.25200  138865014   1948.0484
## 11083 48.81200  142538305   2012.8448
## 11084 49.37300  146339971   2089.7772
## 11085 49.91300  150269622   2172.7938
## 11086 50.42200  154324939   2285.7346
## 11087 50.89600  158503203   2403.6453
## 11088 51.34600  162805080   2464.3450
## 11089 51.78600  167228803   2500.6412
## 11090 52.22800  171765819   2597.0090
## 11091 52.67200  176404931   2688.2672
## 11092 53.11200  181137454   2687.4801
## 11093 53.54100  185960244   2575.4554
## 11094 53.95000  190873247   2529.3852
## 11095 54.33200  195874685   2512.1924
## 11096 54.68700  200963603   2502.6523
## 11097 55.01800  206139587   2396.0365
## 11098       NA  211400704   2421.6195
## 11099 69.89360  198624409  18760.6723
## 11100 70.36802  202007500  18870.9635
## 11101 70.23271  205198600  19710.5723
## 11102 70.05039  208253700  20275.6415
## 11103 70.31321  211262900  21146.5788
## 11104 70.36672  214031100  22208.7828
## 11105 70.37807  216659000  23366.3169
## 11106 70.71438  219176000  23676.7420
## 11107 70.17624  221503000  24552.1823
## 11108 70.69476  223759000  25058.1307
## 11109 70.98548  226431000  24693.1632
## 11110 71.29114  229677632  25145.8689
## 11111 71.32627  232168663  26183.7568
## 11112 71.52945  234454577  27391.6817
## 11113 72.07960  236715369  26983.6379
## 11114 72.69361  239169275  26652.5200
## 11115 72.95320  241538008  27813.6920
## 11116 73.34941  244018243  28804.2809
## 11117 73.47017  246601803  30079.4838
## 11118 73.90794  249310344  30694.5283
## 11119 73.75243  251795337  30315.0499
## 11120 74.15164  254340965  30773.2158
## 11121 74.49815  256836391  29924.1263
## 11122 74.62026  259214381  31008.2473
## 11123 74.72539  261488476  32961.7622
## 11124 74.74025  263823014  34031.1777
## 11125 74.80138  266290660  34883.8537
## 11126 74.95812  268793450  35754.5825
## 11127 74.97854  271349094  36897.2367
## 11128 75.22630  274154622  37860.2441
## 11129 75.43505  277373464  38126.2596
## 11130 75.59062  281077441  37582.4333
## 11131 75.82694  284943859  38377.6612
## 11132 75.65854  288662674  38925.7567
## 11133 75.83864  292185983  40005.0564
## 11134 75.86060  295640057  40599.2592
## 11135 76.24010  299064347  41648.2678
## 11136 76.62719  302623445  42988.8684
## 11137 76.78286  306070116  44358.0652
## 11138 76.80913  309502571  45943.4577
## 11139 76.88200  312909974  47323.7930
## 11140 77.08241  316052361  47316.6937
## 11141 77.18782  319048184  47724.0524
## 11142 77.30281  321815286  48671.4569
## 11143 77.72449  324809693  50082.3743
## 11144 77.75408  327824506  51404.4742
## 11145 77.94939  331015609  52378.2199
## 11146 78.23955  334185120  53113.1897
## 11147 78.30098  337406357  52706.2352
## 11148 78.64773  340466060  50860.3629
## 11149 78.80946  343397156  51806.0878
## 11150 78.92056  345987373  52278.6153
## 11151 79.03148  348656682  53038.5091
## 11152 79.04221  351207902  53643.0016
## 11153 79.13808  353888902  54478.1176
## 11154 79.01211  356507139  55452.4214
## 11155 78.87733  359245796  55918.0029
## 11156 78.87909  361731237  56820.7868
## 11157 78.98679  363967201  58113.1052
## 11158 79.12337  365995094  59094.8904
## 11159 77.74116  369602177  56441.3104
## 11160       NA  370203720  59496.4700
## 11161 60.62280    1488670          NA
## 11162 61.24939    1507647          NA
## 11163 61.86046    1527109          NA
## 11164 62.45951    1547449          NA
## 11165 63.04946    1569139          NA
## 11166 63.63173    1592437          NA
## 11167 64.20473    1617797          NA
## 11168 64.76398    1644949          NA
## 11169 65.30246    1672399          NA
## 11170 65.81471    1698150          NA
## 11171 66.29278    1720805          NA
## 11172 66.73124    1739529          NA
## 11173 67.12568    1754951          NA
## 11174 67.47371    1769002          NA
## 11175 67.77541    1784400          NA
## 11176 68.02485    1803008          NA
## 11177 68.21910    1825559          NA
## 11178 68.36363    1851070          NA
## 11179 68.47146    1877690          NA
## 11180 68.55856    1902718          NA
## 11181 68.65044    1924203          NA
## 11182 68.77361    1941527          NA
## 11183 68.94400    1955247          NA
## 11184 69.16905    1965892          NA
## 11185 69.44663    1974413          NA
## 11186 69.76366    1981536          NA
## 11187 70.09495    1987538          NA
## 11188 70.41295    1992278          NA
## 11189 70.69763    1995508          NA
## 11190 70.94200    1996863          NA
## 11191 71.14763    1996218   3653.7790
## 11192 71.32566    1993304   3433.3247
## 11193 71.49473    1988659   3215.4130
## 11194 71.67093    1984024   2982.1957
## 11195 71.69268    1981713   2933.1803
## 11196 71.84878    1983259   2898.2223
## 11197 72.49512    1989441   2923.4566
## 11198 72.44634    1996869   2954.5225
## 11199 72.29756    2007523   3038.1385
## 11200 72.79024    2017142   3154.8478
## 11201 72.94634    2026350   3283.3779
## 11202 73.43659    2034882   3169.3237
## 11203 73.03902    2020157   3240.1092
## 11204 73.24146    2026773   3301.3121
## 11205 73.59756    2032544   3445.8069
## 11206 73.69756    2036855   3600.9523
## 11207 73.89512    2040228   3779.6750
## 11208 73.80000    2043559   4017.7921
## 11209 74.40000    2046898   4230.7331
## 11210 74.44634    2050671   4207.8049
## 11211 74.99756    2055004   4339.9644
## 11212 75.10000    2058539   4433.8875
## 11213 74.90244    2061044   4408.2964
## 11214 75.40000    2064032   4530.6821
## 11215 75.45122    2067471   4687.2964
## 11216 75.40244    2070226   4861.5540
## 11217 75.40000    2072490   4994.5590
## 11218 75.95366    2074502   5043.6922
## 11219 76.64878    2076217   5184.6945
## 11220 76.60244    2076694   5386.2003
## 11221 75.69317    2072531   5067.2136
## 11222       NA    2065092   5287.0684
## 11223       NA       9980          NA
## 11224       NA      10243          NA
## 11225       NA      10438          NA
## 11226       NA      10591          NA
## 11227       NA      10780          NA
## 11228       NA      11023          NA
## 11229       NA      11341          NA
## 11230       NA      11723          NA
## 11231       NA      12135          NA
## 11232       NA      12577          NA
## 11233       NA      13000          NA
## 11234       NA      13423          NA
## 11235       NA      13884          NA
## 11236       NA      14322          NA
## 11237       NA      14672          NA
## 11238       NA      14917          NA
## 11239       NA      15024          NA
## 11240       NA      15049          NA
## 11241       NA      15167          NA
## 11242       NA      15640          NA
## 11243       NA      16633          NA
## 11244       NA      18168          NA
## 11245       NA      20163          NA
## 11246       NA      22622          NA
## 11247       NA      25496          NA
## 11248       NA      28719          NA
## 11249       NA      32377          NA
## 11250       NA      36371          NA
## 11251       NA      40294          NA
## 11252       NA      43542          NA
## 11253       NA      45752          NA
## 11254       NA      46662          NA
## 11255       NA      46473          NA
## 11256       NA      45763          NA
## 11257       NA      45361          NA
## 11258       NA      45872          NA
## 11259       NA      47518          NA
## 11260       NA      50052          NA
## 11261       NA      52999          NA
## 11262       NA      55633          NA
## 11263       NA      57453          NA
## 11264       NA      58319          NA
## 11265       NA      58412  27513.4416
## 11266       NA      57954  27826.0397
## 11267       NA      57240  27305.9738
## 11268       NA      56547  24129.4584
## 11269       NA      55886  22737.1955
## 11270       NA      55215  21475.2798
## 11271       NA      54621  19305.7060
## 11272       NA      54194  16038.4522
## 11273       NA      53971  16329.5328
## 11274       NA      54013  15111.9624
## 11275       NA      54306  15152.2964
## 11276       NA      54786  15422.2103
## 11277       NA      55301  15916.8583
## 11278       NA      55779  16314.3835
## 11279       NA      56187  20927.0882
## 11280       NA      56553  25609.2301
## 11281       NA      56889  20533.1275
## 11282       NA      57213  18141.8824
## 11283       NA      57557          NA
## 11284       NA      57910          NA
## 11285 73.54976    3581239  19134.0599
## 11286 73.55049    3609800  20173.5164
## 11287 73.44805    3638918  20575.2206
## 11288 73.07756    3666537  21193.1478
## 11289 73.59585    3694339  22087.3702
## 11290 73.72317    3723168  23074.7569
## 11291 73.99537    3753012  23758.0470
## 11292 74.06659    3784539  25034.0716
## 11293 73.94195    3816486  25385.5198
## 11294 73.66341    3847707  26313.7774
## 11295 74.08805    3875763  26630.9505
## 11296 74.17927    3903039  27944.9020
## 11297 74.34463    3933004  29210.2826
## 11298 74.44220    3960612  30321.5170
## 11299 74.75366    3985258  31316.1597
## 11300 74.81756    4007313  32686.0926
## 11301 75.03951    4026152  34428.3332
## 11302 75.38683    4043205  35709.5593
## 11303 75.41854    4058671  36949.9668
## 11304 75.41390    4072517  38434.4715
## 11305 75.67171    4085620  40059.9802
## 11306 75.86902    4099702  40560.4480
## 11307 76.01098    4114787  40506.8624
## 11308 76.06683    4128432  41976.9233
## 11309 76.22439    4140099  44392.0834
## 11310 75.91683    4152516  46717.2207
## 11311 76.24122    4167354  48432.5868
## 11312 76.08171    4186905  49051.6798
## 11313 76.22049    4209488  48663.9479
## 11314 76.50049    4226901  48966.6649
## 11315 76.53732    4241473  49741.4258
## 11316 76.98073    4261732  51032.0603
## 11317 77.18439    4286401  52551.9514
## 11318 77.15171    4311991  53726.4755
## 11319 77.68976    4336613  56122.1143
## 11320 77.73659    4359184  58151.5992
## 11321 78.15049    4381336  60766.6340
## 11322 78.14268    4405157  63631.9411
## 11323 78.32927    4431464  64914.2553
## 11324 78.28293    4461913  65768.9857
## 11325 78.63415    4490967  67437.7434
## 11326 78.78537    4513751  68489.4679
## 11327 78.98780    4538159  69106.3090
## 11328 79.39024    4564855  69327.4265
## 11329 79.84146    4591910  71654.6365
## 11330 80.04146    4623291  73036.7404
## 11331 80.34390    4660677  74189.5668
## 11332 80.39512    4709153  75624.4412
## 11333 80.59268    4768212  75043.5295
## 11334 80.79512    4828726  72823.3024
## 11335 80.99756    4889252  72426.5652
## 11336 81.29512    4953088  72194.7810
## 11337 81.45122    5018573  73178.7849
## 11338 81.75122    5079623  73046.9050
## 11339 82.10000    5137232  73650.3135
## 11340 82.30488    5188607  74355.5159
## 11341 82.40732    5234519  74493.1179
## 11342 82.60976    5276968  75610.6495
## 11343 82.75854    5311916  75953.5820
## 11344 82.95854    5347896  76005.2248
## 11345 83.20976    5379475  75017.1567
## 11346       NA    5408320  77544.0339
## 11347       NA         NA          NA
## 11348       NA         NA          NA
## 11349       NA         NA          NA
## 11350       NA         NA          NA
## 11351       NA         NA          NA
## 11352       NA         NA          NA
## 11353       NA         NA          NA
## 11354       NA         NA          NA
## 11355       NA         NA          NA
## 11356       NA         NA          NA
## 11357       NA         NA          NA
## 11358       NA         NA          NA
## 11359       NA         NA          NA
## 11360       NA         NA          NA
## 11361       NA         NA          NA
## 11362       NA         NA          NA
## 11363       NA         NA          NA
## 11364       NA         NA          NA
## 11365       NA         NA          NA
## 11366       NA         NA          NA
## 11367       NA         NA          NA
## 11368       NA         NA          NA
## 11369       NA         NA          NA
## 11370       NA         NA          NA
## 11371       NA         NA          NA
## 11372       NA         NA          NA
## 11373       NA         NA          NA
## 11374       NA         NA          NA
## 11375       NA         NA          NA
## 11376       NA         NA          NA
## 11377       NA         NA          NA
## 11378       NA         NA          NA
## 11379       NA         NA          NA
## 11380       NA         NA          NA
## 11381       NA         NA          NA
## 11382       NA         NA          NA
## 11383       NA         NA          NA
## 11384       NA         NA          NA
## 11385       NA         NA          NA
## 11386       NA         NA          NA
## 11387       NA         NA          NA
## 11388       NA         NA          NA
## 11389       NA         NA          NA
## 11390       NA         NA          NA
## 11391       NA         NA          NA
## 11392       NA         NA          NA
## 11393       NA         NA          NA
## 11394       NA         NA          NA
## 11395       NA         NA          NA
## 11396       NA         NA          NA
## 11397       NA         NA          NA
## 11398       NA         NA          NA
## 11399       NA         NA          NA
## 11400       NA         NA          NA
## 11401       NA         NA          NA
## 11402       NA         NA          NA
## 11403       NA         NA          NA
## 11404       NA         NA          NA
## 11405       NA         NA          NA
## 11406       NA         NA          NA
## 11407       NA         NA          NA
## 11408       NA         NA          NA
## 11409 67.22609  809413164  10870.7659
## 11410 67.61717  820690358  11185.5362
## 11411 67.62031  832204126  11651.9007
## 11412 67.83544  843700013  12107.6224
## 11413 68.22975  855187441  12714.8421
## 11414 68.35099  866357882  13235.3155
## 11415 68.61876  877034871  13851.6279
## 11416 68.85040  887433263  14287.2383
## 11417 68.82110  897619456  14979.3970
## 11418 69.01624  907848349  15588.8997
## 11419 69.33418  917970733  15836.7774
## 11420 69.62744  929959388  16213.0332
## 11421 69.92319  940747243  16892.4182
## 11422 70.11709  951245160  17720.7539
## 11423 70.53065  961564535  17691.7481
## 11424 70.87953  971664215  17543.6844
## 11425 71.16160  981155050  18218.5927
## 11426 71.52874  990517797  18733.9336
## 11427 71.71307  999924442  19390.2071
## 11428 72.05778 1009488956  19961.7695
## 11429 72.12539 1018954080  20003.3144
## 11430 72.49481 1028314741  20224.5707
## 11431 72.84109 1037309705  20098.4141
## 11432 72.97826 1045955467  20519.0871
## 11433 73.26549 1054256534  21314.9740
## 11434 73.41387 1062613469  21928.8540
## 11435 73.67639 1071150369  22426.2768
## 11436 73.95604 1079711152  23027.0564
## 11437 74.10415 1088387125  23886.5316
## 11438 74.36438 1097531158  24602.9195
## 11439 74.54474 1107196961  25127.2581
## 11440 74.73456 1117820520  25218.5484
## 11441 75.01330 1128349539  25528.3705
## 11442 75.12325 1138362949  25643.1322
## 11443 75.41570 1147748534  26242.3947
## 11444 75.52777 1156879819  26726.3546
## 11445 75.89950 1165880992  27354.8891
## 11446 76.24124 1174865635  28123.5034
## 11447 76.45699 1183546848  28742.7048
## 11448 76.63926 1192267323  29498.9100
## 11449 76.92726 1200836415  30471.1834
## 11450 77.23460 1209787876  30661.0376
## 11451 77.39689 1218855820  30912.6671
## 11452 77.54903 1227854277  31328.0567
## 11453 77.94370 1236872189  32124.8085
## 11454 78.06315 1245821323  32809.5001
## 11455 78.34888 1255133872  33567.2419
## 11456 78.57174 1264614793  34225.5263
## 11457 78.71993 1274522708  34092.5705
## 11458 78.97693 1283634878  32716.7387
## 11459 79.14889 1292110708  33468.5822
## 11460 79.37989 1298723126  33928.7685
## 11461 79.49705 1306807834  34186.7669
## 11462 79.66195 1315224394  34487.1074
## 11463 79.91185 1324034852  34969.3821
## 11464 79.81128 1332787383  35590.7317
## 11465 79.96054 1341783391  36000.9242
## 11466 80.00517 1350234580  36662.9599
## 11467 80.10275 1358279647  37301.2244
## 11468 80.28644 1365274704  37758.5688
## 11469 79.70327 1372980201  35869.3485
## 11470       NA 1375820281  37667.8809
## 11471 42.67200     551735          NA
## 11472 43.49900     564891          NA
## 11473 44.31100     578827          NA
## 11474 45.11000     593498          NA
## 11475 45.89600     608890          NA
## 11476 46.66500     625006   2552.9705
## 11477 47.41300     642007   2614.7151
## 11478 48.14100     660117   4226.9208
## 11479 48.85800     679592   7467.9316
## 11480 49.57400     700725   9101.6337
## 11481 50.31000     723842  10035.2504
## 11482 51.08700     748968   9785.7081
## 11483 51.92000     776385  10367.6537
## 11484 52.81100     806985   8552.9486
## 11485 53.76000     841952   9140.3791
## 11486 54.75500     882038  10856.7934
## 11487 55.78100     927434  12446.2203
## 11488 56.81300     977804  11923.9762
## 11489 57.82900    1032797  10872.0991
## 11490 58.81300    1091858  10729.4798
## 11491 59.75800    1154373  10760.9280
## 11492 60.65900    1220578  11912.1712
## 11493 61.52300    1290121  12573.9816
## 11494 62.35600    1361085  13904.8024
## 11495 63.15300    1431066  15434.9208
## 11496 63.91500    1498413  16806.0173
## 11497 64.63800    1561180  16453.2890
## 11498 65.32400    1619871  15311.5446
## 11499 65.97500    1678119  15661.5643
## 11500 66.59300    1741155  16869.2066
## 11501 67.18000    1812158  16187.1067
## 11502 67.73900    1893761  16430.4473
## 11503 68.27300    1983272  17008.9372
## 11504 68.78600    2072106  17263.5193
## 11505 69.28300    2148416  17295.6624
## 11506 69.77000    2204267  17699.7659
## 11507 70.25000    2236652  17974.8050
## 11508 70.72600    2249759  18948.2784
## 11509 71.19700    2251859  19430.8186
## 11510 71.66400    2254898  19468.9565
## 11511 72.12600    2267973  20624.7883
## 11512 72.58000    2294959  21295.9619
## 11513 73.02200    2334860  20701.5881
## 11514 73.44700    2386164  19715.9282
## 11515 73.85100    2445524  19485.9515
## 11516 74.23000    2511254  19448.4652
## 11517 74.57700    2580753  19941.3383
## 11518 74.89300    2657162  20230.2994
## 11519 75.17900    2750956  21142.8863
## 11520 75.44000    2876186  21458.3868
## 11521 75.68200    3041435  20640.3078
## 11522 75.91600    3251102  19868.1183
## 11523 76.14900    3498031  20102.2405
## 11524 76.38800    3764805  19654.2161
## 11525 76.63400    4027255  18610.8116
## 11526 76.88700    4267341  18444.9270
## 11527 77.14200    4479217  18459.2248
## 11528 77.39300    4665926  17774.4519
## 11529 77.63300    4829476  17393.5490
## 11530 77.86100    4974992  16694.1323
## 11531 78.07800    5106622  15743.2243
## 11532       NA    5223376          NA
## 11533 51.40895    9151857          NA
## 11534 51.86164    9315834          NA
## 11535 52.30314    9485194          NA
## 11536 52.70890    9659416          NA
## 11537 53.11943    9840401          NA
## 11538 53.50577   10026023          NA
## 11539 53.85325   10214282          NA
## 11540 54.20539   10406007          NA
## 11541 54.55164   10606217          NA
## 11542 54.89416   10813719          NA
## 11543 55.24920   11029164          NA
## 11544 55.59464   11255188          NA
## 11545 55.95035   11488070          NA
## 11546 56.27422   11725338          NA
## 11547 56.58973   11968057          NA
## 11548 56.93223   12219420          NA
## 11549 57.30515   12475005          NA
## 11550 57.68143   12737700          NA
## 11551 58.11101   13008020          NA
## 11552 58.56396   13294824          NA
## 11553 59.07939   13598547          NA
## 11554 59.54715   13917150          NA
## 11555 60.01929   14253285          NA
## 11556 60.46846   14600166          NA
## 11557 60.85161   14962369          NA
## 11558 61.21207   15347574          NA
## 11559 61.58677   15754491          NA
## 11560 61.88324   16180206          NA
## 11561 62.08957   16610046          NA
## 11562 62.18874   17031505          NA
## 11563 62.21691   17430785          NA
## 11564 62.24619   17813808          NA
## 11565 62.13588   18156582          NA
## 11566 61.90577   18476080          NA
## 11567 61.60900   18801091          NA
## 11568 61.42302   19125038          NA
## 11569 61.28178   19460551          NA
## 11570 60.97794   19809591          NA
## 11571 60.63219   20163900          NA
## 11572 60.39915   20540135          NA
## 11573 60.24392   20917080   7519.5821
## 11574 60.10742   21276754   7698.6157
## 11575 60.09822   21639144   7912.2972
## 11576 60.20842   22018460   8125.3038
## 11577 60.48487   22442097   8695.0494
## 11578 60.90938   22929069   9000.5353
## 11579 61.40830   23486191   9741.6128
## 11580 62.05476   24104686  10439.4273
## 11581 62.79727   24762404  10920.3674
## 11582 63.57033   25417810  10840.8229
## 11583 64.32882   26050929  11491.7046
## 11584 65.03177   26647965  12080.2044
## 11585 65.70482   27227313  12245.6350
## 11586 66.34211   27794594  12441.2147
## 11587 66.89436   28364446  12653.2201
## 11588 67.40517   28948893  12780.7264
## 11589 67.83293   29542903  12895.6995
## 11590 68.22492   30148954  12803.9885
## 11591 68.54826   30760469  12827.6798
## 11592 68.83558   31361216  12856.5071
## 11593 69.03198   31929881  11981.0415
## 11594       NA   32464282  12202.6497
## 11595 56.50558     865064          NA
## 11596 56.95922     893394          NA
## 11597 57.38947     923320          NA
## 11598 57.79953     954098          NA
## 11599 58.18991     984824          NA
## 11600 58.55977    1014633          NA
## 11601 58.90521    1043365          NA
## 11602 59.22563    1071166          NA
## 11603 59.52207    1098151          NA
## 11604 59.80111    1124577          NA
## 11605 60.07021    1150712          NA
## 11606 60.33939    1176559          NA
## 11607 60.61533    1202128          NA
## 11608 60.90290    1227653          NA
## 11609 61.20435    1253371          NA
## 11610 61.51922    1279519          NA
## 11611 61.84402    1306023          NA
## 11612 62.17015    1332876          NA
## 11613 62.49168    1360542          NA
## 11614 62.80348    1389594          NA
## 11615 63.10287    1420314   3048.8620
## 11616 63.38967    1453209   3112.3152
## 11617 63.66330    1487849   2935.6083
## 11618 63.92154    1522650   2837.5361
## 11619 64.16170    1555395   2944.7858
## 11620 64.37766    1584644   2815.6083
## 11621 64.56444    1609572   2926.2896
## 11622 64.91774    1630869   2813.8854
## 11623 64.85366    1650438   2804.0807
## 11624 64.96467    1670962   2908.4612
## 11625 65.09730    1694327   2982.5166
## 11626 65.14505    1721236   2938.3610
## 11627 65.22765    1750932   3050.7135
## 11628 65.31503    1782085   3085.8004
## 11629 65.41458    1812838   3181.3678
## 11630 65.59632    1841674   3270.3774
## 11631 65.68651    1868390   3323.6153
## 11632 65.86789    1893438   3239.8995
## 11633 66.07609    1917140   3251.5531
## 11634 66.33964    1939956   3371.4217
## 11635 66.55714    1962451   3275.0716
## 11636 66.79806    1984469   3272.9918
## 11637 67.03313    2006091   3305.9641
## 11638 67.25016    2027859   3339.1036
## 11639 67.44567    2050583   3433.8241
## 11640 67.63693    2074776   3474.3474
## 11641 67.78614    2100892   3513.9788
## 11642 67.94836    2128647   3482.5586
## 11643 68.11681    2157454   3502.6702
## 11644 68.29563    2186314   3438.5889
## 11645 68.48523    2214509   3507.9697
## 11646 68.68299    2241808   3598.4808
## 11647 68.88200    2268553   3583.5737
## 11648 69.07738    2295450   3658.1330
## 11649 69.26554    2323558   3744.9427
## 11650 69.44448    2353578   3832.5512
## 11651 69.61374    2385744   3918.2437
## 11652 69.77428    2419767   4030.1184
## 11653 69.92905    2455336   4088.4657
## 11654 70.07973    2491878   4060.3582
## 11655 70.22751    2528958   3621.3178
## 11656       NA    2566494   3445.7606
## 11657 45.29900   44988690    379.0265
## 11658 46.19700   46065229    392.3320
## 11659 47.05900   47198886    400.0739
## 11660 47.88400   48387293    424.1560
## 11661 48.67000   49627623    444.8603
## 11662 49.42000   50917975    478.7637
## 11663 50.13400   52260183    493.4758
## 11664 50.81200   53655783    506.5979
## 11665 51.45700   55102690    528.9766
## 11666 52.07000   56598148    543.3655
## 11667 52.64900   58142062    588.9895
## 11668 53.19200   59734479    575.9732
## 11669 53.69900   61381982    565.0732
## 11670 54.17100   63099404    588.5250
## 11671 54.61300   64905996    592.3990
## 11672 55.02800   66816875    599.6920
## 11673 55.42100   68834324    612.1308
## 11674 55.79600   70958168    617.2509
## 11675 56.15800   73197254    646.5293
## 11676 56.51200   75561128    649.8423
## 11677 56.86000   78054346    693.3505
## 11678 57.20600   80680461    723.9133
## 11679 57.54600   83431597    745.8076
## 11680 57.88200   86285936    770.0176
## 11681 58.21300   89213708    782.4706
## 11682 58.54000   92191505    814.6839
## 11683 58.86300   95215375    832.2087
## 11684 59.18000   98285762    858.2305
## 11685 59.49300  101389603    895.3965
## 11686 59.79900  104512874    911.7209
## 11687 60.10000  107647918    924.6347
## 11688 60.39300  110778655    943.9818
## 11689 60.68000  113911126    988.7649
## 11690 60.96000  117086680    978.8569
## 11691 61.23500  120362764    987.8021
## 11692 61.50500  123776835   1008.2248
## 11693 61.77300  127349293   1027.4353
## 11694 62.03900  131057432   1008.4924
## 11695 62.30300  134843233   1005.1752
## 11696 62.56400  138624625   1013.5433
## 11697 62.82000  142343583   1029.1126
## 11698 63.06600  145978408   1039.1561
## 11699 63.30000  149549695   1039.7839
## 11700 63.52200  153093371   1074.3941
## 11701 63.73600  156664698   1129.1369
## 11702 63.95100  160304007   1175.4375
## 11703 64.17600  164022626   1216.5555
## 11704 64.42000  167808106   1246.5796
## 11705 64.68500  171648984   1239.4205
## 11706 64.96900  175525610   1246.3679
## 11707 65.26400  179424643   1238.8735
## 11708 65.56200  183340168   1245.7374
## 11709 65.84900  187280125   1262.2992
## 11710 66.11700  191260799   1290.3686
## 11711 66.36000  195305012   1322.7206
## 11712 66.57700  199426953   1356.6678
## 11713 66.77000  203631356   1402.0879
## 11714 66.94700  207906210   1434.1303
## 11715 67.11400  212228288   1491.3507
## 11716 67.27300  216565317   1497.9868
## 11717 67.42800  220892331   1449.1172
## 11718       NA  225199929   1507.1054
## 11719       NA       9769          NA
## 11720       NA      10046          NA
## 11721       NA      10329          NA
## 11722       NA      10566          NA
## 11723       NA      10792          NA
## 11724       NA      11005          NA
## 11725       NA      11178          NA
## 11726       NA      11329          NA
## 11727       NA      11460          NA
## 11728       NA      11617          NA
## 11729       NA      11803          NA
## 11730       NA      12051          NA
## 11731       NA      12342          NA
## 11732       NA      12625          NA
## 11733       NA      12823          NA
## 11734       NA      12898          NA
## 11735       NA      12835          NA
## 11736       NA      12646          NA
## 11737       NA      12409          NA
## 11738       NA      12231          NA
## 11739       NA      12178          NA
## 11740       NA      12281          NA
## 11741       NA      12519          NA
## 11742       NA      12842          NA
## 11743       NA      13190          NA
## 11744       NA      13534          NA
## 11745       NA      13835          NA
## 11746       NA      14121          NA
## 11747       NA      14400          NA
## 11748       NA      14704          NA
## 11749 69.06927      15063          NA
## 11750       NA      15442          NA
## 11751       NA      15859          NA
## 11752       NA      16285          NA
## 11753       NA      16735          NA
## 11754 71.84463      17158          NA
## 11755       NA      17599          NA
## 11756       NA      18016          NA
## 11757       NA      18409          NA
## 11758       NA      18773          NA
## 11759 70.49366      19104  11762.9450
## 11760       NA      19390  12335.8157
## 11761       NA      19642  12613.4337
## 11762       NA      19812  12097.1095
## 11763       NA      19861  12653.2542
## 11764 69.12927      19784  13205.5028
## 11765       NA      19545  13312.7599
## 11766       NA      19159  13855.4653
## 11767       NA      18708  13369.0603
## 11768       NA      18290  12773.3764
## 11769       NA      17954  13040.5427
## 11770       NA      17748  14073.6065
## 11771       NA      17635  14400.6892
## 11772       NA      17603  13938.1851
## 11773       NA      17625  14796.9427
## 11774       NA      17665  15876.4619
## 11775       NA      17718  15815.7734
## 11776       NA      17809  15218.2556
## 11777       NA      17911  15115.3663
## 11778       NA      18001  14754.6026
## 11779       NA      18092  13250.8983
## 11780       NA      18174          NA
## 11781 60.86400    1133005   2708.6057
## 11782 61.38000    1167120   2916.7404
## 11783 61.88000    1202447   3064.4613
## 11784 62.36000    1238893   3228.2804
## 11785 62.82400    1276331   3272.4715
## 11786 63.27500    1314679   3468.0323
## 11787 63.71800    1353847   3623.0178
## 11788 64.16000    1393824   3820.0907
## 11789 64.60700    1434676   3970.2675
## 11790 65.06300    1476481   4183.5100
## 11791 65.53200    1519286   4348.5793
## 11792 66.01800    1563093   4633.1526
## 11793 66.51500    1607797   4710.7551
## 11794 67.02000    1653208   4827.1164
## 11795 67.52700    1699056   4811.8537
## 11796 68.02700    1745142   4766.3397
## 11797 68.51300    1791389   4720.5764
## 11798 68.97600    1837804   4651.6950
## 11799 69.41200    1884427   4980.8601
## 11800 69.81800    1931302   5079.3842
## 11801 70.19200    1978489   5607.0009
## 11802 70.53700    2025965   5979.7365
## 11803 70.85800    2073748   6154.4066
## 11804 71.16300    2121863   5744.7015
## 11805 71.45300    2170330   5768.5882
## 11806 71.73200    2219200   5920.3744
## 11807 72.00000    2268500   5998.3462
## 11808 72.25700    2318259   5763.4137
## 11809 72.50600    2368556   4886.2655
## 11810 72.74700    2419424   4858.2631
## 11811 72.98200    2470946   5142.2290
## 11812 73.21200    2523115   5510.2383
## 11813 73.43900    2575949   5839.8833
## 11814 73.66100    2629584   6032.8791
## 11815 73.87900    2684117   6078.7621
## 11816 74.09200    2739667   6059.8294
## 11817 74.30000    2796291   6179.3366
## 11818 74.50000    2853907   6445.7715
## 11819 74.69400    2912318   6780.2169
## 11820 74.88100    2971197   6906.1880
## 11821 75.06000    3030333   6955.2852
## 11822 75.23300    3089641   6860.9488
## 11823 75.40100    3149195   6881.2509
## 11824 75.56500    3209056   7036.8821
## 11825 75.72800    3269356   7426.6510
## 11826 75.89200    3330222   7815.2252
## 11827 76.06000    3391673   8337.5854
## 11828 76.23400    3453671   9169.1531
## 11829 76.41400    3516204   9893.6956
## 11830 76.60000    3579215   9840.3329
## 11831 76.79200    3642691  10232.3599
## 11832 76.98900    3706479  11193.9903
## 11833 77.18800    3770635  12079.5447
## 11834 77.38600    3835447  12695.2349
## 11835 77.58300    3901311  13113.2665
## 11836 77.77600    3968490  13630.3011
## 11837 77.96400    4037073  14062.4437
## 11838 78.14900    4106764  14596.7411
## 11839 78.32900    4176868  14880.6628
## 11840 78.50600    4246440  15073.0008
## 11841 78.68000    4314768  12172.3108
## 11842       NA    4381583  13824.9524
## 11843 38.93500    2255858   1160.8501
## 11844 39.54200    2297052   1210.4988
## 11845 40.16700    2340349   1263.8352
## 11846 40.81700    2385943   1290.1705
## 11847 41.49500    2434220   1372.9613
## 11848 42.20100    2485433   1482.7489
## 11849 42.93100    2539683   1535.4380
## 11850 43.67600    2596820   1562.7785
## 11851 44.42500    2656636   1594.1882
## 11852 45.17300    2718805   1686.6136
## 11853 45.91600    2783132   1826.2800
## 11854 46.65300    2849522   1896.0194
## 11855 47.38300    2918138   1955.9239
## 11856 48.10500    2989201   2034.0967
## 11857 48.81500    3063051   2036.8753
## 11858 49.51200    3139944   1969.5117
## 11859 50.19700    3219825   1855.5696
## 11860 50.86700    3302636   1824.1448
## 11861 51.51800    3388631   1929.8565
## 11862 52.14500    3478093   1914.6706
## 11863 52.73500    3571209   1821.7937
## 11864 53.27600    3668102   1768.7964
## 11865 53.76300    3768489   1727.7549
## 11866 54.19700    3871490   1735.9947
## 11867 54.58100    3975950   1684.3888
## 11868 54.92500    4081022   1706.6656
## 11869 55.24200    4186499   1741.7438
## 11870 55.54800    4292575   1745.7651
## 11871 55.85500    4399320   1752.9621
## 11872 56.16800    4506996   1686.7922
## 11873 56.49200    4615843   1597.4047
## 11874 56.82300    4725543   1709.2845
## 11875 57.15200    4836216   1901.4720
## 11876 57.47300    4949053   2196.3391
## 11877 57.78100    5065664   2273.2842
## 11878 58.07300    5187063   2146.5408
## 11879 58.34400    5314258   2257.1977
## 11880 58.59400    5446633   2116.3509
## 11881 58.82800    5581767   1987.2777
## 11882 59.04900    5716166   1976.5607
## 11883 59.26500    5847590   1883.9339
## 11884 59.48700    5974627   1841.6399
## 11885 59.72200    6098621   1801.3297
## 11886 59.97400    6223378   1803.4205
## 11887 60.24500    6354247   1814.3417
## 11888 60.53400    6494902   1887.6732
## 11889 60.83600    6646891   1944.2962
## 11890 61.14100    6808503   2046.4885
## 11891 61.44200    6976200   1991.3730
## 11892 61.73900    7144774   2076.6151
## 11893 62.02900    7310512   2235.0963
## 11894 62.31600    7472196   2210.9521
## 11895 62.60400    7631003   2265.7644
## 11896 62.89200    7788388   2304.8916
## 11897 63.18100    7946733   2564.9138
## 11898 63.46600    8107772   2679.3466
## 11899 63.74400    8271766   2770.3951
## 11900 64.01000    8438038   2811.7975
## 11901 64.26300    8606324   2749.1178
## 11902 64.50100    8776119   2816.7188
## 11903 64.72500    8947027   2666.2113
## 11904       NA    9119005   2655.1673
## 11905 63.88100    1903990   1491.9392
## 11906 64.10500    1954552   1553.6293
## 11907 64.31400    2006675   1563.2161
## 11908 64.50000    2060340   1594.2137
## 11909 64.65900    2115573   1617.9948
## 11910 64.79300    2172309   1672.9273
## 11911 64.90800    2230733   1661.5563
## 11912 65.01500    2290797   1766.0429
## 11913 65.12400    2351926   1798.0137
## 11914 65.24100    2413396   1834.5921
## 11915 65.36800    2474757   1888.4604
## 11916 65.50600    2535877   1945.0096
## 11917 65.65300    2597149   2025.0594
## 11918 65.80600    2659418   2122.0672
## 11919 65.96400    2723816   2245.5526
## 11920 66.13000    2791236   2341.4716
## 11921 66.30200    2861868   2455.5521
## 11922 66.48100    2935710   2668.9314
## 11923 66.66400    3013281   2912.9990
## 11924 66.84700    3095151   3172.3513
## 11925 67.02600    3181627   3447.5792
## 11926 67.19200    3272922   3658.7522
## 11927 67.34300    3368763   3504.9805
## 11928 67.47900    3468533   3300.5864
## 11929 67.60300    3571275   3295.9217
## 11930 67.72300    3676206   3346.6690
## 11931 67.85000    3783074   3413.5919
## 11932 67.99300    3891725   3569.8925
## 11933 68.15700    4001678   3677.1736
## 11934 68.34300    4112396   3826.3267
## 11935 68.54500    4223413   3879.3707
## 11936 68.75300    4334348   3912.1433
## 11937 68.95800    4445019   3879.4540
## 11938 69.15200    4555518   3972.2124
## 11939 69.33500    4666096   4084.3111
## 11940 69.51100    4776838   4261.8286
## 11941 69.69000    4887638   4230.7668
## 11942 69.88000    4998096   4312.7910
## 11943 70.08700    5107840   4223.0003
## 11944 70.31000    5216346   4078.6675
## 11945 70.54600    5323202   3904.3024
## 11946 70.78600    5428442   3796.6778
## 11947 71.02300    5531958   3724.8356
## 11948 71.24900    5632983   3816.0866
## 11949 71.46400    5730556   3903.3091
## 11950 71.66700    5824095   3922.5585
## 11951 71.86200    5913212   4049.1625
## 11952 72.05500    5998430   4208.0487
## 11953 72.25100    6081296   4420.3504
## 11954 72.45000    6163970   4349.6743
## 11955 72.65300    6248017   4767.2779
## 11956 72.86000    6333981   4904.1469
## 11957 73.06800    6421510   4803.0503
## 11958 73.27400    6510273   5130.4539
## 11959 73.47300    6599524   5329.3698
## 11960 73.66200    6688746   5413.7760
## 11961 73.83600    6777878   5570.6053
## 11962 73.99200    6867058   5762.7326
## 11963 74.13100    6956069   5871.2813
## 11964 74.25400    7044639   5774.1662
## 11965 74.36300    7132530   5656.2612
## 11966       NA    7219641   5822.7036
## 11967 48.01200   10155011   2709.4934
## 11968 48.62800   10446618   2827.3729
## 11969 49.22400   10749463   3023.4587
## 11970 49.79200   11062295   3065.1201
## 11971 50.33400   11383364   3173.7073
## 11972 50.87200   11711402   3258.2312
## 11973 51.43200   12045783   3428.7767
## 11974 52.03800   12386868   3462.8203
## 11975 52.70200   12735491   3373.1560
## 11976 53.42000   13092846   3396.4019
## 11977 54.17400   13459789   3415.0130
## 11978 54.93500   13836365   3474.5696
## 11979 55.67100   14221954   3497.9197
## 11980 56.36000   14615847   3617.2967
## 11981 56.99400   15017060   3851.1307
## 11982 57.57500   15424745   3910.5972
## 11983 58.11400   15838568   3863.5350
## 11984 58.63600   16258323   3776.9248
## 11985 59.15800   16683451   3583.4190
## 11986 59.69100   17113393   3636.2983
## 11987 60.24000   17547612   3757.0869
## 11988 60.80400   17985398   3869.1526
## 11989 61.37800   18426420   3768.1362
## 11990 61.95800   18870988   3296.4138
## 11991 62.54200   19319746   3336.0262
## 11992 63.13200   19772871   3326.7603
## 11993 63.73100   20230385   3558.0125
## 11994 64.33800   20691285   3817.1065
## 11995 64.94900   21153462   3381.1979
## 11996 65.56000   21614193   2901.7032
## 11997 66.16500   22071433   2700.0064
## 11998 66.75700   22522383   2704.6664
## 11999 67.33000   22966822   2637.9914
## 12000 67.88000   23408135   2723.9747
## 12001 68.40500   23851405   3002.3963
## 12002 68.90300   24299168   3165.4900
## 12003 69.37800   24753825   3194.3228
## 12004 69.83400   25210957   3339.5418
## 12005 70.27400   25658070   3268.4998
## 12006 70.70000   26078295   3263.9051
## 12007 71.11100   26459944   3303.5009
## 12008 71.50500   26799289   3281.8241
## 12009 71.88200   27100964   3422.2754
## 12010 72.24000   27372217   3529.4873
## 12011 72.58100   27624226   3670.6914
## 12012 72.90800   27866140   3867.5274
## 12013 73.22200   28102055   4123.7975
## 12014 73.52800   28333050   4438.5940
## 12015 73.82600   28562321   4804.8048
## 12016 74.12000   28792663   4818.5972
## 12017 74.41000   29027680   5177.8413
## 12018 74.69700   29264314   5460.9357
## 12019 74.98100   29506790   5748.5908
## 12020 75.25800   29773986   6030.4202
## 12021 75.52900   30090372   6109.1569
## 12022 75.79200   30470739   6229.1007
## 12023 76.04400   30926036   6380.0259
## 12024 76.28600   31444299   6432.9243
## 12025 76.51600   31989265   6574.3290
## 12026 76.73600   32510462   6613.8764
## 12027 76.94700   32971846   5807.0654
## 12028       NA   33359416   6505.8071
## 12029 61.10500   26269741   1193.1767
## 12030 61.50900   27161052   1219.7486
## 12031 61.86000   28077345   1237.1261
## 12032 62.16000   29012630   1281.2465
## 12033 62.41100   29958687   1283.0041
## 12034 62.61800   30909997   1309.9845
## 12035 62.78400   31864175   1327.1931
## 12036 62.91500   32823970   1355.6734
## 12037 63.01700   33795203   1383.0511
## 12038 63.09700   34786309   1406.6561
## 12039 63.15500   35803591   1417.1539
## 12040 63.19000   36849678   1451.1263
## 12041 63.20200   37923400   1486.6114
## 12042 63.19700   39022759   1571.6065
## 12043 63.18500   40144250   1579.5607
## 12044 63.18300   41285741   1619.6110
## 12045 63.20600   42446659   1713.6020
## 12046 63.26300   43629415   1759.8907
## 12047 63.36200   44838485   1801.3514
## 12048 63.50300   46079844   1850.9048
## 12049 63.67700   47357741   1894.6229
## 12050 63.87000   48672831   1906.5182
## 12051 64.06700   50023564   1923.6454
## 12052 64.26000   51408910   1907.3151
## 12053 64.45100   52827047   1725.4546
## 12054 64.65500   54275836   1564.2175
## 12055 64.89500   55755346   1576.1673
## 12056 65.18600   57263835   1601.5851
## 12057 65.53400   58794999   1664.3397
## 12058 65.93300   60340768   1721.9886
## 12059 66.36600   61895169   1730.4937
## 12060 66.81100   63454785   1680.5949
## 12061 67.23900   65020124   1646.9848
## 12062 67.62800   66593904   1643.1486
## 12063 67.96200   68180846   1675.0966
## 12064 68.23100   69784087   1712.3095
## 12065 68.43100   71401743   1771.5898
## 12066 68.57400   73030879   1821.9023
## 12067 68.67500   74672009   1772.7004
## 12068 68.74400   76325927   1792.3246
## 12069 68.79300   77991757   1830.9132
## 12070 68.83500   79672869   1846.9314
## 12071 68.88000   81365260   1875.7244
## 12072 68.93700   83051970   1931.1088
## 12073 69.01300   84710544   2017.6742
## 12074 69.11200   86326251   2077.7680
## 12075 69.23300   87888675   2149.3299
## 12076 69.37000   89405482   2250.6094
## 12077 69.51500   90901967   2309.7262
## 12078 69.66700   92414161   2304.8365
## 12079 69.82300   93966784   2433.0085
## 12080 69.98400   95570049   2484.4892
## 12081 70.14900   97212639   2610.9678
## 12082 70.31500   98871558   2740.4565
## 12083 70.48100  100513137   2866.8221
## 12084 70.64400  102113206   3001.0432
## 12085 70.80200  103663812   3167.5024
## 12086 70.95200  105172921   3338.4415
## 12087 71.09500  106651394   3500.9338
## 12088 71.23100  108116622   3664.7907
## 12089 71.36000  109581085   3271.6499
## 12090       NA  111046910   3412.5883
## 12091 67.68049   29637450          NA
## 12092 67.77805   29964000          NA
## 12093 67.42683   30308500          NA
## 12094 68.37561   30712000          NA
## 12095 68.62927   31139450          NA
## 12096 69.42927   31444950          NA
## 12097 69.82683   31681000          NA
## 12098 69.42439   31987155          NA
## 12099 70.21951   32294655          NA
## 12100 69.71951   32548300          NA
## 12101 69.86829   32664300          NA
## 12102 69.61220   32783500          NA
## 12103 70.66585   33055650          NA
## 12104 70.66341   33357200          NA
## 12105 71.11707   33678899          NA
## 12106 70.56098   34015199          NA
## 12107 70.65610   34356300          NA
## 12108 70.40244   34689050          NA
## 12109 70.35122   34965600          NA
## 12110 70.75122   35247217          NA
## 12111 70.09756   35574150          NA
## 12112 71.05122   35898587          NA
## 12113 71.10244   36230481          NA
## 12114 71.00000   36571808          NA
## 12115 70.80000   36904134          NA
## 12116 70.54878   37201885          NA
## 12117 70.84878   37456119          NA
## 12118 70.89756   37668045          NA
## 12119 71.33171   37824487          NA
## 12120 71.04390   37961529          NA
## 12121 70.89024   38110782   5120.1530
## 12122 70.58780   38246193   4744.0884
## 12123 71.09024   38363667   4848.5089
## 12124 71.59512   38461408   5016.9792
## 12125 71.69512   38542652   5271.3830
## 12126 71.89268   38594998   5638.1449
## 12127 72.24634   38624370   5978.3895
## 12128 72.64634   38649660   6359.7754
## 12129 72.99756   38663481   6652.5302
## 12130 73.04390   38660271   6962.7719
## 12131 73.74878   38258629   7356.7754
## 12132 74.20000   38248076   7451.4142
## 12133 74.49756   38230364   7606.6400
## 12134 74.59756   38204570   7878.0657
## 12135 74.84634   38182222   8275.4568
## 12136 74.99512   38165445   8569.4300
## 12137 75.14390   38141267   9100.5988
## 12138 75.24390   38120560   9748.5341
## 12139 75.54390   38125759  10156.5843
## 12140 75.69512   38151603  10437.1619
## 12141 76.24634   38042794  10858.5348
## 12142 76.69512   38063255  11369.0296
## 12143 76.74634   38063164  11519.6850
## 12144 77.00000   38040196  11656.4031
## 12145 77.60244   38011735  12059.2467
## 12146 77.45122   37986412  12578.4955
## 12147 77.85122   37970087  12979.2553
## 12148 77.75366   37974826  13604.5405
## 12149 77.60244   37974750  14332.9159
## 12150 77.90488   37965475  15016.6733
## 12151 76.60000   37899070  14660.7939
## 12152       NA   37781024  15549.6692
## 12153 63.27290    8857716   3934.9447
## 12154 63.68637    8929316   4119.4413
## 12155 64.09522    8993985   4360.3405
## 12156 64.49651    9030355   4597.8611
## 12157 64.89127    9035365   4885.3101
## 12158 65.28005    8998595   5271.6467
## 12159 65.66346    8930990   5528.1518
## 12160 66.04554    8874520   5983.0526
## 12161 66.42729    8836650   6541.9955
## 12162 66.81271    8757705   6740.9567
## 12163 67.07317    8680431   7658.7443
## 12164 66.77073    8643756   8201.2963
## 12165 68.32439    8630430   8872.3657
## 12166 67.52439    8633100   9863.0789
## 12167 68.01951    8754365   9837.6158
## 12168 68.30976    9093470   9059.0071
## 12169 68.86098    9355810   9412.5541
## 12170 70.01220    9455675   9834.9225
## 12171 70.31707    9558250  10003.3544
## 12172 71.16829    9661265  10454.7601
## 12173 71.21463    9766312  10816.9518
## 12174 71.61463    9851362  10897.0840
## 12175 72.41463    9911771  11061.9453
## 12176 72.26585    9957865  10991.6795
## 12177 72.51463    9996232  10743.6437
## 12178 72.81463   10023613  11015.0931
## 12179 73.26585   10032734  11460.7945
## 12180 73.66585   10030031  12195.4386
## 12181 73.71463   10019610  13122.4021
## 12182 74.26585   10005000  13987.9651
## 12183 73.96585    9983218  14572.2884
## 12184 74.01463    9960235  15243.9300
## 12185 74.31220    9952494  15421.9949
## 12186 74.51220    9964675  15088.4140
## 12187 74.91463    9991525  15193.0547
## 12188 75.31220   10026176  15788.9831
## 12189 75.26098   10063945  16280.9372
## 12190 75.41220   10108977  16921.7219
## 12191 75.71220   10160196  17645.9058
## 12192 75.96341   10217828  18231.8398
## 12193 76.31463   10289898  18795.0311
## 12194 76.81463   10362722  19025.6957
## 12195 77.06585   10419631  19067.6554
## 12196 77.21951   10458821  18819.4437
## 12197 77.67073   10483861  19110.3208
## 12198 78.07073   10503330  19224.0347
## 12199 78.41951   10522288  19501.2330
## 12200 78.32195   10542964  19950.8441
## 12201 78.52439   10558177  19985.6983
## 12202 78.72683   10568247  19343.2800
## 12203 79.02683   10573100  19670.3611
## 12204 80.47073   10557560  19365.1816
## 12205 80.37317   10514844  18654.9575
## 12206 80.72195   10457295  18584.5540
## 12207 81.12195   10401062  18833.0518
## 12208 81.12439   10358076  19250.1065
## 12209 81.12439   10325452  19700.9100
## 12210 81.42439   10300300  20441.4858
## 12211 81.32439   10283822  21057.6175
## 12212 81.67561   10286263  21617.4115
## 12213 80.97561   10297081  19771.5774
## 12214       NA   10299423  20731.9543
## 12215 68.81446  755229793  11280.1369
## 12216 69.21931  764423461  11628.6883
## 12217 69.22016  773856028  12138.7840
## 12218 69.42250  783141819  12628.8396
## 12219 69.82740  792263980  13276.8547
## 12220 69.91366  801098720  13850.8770
## 12221 70.15769  809363152  14514.3381
## 12222 70.39985  817179925  14998.7654
## 12223 70.32377  824733296  15749.3400
## 12224 70.51982  832280859  16438.5871
## 12225 70.83377  839822017  16721.7177
## 12226 71.11225  849163924  17148.5018
## 12227 71.34881  857079422  17898.8049
## 12228 71.51155  864609745  18827.1749
## 12229 71.88993  871928836  18808.4610
## 12230 72.23638  878890622  18668.1729
## 12231 72.47303  885145869  19437.4027
## 12232 72.81482  891251760  20042.9458
## 12233 72.94951  897391855  20780.9994
## 12234 73.24453  903788370  21427.4806
## 12235 73.27549  909890607  21489.0944
## 12236 73.59298  915971623  21750.0682
## 12237 73.91879  921511883  21686.8335
## 12238 74.02753  926614804  22253.8522
## 12239 74.31730  931410415  23193.2908
## 12240 74.46014  936241263  23928.8598
## 12241 74.70965  941376248  24566.9642
## 12242 74.99715  946671291  25287.3801
## 12243 75.09938  952173528  26321.9103
## 12244 75.34906  958081653  27170.8453
## 12245 75.47926  964174249  27759.0589
## 12246 75.60471  970997843  27904.0717
## 12247 75.80671  977879331  28258.6175
## 12248 75.80929  984374978  28390.5414
## 12249 76.05934  990074232  29101.5104
## 12250 76.07523  995310446  29727.6306
## 12251 76.43889 1000603285  30444.2536
## 12252 76.78258 1005700631  31319.6248
## 12253 76.99915 1010593820  32036.9535
## 12254 77.11641 1015421531  32996.1166
## 12255 77.35564 1020504874  34139.4892
## 12256 77.64789 1025401797  34480.6933
## 12257 77.78724 1030561691  34843.1776
## 12258 77.91473 1035711715  35388.5055
## 12259 78.34049 1041075191  36344.2043
## 12260 78.43332 1046366703  37178.0521
## 12261 78.75815 1052054839  38079.1069
## 12262 79.01182 1057981930  38880.0134
## 12263 79.15435 1064394135  38784.0486
## 12264 79.47739 1069876237  37284.2989
## 12265 79.68614 1074863836  38189.9254
## 12266 79.95295 1077830451  38725.9924
## 12267 80.08676 1082356457  39046.8025
## 12268 80.26808 1087107539  39422.1771
## 12269 80.52726 1092062242  39989.9804
## 12270 80.39501 1096949064  40669.0421
## 12271 80.54945 1101915677  41196.0959
## 12272 80.59752 1106131866  42004.2202
## 12273 80.69166 1110012320  42800.3069
## 12274 80.89111 1113142897  43408.2216
## 12275 80.16436 1117278019  41227.0558
## 12276       NA 1116655196  43303.8428
## 12277 39.13610  187617086    967.5629
## 12278 39.59334  191889668    938.2531
## 12279 40.04279  196349130    973.8110
## 12280 40.48383  200997696   1005.3268
## 12281 40.91822  205835402   1020.1646
## 12282 41.34824  210865011   1037.3444
## 12283 41.77859  216096182   1011.5778
## 12284 42.21222  221539857    923.1743
## 12285 42.65183  227201766    922.0059
## 12286 43.09643  233087196   1004.1242
## 12287 43.54690  239204922   1098.8274
## 12288 44.00324  245537967   1172.4162
## 12289 44.46215  252097876   1175.9930
## 12290 44.91909  258953399   1192.6281
## 12291 45.37054  266195192   1262.5718
## 12292 45.81195  273877853   1225.8718
## 12293 46.23825  282049633   1279.3422
## 12294 46.64665  290664978   1303.1927
## 12295 47.03478  299570039   1256.8645
## 12296 47.40120  308551498   1289.2120
## 12297 47.74488  317462476   1307.5977
## 12298 48.06644  326257709   1223.2983
## 12299 48.36639  335003783   1178.9557
## 12300 48.64422  343806080   1094.0501
## 12301 48.89653  352822095   1069.1674
## 12302 49.11879  362177648   1077.1060
## 12303 49.30596  371878713   1077.0810
## 12304 49.45621  381918442   1093.1219
## 12305 49.57202  392393113   1102.4842
## 12306 49.65897  403416174   1092.7409
## 12307 49.71935  415057402   1151.7183
## 12308 49.75581  427398546   1028.9472
## 12309 49.77500  440397744   1026.1673
## 12310 49.78743  453849671    994.0625
## 12311 49.80334  467465268    966.5685
## 12312 49.83519  481049536    968.9957
## 12313 49.89659  494517689    995.3928
## 12314 49.99897  507968951   1033.8367
## 12315 50.15476  521617701   1075.7670
## 12316 50.37560  535773383   1091.6666
## 12317 50.67378  550660000   1120.7683
## 12318 51.05894  566366083   1139.4180
## 12319 51.52351  582828758   1169.9144
## 12320 52.05508  599938100   1130.3021
## 12321 52.64148  617518659   1227.0996
## 12322 53.26990  635451626   1263.4703
## 12323 53.92744  653695057   1304.7125
## 12324 54.60057  672318862   1345.0293
## 12325 55.27598  691447634   1389.8117
## 12326 55.94319  711257518   1413.3357
## 12327 56.59346  731868780   1462.6265
## 12328 57.22416  753326898   1478.0224
## 12329 57.83556  775573262   1486.1144
## 12330 58.42602  798496024   1527.2159
## 12331 58.98778  821931559   1558.9842
## 12332 59.51196  845759372   1563.7312
## 12333 59.99193  869943573   1557.2947
## 12334 60.42746  894512378   1538.4675
## 12335 60.82094  919485090   1534.6586
## 12336 61.17598  944902748   1540.9839
## 12337 61.49877  970795671   1463.2346
## 12338       NA  997158227   1474.3011
## 12339 68.71961    2358000   6307.4171
## 12340 68.94317    2399722   6634.1849
## 12341 69.14544    2450322   7037.9678
## 12342 69.35600    2504530   7481.3180
## 12343 69.59329    2554066   7854.2229
## 12344 69.87076    2594000   8445.1480
## 12345 70.18671    2624995   8971.2669
## 12346 70.52351    2645674   9455.0843
## 12347 70.86415    2662064   9883.6693
## 12348 71.20261    2684150  10721.3361
## 12349 71.53554    2718000  11476.9682
## 12350 71.85910    2762190  12012.2306
## 12351 72.16946    2817256  12622.3034
## 12352 72.46473    2878786  13136.2739
## 12353 72.73790    2939299  13241.1750
## 12354 72.98246    2994000  12914.1671
## 12355 73.19083    3043854  13495.6891
## 12356 73.36132    3088690  14091.2110
## 12357 73.49873    3129421  14871.8884
## 12358 73.60644    3168088  15851.9169
## 12359 73.70024    3206000  16329.1788
## 12360 73.79746    3242552  16330.4438
## 12361 73.90859    3277453  15905.0441
## 12362 74.03663    3311138  15374.5356
## 12363 74.17763    3344190  16125.0820
## 12364 74.30920    3377000  16463.0277
## 12365 74.40039    3409554  17117.4423
## 12366 74.43098    3441850  17935.0628
## 12367 74.39410    3473898  18815.9457
## 12368 74.29895    3505650  19453.7971
## 12369 74.16917    3537000  18733.6743
## 12370 74.03880    3562110  19030.2711
## 12371 73.94637    3585176  19770.7992
## 12372 73.92088    3615497  20515.5526
## 12373 73.97690    3649237  21176.7030
## 12374 74.12456    3683103  21936.4520
## 12375 74.36146    3724655  22193.6136
## 12376 74.66405    3759430  23061.3703
## 12377 75.00729    3781101  24197.3473
## 12378 75.37549    3800081  25374.1411
## 12379 76.68927    3810605  26132.0036
## 12380 77.06683    3818774  27722.4102
## 12381 77.76049    3823701  27940.4260
## 12382 78.07122    3826095  27937.8600
## 12383 78.17585    3826878  30375.8367
## 12384 78.29610    3821362  29815.2627
## 12385 78.41634    3805214  29519.7845
## 12386 78.42585    3782995  29347.8916
## 12387 77.96293    3760866  28976.1760
## 12388 78.19100    3740410  28565.8123
## 12389 78.41910    3721525  28592.1220
## 12390 78.64066    3678732  28821.0228
## 12391 78.84759    3634488  29180.4121
## 12392 79.03434    3593077  29426.1576
## 12393 79.20246    3534874  29554.6244
## 12394 79.35349    3473232  29763.4883
## 12395 79.49498    3406672  29961.7528
## 12396 79.63454    3325286  29809.2177
## 12397 79.77820    3193354  29753.3641
## 12398 79.92851    3193694  30191.9318
## 12399 80.08746    3281538  28236.7831
## 12400       NA    3263584          NA
## 12401 61.09400      47383          NA
## 12402 61.85100      51427          NA
## 12403 62.61000      56266          NA
## 12404 63.36900      61721          NA
## 12405 64.12300      67562          NA
## 12406 64.86600      73631          NA
## 12407 65.58800      79850          NA
## 12408 66.28200      86298          NA
## 12409 66.94200      93206          NA
## 12410 67.56700     100880          NA
## 12411 68.15600     109521          NA
## 12412 68.71300     119413          NA
## 12413 69.24500     130505          NA
## 12414 69.75800     142181          NA
## 12415 70.25400     153624          NA
## 12416 70.73400     164314          NA
## 12417 71.19800     173716          NA
## 12418 71.64400     182319          NA
## 12419 72.07200     191947          NA
## 12420 72.48000     205172          NA
## 12421 72.86900     223622          NA
## 12422 73.23900     247984          NA
## 12423 73.58900     277229          NA
## 12424 73.92200     309299          NA
## 12425 74.23700     341272          NA
## 12426 74.53700     370886          NA
## 12427 74.82100     397739          NA
## 12428 75.09100     422154          NA
## 12429 75.34900     443611          NA
## 12430 75.59300     461688          NA
## 12431 75.82400     476275          NA
## 12432 76.04100     487354          NA
## 12433 76.24100     495403          NA
## 12434 76.42700     501479          NA
## 12435 76.59900     507044          NA
## 12436 76.75900     513447          NA
## 12437 76.90900     522531          NA
## 12438 77.05200     535320          NA
## 12439 77.19000     551566          NA
## 12440 77.32700     570486          NA
## 12441 77.46700     592467  56864.9886
## 12442 77.61200     615013  56915.7933
## 12443 77.76200     640872  58542.0954
## 12444 77.91900     681791  57075.6192
## 12445 78.08300     753332  61582.9723
## 12446 78.25200     865410  57624.1272
## 12447 78.42500    1022704  61522.3993
## 12448 78.60100    1218441  60926.7383
## 12449 78.77500    1436670  60799.1323
## 12450 78.94500    1654944  59090.9064
## 12451 79.10800    1856329  63001.7101
## 12452 79.26000    2035862  65129.3774
## 12453 79.39900    2196078  63233.7087
## 12454 79.52700    2336579  62733.4306
## 12455 79.64600    2459202  62784.9009
## 12456 79.75800    2565708  63039.1126
## 12457 79.86800    2654379  62800.3681
## 12458 79.98100    2724727  60262.7461
## 12459 80.10000    2781682  59757.7961
## 12460 80.22700    2832071  59149.3391
## 12461 80.36300    2881060  56026.8872
## 12462       NA    2930524  55920.3212
## 12463 65.64244   18406905          NA
## 12464 66.41588   18555250          NA
## 12465 67.02907   18676550          NA
## 12466 67.44107   18797850          NA
## 12467 67.65044   18919126          NA
## 12468 67.69785   19031576          NA
## 12469 67.65946   19215450          NA
## 12470 67.62690   19534242          NA
## 12471 67.67124   19799831          NA
## 12472 67.81493   20009141          NA
## 12473 68.05641   20250398          NA
## 12474 68.50415   20461567          NA
## 12475 68.47024   20657957          NA
## 12476 69.00561   20835681          NA
## 12477 69.49976   21029429          NA
## 12478 69.61390   21293583          NA
## 12479 69.69878   21551634          NA
## 12480 69.74195   21756096          NA
## 12481 69.48049   21951464          NA
## 12482 69.15317   22090488          NA
## 12483 69.09098   22207282          NA
## 12484 69.36829   22353070          NA
## 12485 69.53171   22475741          NA
## 12486 69.72634   22560478          NA
## 12487 69.65878   22640547          NA
## 12488 69.70683   22732999          NA
## 12489 69.49634   22836841          NA
## 12490 69.22683   22949430          NA
## 12491 69.38805   23057662          NA
## 12492 69.53073   23161458          NA
## 12493 69.74122   23201835   4996.6878
## 12494 69.78439   23001155   4389.1685
## 12495 69.78439   22794284   4040.7019
## 12496 69.56341   22763280   4108.0652
## 12497 69.50976   22730211   4275.8035
## 12498 69.45610   22684270   4551.5355
## 12499 69.10488   22619004   4743.0424
## 12500 69.00488   22553978   4526.0610
## 12501 69.80732   22507344   4443.3779
## 12502 70.51220   22472040   4433.5957
## 12503 71.16341   22442971   4548.6021
## 12504 71.16098   22131970   4853.2072
## 12505 71.00976   21730496   5224.7624
## 12506 71.30976   21574326   5385.7876
## 12507 71.56098   21451748   5981.4080
## 12508 71.91220   21319685   6299.4099
## 12509 72.16341   21193760   6845.6113
## 12510 72.56585   20882982   7450.0547
## 12511 72.56585   20537875   8280.3044
## 12512 73.30976   20367487   7888.8958
## 12513 73.45854   20246871   7626.2942
## 12514 74.40976   20147528   7809.9768
## 12515 74.41220   20058035   8004.9092
## 12516 75.06341   19983693   8337.6736
## 12517 74.90976   19908979   8670.9758
## 12518 74.91220   19815616   8969.1489
## 12519 75.20976   19702267   9444.9949
## 12520 75.30976   19588715  10195.0747
## 12521 75.35854   19473970  10714.0154
## 12522 75.60732   19371648  11221.7084
## 12523 74.35366   19257520  10865.1411
## 12524       NA   19115146  11589.6595
## 12525 66.05529  119897000          NA
## 12526 66.59702  121236000          NA
## 12527 67.02141  122591000          NA
## 12528 67.33990  123960000          NA
## 12529 67.56651  125345000          NA
## 12530 67.71885  126745000          NA
## 12531 67.81251  127468000          NA
## 12532 67.86015  128196000          NA
## 12533 67.87434  128928000          NA
## 12534 67.86712  129664000          NA
## 12535 68.13366  130404000          NA
## 12536 68.37659  131155000          NA
## 12537 68.30854  131909000          NA
## 12538 68.29463  132669000          NA
## 12539 68.32024  133432000          NA
## 12540 67.72390  134200000          NA
## 12541 67.48756  135147000          NA
## 12542 67.37634  136100000          NA
## 12543 67.39098  137060000          NA
## 12544 67.11439  138027000          NA
## 12545 67.03390  139010000          NA
## 12546 67.26390  139941000          NA
## 12547 67.80610  140823000          NA
## 12548 67.65268  141668000          NA
## 12549 67.20268  142745000          NA
## 12550 67.85683  143858000          NA
## 12551 69.38976  144894000          NA
## 12552 69.44000  145908000          NA
## 12553 69.46439  146857000          NA
## 12554 69.17171  147721000   8105.8882
## 12555 68.88610  147969407   7849.5122
## 12556 68.47439  148394216   7432.0156
## 12557 66.87317  148538197   6345.9067
## 12558 64.93585  148458777   5798.9097
## 12559 64.46707  148407912   5071.7388
## 12560 64.69073  148375787   4862.6421
## 12561 65.85415  148160129   4686.8589
## 12562 66.69878  147915361   4760.3354
## 12563 67.02976  147670784   4515.5059
## 12564 65.98220  147214776   4819.3765
## 12565 65.48366  146596869   5323.6626
## 12566 65.38341  145976482   5618.9507
## 12567 65.12878  145306497   5910.1670
## 12568 65.02756  144648618   6370.4487
## 12569 65.47098  144067316   6856.6724
## 12570 65.52976  143518814   7323.3794
## 12571 66.72756  143049637   7949.8901
## 12572 67.58683  142805114   8640.3984
## 12573 67.94927  142742366   9093.6924
## 12574 68.68463  142785349   8381.8613
## 12575 68.84122  142849468   8755.1133
## 12576 69.68390  142960908   9124.4678
## 12577 70.07220  143201721   9475.6826
## 12578 70.57878  143506995   9621.5098
## 12579 70.74366  143819667   9520.9404
## 12580 71.18341  144096870   9313.0137
## 12581 71.65122  144342397   9313.9678
## 12582 72.45146  144496739   9473.1797
## 12583 72.66220  144477859   9739.9004
## 12584 73.08390  144406261   9958.4609
## 12585 71.33878  144073139   9711.4180
## 12586       NA  143446060  10219.7510
## 12587 42.61600    2935575    345.1745
## 12588 42.94100    2998334    323.4261
## 12589 43.25100    3052937    353.6423
## 12590 43.54000    3105417    313.5236
## 12591 43.80300    3164258    269.3395
## 12592 44.03400    3235536    281.8695
## 12593 44.22500    3321674    293.8037
## 12594 44.38000    3420897    305.0121
## 12595 44.50500    3529839    316.3311
## 12596 44.60900    3643237    340.2211
## 12597 44.69600    3757351    349.6862
## 12598 44.77200    3871428    343.4774
## 12599 44.84800    3987223    334.3796
## 12600 44.94500    4106411    335.8369
## 12601 45.08400    4231579    330.4976
## 12602 45.31500    4364709    313.6439
## 12603 45.69200    4506109    363.0572
## 12604 46.22500    4655386    358.4232
## 12605 46.89500    4812872    378.4204
## 12606 47.66100    4978812    409.2290
## 12607 48.52700    5153314    430.7638
## 12608 49.49800    5329250    439.1870
## 12609 50.48700    5504847    432.8769
## 12610 51.34200    5690989    443.7591
## 12611 51.88800    5902847    409.6888
## 12612 51.68500    6146884    410.7452
## 12613 50.23300    6443748    413.2632
## 12614 47.40900    6779981    392.6742
## 12615 43.36100    7088194    392.4973
## 12616 38.43900    7276983    382.1750
## 12617 33.41300    7288883    372.3965
## 12618 29.24800    7083928    373.5365
## 12619 26.69100    6702239    417.9952
## 12620 26.17200    6263758    410.9895
## 12621 27.73800    5936253    215.7562
## 12622 31.03700    5836490    296.7412
## 12623 35.38000    6013112    324.7359
## 12624 39.83800    6419898    346.2849
## 12625 43.68600    6962800    347.5688
## 12626 46.63900    7501238    336.6604
## 12627 48.64900    7933688    344.9552
## 12628 49.93600    8231150    360.6991
## 12629 50.98700    8427061    398.7911
## 12630 52.17800    8557160    401.3775
## 12631 53.59500    8680516    425.1422
## 12632 55.25400    8840220    456.6109
## 12633 57.08300    9043342    487.5403
## 12634 58.91500    9273759    511.7177
## 12635 60.61200    9524532    553.8549
## 12636 62.12900    9782770    572.9274
## 12637 63.43300   10039338    599.2338
## 12638 64.52300   10293333    630.9599
## 12639 65.43800   10549668    668.8286
## 12640 66.21900   10811538    683.4317
## 12641 66.88400   11083629    707.7679
## 12642 67.45000   11369066    751.1105
## 12643 67.93000   11668829    775.5099
## 12644 68.34100   11980960    785.3393
## 12645 68.70000   12301969    830.4661
## 12646 69.02400   12626938    885.6381
## 12647 69.32900   12952209    834.3967
## 12648       NA   13276517    902.6163
## 12649 56.90200     108627          NA
## 12650 57.18800     112112          NA
## 12651 57.47200     115768          NA
## 12652 57.75600     119552          NA
## 12653 58.04500     123346          NA
## 12654 58.34000     127055          NA
## 12655 58.64200     130672          NA
## 12656 58.95100     134181          NA
## 12657 59.26600     137484          NA
## 12658 59.58900     140495          NA
## 12659 59.91900     143146          NA
## 12660 60.25600     145407          NA
## 12661 60.59900     147295          NA
## 12662 60.94800     148858          NA
## 12663 61.30100     150191          NA
## 12664 61.66100     151353          NA
## 12665 62.03100     152362          NA
## 12666 62.41000     153218          NA
## 12667 62.79600     153986          NA
## 12668 63.18400     154740          NA
## 12669 63.56700     155522          NA
## 12670 63.93700     156410          NA
## 12671 64.28900     157365   2479.9283
## 12672 64.61700     158345   2475.2033
## 12673 64.92000     159243   2492.9351
## 12674 65.19400     159995   2578.4692
## 12675 65.44300     160552   2710.9652
## 12676 65.67000     160962   2717.1231
## 12677 65.88300     161369   2671.1798
## 12678 66.08500     161935   2760.5263
## 12679 66.28100     162797   2624.5005
## 12680 66.47000     164000   2545.3278
## 12681 66.65500     165490   2517.3662
## 12682 66.84200     167117   2595.0648
## 12683 67.03700     168689   2505.5272
## 12684 67.24900     170050   2651.3458
## 12685 67.49100     171165   2823.1740
## 12686 67.76400     172065   2826.4770
## 12687 68.06700     172839   2875.5799
## 12688 68.39900     173606   2925.4416
## 12689 68.74800     174454   3059.4914
## 12690 69.10300     175394   3267.9829
## 12691 69.45100     176410   3432.8029
## 12692 69.78100     177481   3589.9474
## 12693 70.08900     178597   3677.6533
## 12694 70.37400     179722   3897.2709
## 12695 70.64200     180874   3955.0145
## 12696 70.90100     182045   3948.6709
## 12697 71.15800     183270   4061.7577
## 12698 71.41200     184553   4011.6721
## 12699 71.66300     185944   4083.2087
## 12700 71.90600     187469   4219.0152
## 12701 72.13600     189089   4011.8433
## 12702 72.35100     190712   3961.1356
## 12703 72.54900     192220   3932.1101
## 12704 72.73000     193510   4073.7291
## 12705 72.89500     194540   4381.4493
## 12706 73.04600     195358   4408.5858
## 12707 73.18700     196128   4337.1261
## 12708 73.32100     197093   4504.9193
## 12709 73.45000     198410   4359.1186
## 12710       NA     200144   3972.2491
## 12711       NA      15440          NA
## 12712       NA      15836          NA
## 12713       NA      16255          NA
## 12714       NA      16669          NA
## 12715       NA      17101          NA
## 12716       NA      17508          NA
## 12717       NA      17919          NA
## 12718       NA      18309          NA
## 12719       NA      18668          NA
## 12720       NA      18980          NA
## 12721       NA      19224          NA
## 12722       NA      19393          NA
## 12723       NA      19490          NA
## 12724       NA      19561          NA
## 12725       NA      19661          NA
## 12726       NA      19829          NA
## 12727       NA      20086          NA
## 12728       NA      20397          NA
## 12729       NA      20764          NA
## 12730       NA      21122          NA
## 12731       NA      21453          NA
## 12732       NA      21761          NA
## 12733       NA      22043          NA
## 12734       NA      22295          NA
## 12735       NA      22546          NA
## 12736       NA      22794          NA
## 12737       NA      23046          NA
## 12738       NA      23297          NA
## 12739       NA      23548          NA
## 12740       NA      23833          NA
## 12741       NA      24124          NA
## 12742       NA      24454          NA
## 12743       NA      24830          NA
## 12744       NA      25208          NA
## 12745       NA      25588          NA
## 12746       NA      25925          NA
## 12747       NA      26253          NA
## 12748       NA      26563  47018.8160
## 12749       NA      26851  49987.0941
## 12750       NA      27141  53928.1636
## 12751       NA      27460  54463.3318
## 12752       NA      27818  56761.4757
## 12753       NA      28175  56216.4414
## 12754       NA      28561  57604.4988
## 12755       NA      28942  59432.0222
## 12756       NA      29324  60080.3235
## 12757       NA      29694  61604.1504
## 12758       NA      30068  65163.0507
## 12759       NA      30434  64056.8966
## 12760       NA      30825  56716.9427
## 12761       NA      31221  52932.4285
## 12762       NA      31655  47865.8387
## 12763       NA      32103  43872.9970
## 12764       NA      32554  42925.9977
## 12765       NA      32941  42123.7338
## 12766       NA      33270  42662.9024
## 12767       NA      33503  43359.4372
## 12768       NA      33671  43254.5185
## 12769       NA      33784  43753.8614
## 12770       NA      33864  44552.1820
## 12771       NA      33938  41499.7064
## 12772       NA      34010          NA
## 12773 50.37800      64294          NA
## 12774 50.90900      64597          NA
## 12775 51.42800      64478          NA
## 12776 51.93100      64237          NA
## 12777 52.41700      64278          NA
## 12778 52.89100      64884          NA
## 12779 53.36100      66172          NA
## 12780 53.83800      68039          NA
## 12781 54.32800      70258          NA
## 12782 54.83300      72501          NA
## 12783 55.35800      74570          NA
## 12784 55.90700      76344          NA
## 12785 56.47200      77930          NA
## 12786 57.04000      79463          NA
## 12787 57.59700      81148          NA
## 12788 58.13000      83134          NA
## 12789 58.62300      85475          NA
## 12790 59.06300      88102          NA
## 12791 59.43600      90846          NA
## 12792 59.73100      93458          NA
## 12793 59.92800      95788          NA
## 12794 60.01400      97767          NA
## 12795 59.99200      99478          NA
## 12796 59.87800     101064          NA
## 12797 59.68800     102826          NA
## 12798 59.44200     104926          NA
## 12799 59.16100     107429          NA
## 12800 58.87400     110259          NA
## 12801 58.60800     113288          NA
## 12802 58.39200     116313          NA
## 12803 58.24700     119211          NA
## 12804 58.18800     121949          NA
## 12805 58.21200     124574          NA
## 12806 58.31800     127066          NA
## 12807 58.51100     129426          NA
## 12808 58.79500     131679          NA
## 12809 59.17200     133799          NA
## 12810 59.63100     135831          NA
## 12811 60.15900     137855          NA
## 12812 60.74200     139964          NA
## 12813 61.36500     142264          NA
## 12814 62.01700     144760   1081.4064
## 12815 62.68700     147450   1086.9126
## 12816 63.35900     150405   1135.6023
## 12817 64.02000     153736   1153.5731
## 12818 64.65900     157472   1206.0952
## 12819 65.27000     161676   1281.8180
## 12820 65.85400     166297   1286.7458
## 12821 66.41200     171122   1352.8295
## 12822 66.93800     175877   1348.1906
## 12823 67.43000     180372   1402.3021
## 12824 67.88500     184521   1431.0603
## 12825 68.30600     188394   1445.6798
## 12826 68.69500     192076   1486.2390
## 12827 69.05200     195727   1554.0472
## 12828 69.37700     199439   1584.7757
## 12829 69.67000     203221   1620.0565
## 12830 69.93300     207086   1651.0120
## 12831 70.17000     211032   1667.8579
## 12832 70.38500     215048   1672.8962
## 12833 70.58300     219161   1692.2187
## 12834       NA     223364   1690.2633
## 12835 45.63800    4086534          NA
## 12836 46.14500    4218852          NA
## 12837 46.66500    4362788          NA
## 12838 47.20700    4516540          NA
## 12839 47.78100    4677304          NA
## 12840 48.40800    4843632          NA
## 12841 49.10700    5015353          NA
## 12842 49.88800    5195124          NA
## 12843 50.75100    5387822  13739.0012
## 12844 51.69200    5599909  14016.7876
## 12845 52.70300    5836388  21336.2493
## 12846 53.77100    6100631  24599.0622
## 12847 54.87200    6392973  28856.9602
## 12848 55.98100    6711922  34129.1192
## 12849 57.07800    7054532  37741.1198
## 12850 58.14800    7419486  32680.6822
## 12851 59.17900    7802928  36612.5471
## 12852 60.16900    8207695  37275.9635
## 12853 61.11600    8646845  33535.9314
## 12854 62.01600    9137928  35516.1442
## 12855 62.86300    9691471  35380.4576
## 12856 63.66000   10311771  33898.2529
## 12857 64.41100   10988851  25215.5102
## 12858 65.12200   11701132  19879.5109
## 12859 65.79500   12418836  17857.5229
## 12860 66.43000   13118998  15248.7572
## 12861 67.02800   13794167  16969.6470
## 12862 67.58900   14445663  15129.5690
## 12863 68.11600   15070082  16403.8876
## 12864 68.61100   15666289  15700.2361
## 12865 69.07800   16233786  17453.4062
## 12866 69.52200   16772695  19427.8509
## 12867 69.94500   17282686  19606.3918
## 12868 70.34900   17763297  18815.7671
## 12869 70.73300   18214475  18452.2184
## 12870 71.09900   18638790  18070.3954
## 12871 71.44500   19033843  18162.0401
## 12872 71.76600   19407138  18009.3078
## 12873 72.06000   19783301  18178.0426
## 12874 72.32700   20194531  17137.7141
## 12875 72.56100   20663840  17690.6613
## 12876 72.75900   21202646  17032.3570
## 12877 72.92000   21805322  16094.7003
## 12878 73.05100   22456645  17384.7941
## 12879 73.15900   23132686  18219.8572
## 12880 73.25600   23816175  18683.3771
## 12881 73.35500   24498313  18669.6136
## 12882 73.46700   25184589  18496.3245
## 12883 73.59800   25888535  19117.9288
## 12884 73.75000   26630303  18202.6926
## 12885 73.91700   27421468  18568.3632
## 12886 74.08900   28267591  19813.2551
## 12887 74.25400   29154906  20249.7964
## 12888 74.40200   30052058  20175.5551
## 12889 74.53300   30916603  20327.6728
## 12890 74.65100   31717676  20627.9218
## 12891 74.76100   32443443  20503.3846
## 12892 74.87400   33101183  19946.9530
## 12893 74.99800   33702757  20083.4598
## 12894 75.13300   34268529  19817.8107
## 12895 75.28000   34813867  18700.2258
## 12896       NA   35340680  19018.4939
## 12897 38.22300    3206757   1199.1526
## 12898 38.38000    3295280   1201.8708
## 12899 38.46200    3386803   1167.7990
## 12900 38.47700    3481654   1157.1648
## 12901 38.44900    3580241   1169.0065
## 12902 38.40700    3682879   1151.5668
## 12903 38.38600    3789381   1151.3984
## 12904 38.42400    3899648   1105.1937
## 12905 38.55800    4014107   1141.2228
## 12906 38.81600    4133324   1035.6666
## 12907 39.22700    4257508   1091.5458
## 12908 39.81400    4387532   1057.7104
## 12909 40.56200    4522886   1091.5522
## 12910 41.44500    4660726   1000.1282
## 12911 42.44200    4797188   1012.4963
## 12912 43.52100    4929846   1059.4961
## 12913 44.64100    5057375   1124.9085
## 12914 45.76700    5181505   1068.5025
## 12915 46.86900    5306685   1002.0462
## 12916 47.92700    5439069   1046.1094
## 12917 48.94400    5583157   1059.7516
## 12918 49.94000    5740441   1084.1086
## 12919 50.93800    5909734   1137.4063
## 12920 51.94500    6089567   1041.4795
## 12921 52.94600    6277420   1050.0774
## 12922 53.91400    6471329   1053.8879
## 12923 54.81300    6670665   1054.3653
## 12924 55.61000    6875746   1086.9093
## 12925 56.28300    7086624   1045.9546
## 12926 56.81800    7303511   1055.2234
## 12927 57.20200    7526306   1016.3446
## 12928 57.43000    7755503   1012.5442
## 12929 57.52900    7990090    995.7916
## 12930 57.53500    8226749    980.3009
## 12931 57.48000    8461066    952.7000
## 12932 57.40400    8690155    978.3108
## 12933 57.34200    8912872    973.1323
## 12934 57.32300    9130876    978.8285
## 12935 57.37600    9347777   1012.5125
## 12936 57.52300    9568717   1051.2841
## 12937 57.78700    9797731   1066.6216
## 12938 58.17700   10036102   1086.1763
## 12939 58.67500   10283694   1060.7535
## 12940 59.25900   10541470   1092.7014
## 12941 59.91200   10810086   1115.0258
## 12942 60.62000   11090123   1133.7170
## 12943 61.36500   11382272   1130.3640
## 12944 62.12600   11687078   1132.0067
## 12945 62.88000   12004700   1142.8669
## 12946 63.60700   12335092   1142.8659
## 12947 64.28400   12678143   1149.6465
## 12948 64.89800   13033814   1133.1933
## 12949 65.44800   13401990   1146.1781
## 12950 65.93900   13782429   1141.4269
## 12951 66.37000   14174740   1178.9129
## 12952 66.74700   14578450   1219.2494
## 12953 67.07800   14993514   1261.0095
## 12954 67.38000   15419354   1316.8447
## 12955 67.66500   15854324   1360.2393
## 12956 67.94100   16296362   1384.3970
## 12957 68.21300   16743930   1365.2516
## 12958       NA   17196308   1409.9539
## 12959       NA    6608000          NA
## 12960       NA    6655000          NA
## 12961       NA    6696000          NA
## 12962       NA    6732000          NA
## 12963       NA    6765000          NA
## 12964       NA    6794000          NA
## 12965       NA    6841000          NA
## 12966       NA    6880000          NA
## 12967       NA    6915000          NA
## 12968       NA    6945000          NA
## 12969       NA    6972000          NA
## 12970       NA    7013000          NA
## 12971       NA    7053000          NA
## 12972       NA    7091000          NA
## 12973       NA    7128000          NA
## 12974       NA    7163000          NA
## 12975       NA    7214000          NA
## 12976       NA    7258000          NA
## 12977       NA    7297000          NA
## 12978       NA    7332000          NA
## 12979       NA    7362000          NA
## 12980       NA    7405000          NA
## 12981       NA    7440000          NA
## 12982       NA    7468000          NA
## 12983       NA    7489000          NA
## 12984       NA    7504000          NA
## 12985       NA    7536000          NA
## 12986       NA    7558000          NA
## 12987       NA    7572000          NA
## 12988       NA    7581000          NA
## 12989       NA    7586000          NA
## 12990 71.48780    7595636          NA
## 12991       NA    7646424          NA
## 12992       NA    7699307          NA
## 12993       NA    7734639          NA
## 12994       NA    7625357   2781.2470
## 12995       NA    7617794   2958.4008
## 12996 72.03902    7596501   3180.5141
## 12997       NA    7567745   3299.2602
## 12998       NA    7540401   2999.1693
## 12999 71.58293    7516346   3193.2597
## 13000 72.23415    7503433   3418.7903
## 13001 72.28537    7496522   3640.2759
## 13002 72.43659    7480591   3808.0950
## 13003 72.68293    7463157   4161.5962
## 13004 72.83415    7440769   4404.9609
## 13005 73.38537    7411569   4648.1981
## 13006 73.63171    7381579   4967.6209
## 13007 73.88537    7350222   5270.9595
## 13008 73.98537    7320807   5147.5702
## 13009 74.33659    7291436   5206.0880
## 13010 74.53659    7234099   5354.2017
## 13011 74.83659    7199077   5343.5801
## 13012 75.18537    7164132   5524.9691
## 13013 75.33659    7130576   5462.7360
## 13014 75.28780    7095383   5588.9807
## 13015 75.68780    7058322   5805.8994
## 13016 75.53902    7020858   5959.5227
## 13017 75.89024    6982604   6261.5271
## 13018 75.93659    6945235   6567.9096
## 13019 74.22927    6899126   6549.3501
## 13020       NA    6844078   7089.8692
## 13021       NA      41700   3230.7671
## 13022       NA      42889   2987.8393
## 13023       NA      44042   3154.2766
## 13024       NA      45176   3386.7783
## 13025       NA      46322   3498.5020
## 13026       NA      47500   3375.5552
## 13027       NA      48699   3749.9820
## 13028       NA      49911   3677.3884
## 13029       NA      51134   3860.5527
## 13030       NA      52365   3769.7986
## 13031       NA      53600   4009.6840
## 13032       NA      54695   4552.2909
## 13033       NA      56029   4724.2401
## 13034       NA      56892   5073.8308
## 13035       NA      57937   5047.2270
## 13036       NA      59292   5088.5886
## 13037       NA      60504   5798.3656
## 13038       NA      61786   5326.5706
## 13039       NA      62150   6415.4351
## 13040       NA      62686   7365.1912
## 13041 69.59756      63261   6988.1789
## 13042 70.18780      64035   6336.5596
## 13043 69.32439      64413   6228.9678
## 13044 70.38293      64335   6129.9224
## 13045 69.55366      64717   6368.6364
## 13046 69.69756      65244   7020.0291
## 13047 68.65610      65652   6964.0681
## 13048 68.23659      68499   6968.5805
## 13049 68.70244      68755   7317.3103
## 13050 67.97073      69167   8088.2955
## 13051 68.10732      69507   8611.7834
## 13052 70.71220      70439   8732.4148
## 13053 71.21463      70763   9314.9376
## 13054 69.46829      72253   9688.1559
## 13055 70.72927      74205   9357.9606
## 13056 72.48293      75304   9145.2532
## 13057 71.56098      76417   9455.2242
## 13058 71.21220      77319  10462.7178
## 13059 71.74634      78846  11122.2838
## 13060 72.66829      80410  11110.1120
## 13061 72.77805      81131  11178.1276
## 13062 73.25366      81202  10914.7023
## 13063 71.08780      83723  10714.4384
## 13064 71.02927      82781  10198.4121
## 13065 72.66098      82475   9944.4708
## 13066 72.13171      82858  10789.9395
## 13067 72.21707      84600  11561.7810
## 13068 73.14390      85033  12701.6749
## 13069 73.16341      86956  12154.1211
## 13070 73.08293      87298  11972.6993
## 13071 73.19756      89770  12336.3433
## 13072 72.72439      87441  13663.8410
## 13073 74.27561      88303  13701.0526
## 13074 73.11951      89949  14259.7849
## 13075 73.22927      91359  14672.1634
## 13076 74.29512      93419  15157.5018
## 13077 74.30976      94677  15756.7105
## 13078 74.30000      95843  16267.1714
## 13079 72.84146      96762  16628.0992
## 13080 74.04634      97625  16989.9587
## 13081 77.23659      98462  15544.4639
## 13082       NA      99202  15713.4587
## 13083 31.56600    2317638    496.9905
## 13084 31.92500    2352370    498.5106
## 13085 32.30200    2388759    513.2090
## 13086 32.70500    2426864    513.7370
## 13087 33.13400    2466671    539.2367
## 13088 33.59000    2508226    568.3794
## 13089 34.07200    2551580    568.2204
## 13090 34.57200    2596798    558.5285
## 13091 35.08000    2644011    559.6355
## 13092 35.59000    2693344    596.2224
## 13093 36.09800    2744890    635.4581
## 13094 36.59900    2798727    644.8351
## 13095 37.09200    2854866    637.8457
## 13096 37.57200    2913347    639.1467
## 13097 38.03200    2974105    648.0017
## 13098 38.46800    3037158    645.1408
## 13099 38.88100    3102595    628.6974
## 13100 39.26800    3170503    615.5187
## 13101 39.62300    3240841    616.6497
## 13102 39.93600    3313506    630.3352
## 13103 40.19400    3388494    646.2404
## 13104 40.38600    3464113    650.3480
## 13105 40.50400    3540164    666.8070
## 13106 40.54500    3619854    638.4145
## 13107 40.50600    3707513    648.8327
## 13108 40.37700    3805304    598.5825
## 13109 40.14700    3916685    588.7487
## 13110 39.82700    4038154    612.3323
## 13111 39.43900    4156636    552.7608
## 13112 39.00900    4254434    543.9967
## 13113 38.56300    4319763    553.7180
## 13114 38.12200    4348663    562.9748
## 13115 37.71700    4347727    456.0351
## 13116 37.38400    4328965    464.3071
## 13117 37.15800    4309780    457.2919
## 13118 37.08300    4303953    421.2793
## 13119 37.19400    4312660    427.8023
## 13120 37.49600    4335295    400.5577
## 13121 37.98000    4381484    403.4097
## 13122 38.63400    4462374    388.2572
## 13123 39.44100    4584570    403.0499
## 13124 40.36900    4754069    364.0163
## 13125 41.37600    4965770    440.5612
## 13126 42.41900    5201074    459.8033
## 13127 43.46700    5433995    469.1316
## 13128 44.50200    5645629    471.8882
## 13129 45.51700    5829240    476.3288
## 13130 46.52000    5989641    500.9282
## 13131 47.50800    6133599    515.5781
## 13132 48.46800    6272735    520.2143
## 13133 49.38200    6415636    535.8207
## 13134 50.23400    6563238    556.8469
## 13135 51.01800    6712586    627.1159
## 13136 51.73100    6863975    740.3311
## 13137 52.37200    7017153    757.1692
## 13138 52.94100    7171909    588.2289
## 13139 53.44400    7328846    610.4901
## 13140 53.89500    7488427    622.5303
## 13141 54.30900    7650149    630.4825
## 13142 54.69600    7813207    649.7603
## 13143 55.06600    7976985    623.8891
## 13144       NA    8141343    629.9397
## 13145 65.65983    1646400   3612.0193
## 13146 66.08720    1702400   3777.4633
## 13147 66.43224    1750200   3951.8323
## 13148 66.70080    1795000   4240.0698
## 13149 66.91022    1841600   4004.5316
## 13150 67.08580    1886900   4214.5859
## 13151 67.25595    1934400   4529.6084
## 13152 67.44573    1977600   4984.8748
## 13153 67.67373    2012000   5562.4212
## 13154 67.95107    2042500   6237.3644
## 13155 68.27941    2074507   6997.3263
## 13156 68.65046    2112900   7723.0049
## 13157 69.04290    2152400   8590.7649
## 13158 69.44032    2193000   9325.7357
## 13159 69.83478    2229800   9732.9040
## 13160 70.21971    2262600   9974.4023
## 13161 70.59398    2293300  10572.7592
## 13162 70.96090    2325300  11141.7824
## 13163 71.32334    2353600  11863.9097
## 13164 71.68273    2383500  12834.3935
## 13165 72.19024    2413945  13954.1439
## 13166 72.58780    2532835  14737.5686
## 13167 72.68780    2646466  15106.5255
## 13168 73.03659    2681061  16187.2089
## 13169 73.29024    2732221  17280.6846
## 13170 73.89024    2735957  17149.6274
## 13171 74.24634    2733373  17396.3445
## 13172 74.54878    2774789  18987.0980
## 13173 74.69756    2846108  20596.3497
## 13174 74.94634    2930901  22032.2978
## 13175 75.29512    3047132  23273.1233
## 13176 75.64634    3135083  24133.1542
## 13177 75.94634    3230698  24973.8853
## 13178 76.04634    3313471  27140.4460
## 13179 76.19756    3419048  29220.8041
## 13180 76.29512    3524506  30380.4516
## 13181 76.59512    3670704  31349.8873
## 13182 76.89756    3796038  32835.8489
## 13183 77.30000    3927213  31043.6727
## 13184 77.55122    3958723  32557.6390
## 13185 77.95122    4027887  34890.7156
## 13186 78.25122    4138012  33598.4800
## 13187 78.55122    4175950  34599.4559
## 13188 79.03902    4114826  36710.4641
## 13189 79.49024    4166664  39857.3604
## 13190 79.99024    4265762  41799.2482
## 13191 80.14146    4401365  44160.2132
## 13192 80.44146    4588599  46179.6537
## 13193 80.79024    4839396  44602.3910
## 13194 81.24146    4987573  43332.6626
## 13195 81.54146    5076732  48752.9381
## 13196 81.74390    5183688  50714.4548
## 13197 81.99512    5312437  51680.2925
## 13198 82.24634    5399162  53299.9421
## 13199 82.49512    5469724  54682.9280
## 13200 82.74390    5535002  55646.6187
## 13201 82.84634    5607283  56885.7187
## 13202 83.09512    5612253  59484.6855
## 13203 83.29756    5638676  61373.6485
## 13204 83.59512    5703569  61340.1662
## 13205 83.74390    5685807  58982.4609
## 13206       NA    5453566  66176.3870
## 13207       NA       2833          NA
## 13208       NA       3077          NA
## 13209       NA       3367          NA
## 13210       NA       3703          NA
## 13211       NA       4063          NA
## 13212       NA       4460          NA
## 13213       NA       4895          NA
## 13214       NA       5362          NA
## 13215       NA       5857          NA
## 13216       NA       6354          NA
## 13217       NA       6854          NA
## 13218       NA       7372          NA
## 13219       NA       7892          NA
## 13220       NA       8429          NA
## 13221       NA       8977          NA
## 13222       NA       9556          NA
## 13223       NA      10147          NA
## 13224       NA      10791          NA
## 13225       NA      11481          NA
## 13226       NA      12244          NA
## 13227       NA      13097          NA
## 13228       NA      14030          NA
## 13229       NA      15032          NA
## 13230       NA      16175          NA
## 13231       NA      17517          NA
## 13232       NA      19127          NA
## 13233       NA      21028          NA
## 13234       NA      23157          NA
## 13235       NA      25334          NA
## 13236       NA      27280          NA
## 13237       NA      28814          NA
## 13238       NA      29852          NA
## 13239       NA      30458          NA
## 13240       NA      30765          NA
## 13241       NA      30950          NA
## 13242       NA      31164          NA
## 13243       NA      31434          NA
## 13244       NA      31731          NA
## 13245       NA      31240          NA
## 13246       NA      31084          NA
## 13247       NA      30519          NA
## 13248       NA      30600          NA
## 13249       NA      30777          NA
## 13250       NA      31472          NA
## 13251       NA      32488          NA
## 13252       NA      33011          NA
## 13253       NA      33441          NA
## 13254 74.54390      33811          NA
## 13255 74.53659      33964          NA
## 13256 75.58780      34238  32365.1159
## 13257       NA      34056  33579.2962
## 13258       NA      33435  35776.3142
## 13259 73.05366      34640  35011.9666
## 13260       NA      36607  33563.6001
## 13261 77.06829      37685  33118.7556
## 13262 77.21951      38825  32274.8906
## 13263 78.29268      39969  31507.8689
## 13264       NA      40574  29237.8461
## 13265       NA      40895  27093.7971
## 13266       NA      41608          NA
## 13267       NA      42310          NA
## 13268       NA      42846          NA
## 13269 69.92366    4068095          NA
## 13270 70.25085    4191667          NA
## 13271 70.47229    4238188          NA
## 13272 70.59493    4282017          NA
## 13273 70.63278    4327341          NA
## 13274 70.60337    4370983          NA
## 13275 70.52524    4411666          NA
## 13276 70.41854    4449367          NA
## 13277 70.30683    4483915          NA
## 13278 70.20571    4518607          NA
## 13279 70.13424    4538223          NA
## 13280 70.09949    4557449          NA
## 13281 70.09893    4596622          NA
## 13282 70.12507    4641445          NA
## 13283 70.17590    4689623          NA
## 13284 70.24488    4739105          NA
## 13285 70.32246    4789507          NA
## 13286 70.39861    4840501          NA
## 13287 70.46524    4890125          NA
## 13288 70.51990    4938973          NA
## 13289 70.40854    4979815          NA
## 13290 70.62927    5016105          NA
## 13291 70.68902    5055099          NA
## 13292 70.47902    5091971          NA
## 13293 70.75098    5127097          NA
## 13294 70.73463    5161768          NA
## 13295 71.02122    5193838          NA
## 13296 71.08878    5222840          NA
## 13297 71.20780    5250596          NA
## 13298 71.02634    5275942          NA
## 13299 70.93268    5299187          NA
## 13300 70.88293    5303294          NA
## 13301 71.79512    5305016   6654.9031
## 13302 72.44878    5325305   6755.5979
## 13303 72.30000    5346331   7146.6014
## 13304 72.25366    5361999   7542.1098
## 13305 72.65366    5373361   8024.3861
## 13306 72.70488    5383291   8484.2193
## 13307 72.55122    5390516   8818.2094
## 13308 72.90244    5396020   8799.8842
## 13309 73.05122    5388720   8914.5975
## 13310 73.40244    5378867   9221.5204
## 13311 73.60488    5376912   9640.8637
## 13312 73.60488    5373374  10177.7198
## 13313 73.95854    5372280  10717.1713
## 13314 73.90488    5372807  11425.8983
## 13315 74.20488    5373054  12395.7501
## 13316 74.20732    5374622  13734.4533
## 13317 74.70488    5379233  14487.7043
## 13318 74.90976    5386406  13679.0821
## 13319 75.11220    5391428  14526.4023
## 13320 75.95854    5398384  14890.3099
## 13321 76.10976    5407579  15066.8909
## 13322 76.41220    5413393  15149.2558
## 13323 76.81220    5418649  15546.8833
## 13324 76.56341    5423801  16342.2163
## 13325 77.16585    5430798  16636.4338
## 13326 77.16585    5439232  17105.6657
## 13327 77.26585    5446771  17730.1501
## 13328 77.66585    5454147  18167.4837
## 13329 76.86585    5458827  17360.7112
## 13330       NA    5447247  17923.1075
## 13331 68.97805    1584720          NA
## 13332 68.97805    1594131          NA
## 13333 68.97805    1603649          NA
## 13334 68.62195    1616971          NA
## 13335 68.66341    1632114          NA
## 13336 68.36585    1649160          NA
## 13337 69.01220    1669905          NA
## 13338 69.36585    1689528          NA
## 13339 68.91707    1704546          NA
## 13340 68.36098    1713874          NA
## 13341 68.60976    1724891          NA
## 13342 68.83415    1738335          NA
## 13343 69.05854    1752233          NA
## 13344 69.40488    1766697          NA
## 13345 70.16098    1776132          NA
## 13346 70.35854    1793581          NA
## 13347 70.30732    1820249          NA
## 13348 70.55610    1842377          NA
## 13349 70.70244    1862548          NA
## 13350 70.85366    1882599          NA
## 13351 71.10488    1901315          NA
## 13352 71.20488    1906531          NA
## 13353 71.05366    1910334          NA
## 13354 70.54146    1922321          NA
## 13355 70.90244    1932154          NA
## 13356 71.35122    1941641          NA
## 13357 71.80244    1965964          NA
## 13358 72.00244    1989776          NA
## 13359 72.44634    1995196          NA
## 13360 72.70488    1996351          NA
## 13361 73.20488    1998161          NA
## 13362 73.35366    1999429          NA
## 13363 73.30488    1996498          NA
## 13364 73.25366    1991746          NA
## 13365 73.40488    1989443          NA
## 13366 73.95854    1989872  13276.0731
## 13367 74.45854    1988628  13709.8774
## 13368 74.70732    1985956  14421.5753
## 13369 74.80732    1981629  14927.0345
## 13370 75.00976    1983045  15711.8164
## 13371 75.41220    1988925  16240.6569
## 13372 75.75854    1992060  16736.6666
## 13373 76.00732    1994530  17301.9338
## 13374 76.85854    1995733  17803.3780
## 13375 77.20732    1997012  18567.5622
## 13376 77.61220    2000474  19239.3999
## 13377 78.08659    2006868  20280.1519
## 13378 78.56098    2018122  21574.7534
## 13379 78.76585    2021316  22296.7050
## 13380 78.97073    2039669  20428.1699
## 13381 79.42195    2048583  20612.5895
## 13382 79.97073    2052843  20746.9884
## 13383 80.12439    2057159  20157.0053
## 13384 80.32195    2059953  19922.4743
## 13385 81.07805    2061980  20453.8334
## 13386 80.77561    2063531  20890.1664
## 13387 81.17561    2065042  21541.1764
## 13388 81.02927    2066388  22563.7589
## 13389 81.37805    2073894  23476.3699
## 13390 81.52927    2088385  24071.2824
## 13391 80.53171    2102419  22899.3607
## 13392       NA    2107007  24703.6332
## 13393 55.01595   14211632          NA
## 13394 55.45170   14483280          NA
## 13395 55.86912   14762137          NA
## 13396 56.25410   15045754          NA
## 13397 56.63264   15333414          NA
## 13398 56.98693   15621038          NA
## 13399 57.30722   15906000          NA
## 13400 57.62151   16189729          NA
## 13401 57.92332   16478258          NA
## 13402 58.21710   16772135          NA
## 13403 58.51624   17073320          NA
## 13404 58.80871   17384835          NA
## 13405 59.10990   17702798          NA
## 13406 59.39311   18024903          NA
## 13407 59.67350   18352225          NA
## 13408 59.97293   18688113          NA
## 13409 60.29301   19027575          NA
## 13410 60.61355   19373865          NA
## 13411 60.96680   19729124          NA
## 13412 61.33243   20104329          NA
## 13413 61.72891   20501052          NA
## 13414 62.10042   20918880          NA
## 13415 62.50765   21359036          NA
## 13416 62.82854   21809929          NA
## 13417 63.13600   22269272          NA
## 13418 63.42363   22740424          NA
## 13419 63.71776   23219508          NA
## 13420 63.99900   23705895          NA
## 13421 64.13297   24190637          NA
## 13422 64.23609   24669495          NA
## 13423 64.29304   25134374          NA
## 13424 64.34309   25593378          NA
## 13425 64.32873   26020298          NA
## 13426 64.16247   26428489          NA
## 13427 63.97521   26841261          NA
## 13428 63.86687   27247916          NA
## 13429 63.77695   27660218          NA
## 13430 63.61670   28081580          NA
## 13431 63.34498   28504891          NA
## 13432 63.20197   28948552          NA
## 13433 63.11008   29393017   7383.5578
## 13434 63.02552   29820320   7534.7305
## 13435 63.08503   30250201   7741.8767
## 13436 63.14096   30697300   7987.2439
## 13437 63.35687   31189665   8465.2036
## 13438 63.67864   31746502   8746.5797
## 13439 64.04387   32375205   9409.2900
## 13440 64.51911   33066727   9972.5145
## 13441 65.06705   33798831  10343.0155
## 13442 65.64353   34529570  10197.9933
## 13443 66.21605   35238631  10701.7784
## 13444 66.75397   35912140  11158.4543
## 13445 67.27437   36568506  11300.9281
## 13446 67.77179   37213359  11459.3853
## 13447 68.20777   37861447  11630.3405
## 13448 68.61396   38524668  11746.8397
## 13449 68.95842   39198032  11802.9003
## 13450 69.27615   39883677  11744.5974
## 13451 69.54213   40574734  11788.3116
## 13452 69.78132   41254483  11824.4002
## 13453 69.95199   41901130  10960.1744
## 13454       NA   42512407  11196.9262
## 13455 48.12300     117847          NA
## 13456 48.93900     121385          NA
## 13457 49.74900     125040          NA
## 13458 50.55500     128838          NA
## 13459 51.35700     132766          NA
## 13460 52.15700     136815          NA
## 13461 52.96200     140995          NA
## 13462 53.77100     145319          NA
## 13463 54.58400     149887          NA
## 13464 55.39600     154830          NA
## 13465 56.20300     160240          NA
## 13466 56.99800     166163          NA
## 13467 57.77400     172550          NA
## 13468 58.52200     179306          NA
## 13469 59.23300     186297          NA
## 13470 59.89900     193401          NA
## 13471 60.51500     200602          NA
## 13472 61.07900     207885          NA
## 13473 61.59100     215299          NA
## 13474 62.05000     222841          NA
## 13475 62.45300     230550   2374.2153
## 13476 62.79800     238423   2254.5597
## 13477 63.09100     246451   2144.7035
## 13478 63.33800     254566   2157.1169
## 13479 63.54700     262691   2093.9554
## 13480 63.72400     270787   1967.7218
## 13481 63.87200     278834   1907.0852
## 13482 63.99800     286871   2009.7583
## 13483 64.11400     294976   1978.9720
## 13484 64.23100     303272   2006.9173
## 13485 64.36500     311869   1994.5296
## 13486 64.52700     320781   2055.4642
## 13487 64.72500     330004   2251.7660
## 13488 64.96100     339501   2276.3275
## 13489 65.23700     349273   2391.8641
## 13490 65.55200     359276   2559.8570
## 13491 65.90300     369517   2528.9809
## 13492 66.27800     379998   2436.7480
## 13493 66.66500     390702   2400.5975
## 13494 67.05700     401592   2324.1561
## 13495 67.44200     412665   1938.8762
## 13496 67.81600     423949   1737.1076
## 13497 68.17500     435434   1643.9338
## 13498 68.51800     447016   1705.8031
## 13499 68.84500     458549   1773.7672
## 13500 69.15800     469918   1826.5052
## 13501 69.46200     481086   1871.0660
## 13502 69.76200     492133   1910.3176
## 13503 70.06300     503366   1976.1182
## 13504 70.36600     515182   1980.4062
## 13505 70.67400     527861   2099.3698
## 13506 70.98500     541522   2195.1151
## 13507 71.29600     556066   2177.5619
## 13508 71.60100     571329   2232.3884
## 13509 71.89600     587079   2195.3095
## 13510 72.17300     603133   2167.1554
## 13511 72.42400     619438   2234.0409
## 13512 72.64500     636030   2292.0909
## 13513 72.83500     652856   2321.0677
## 13514 72.99600     669821   2289.5289
## 13515 73.13200     686878   2136.2291
## 13516       NA     703995   2080.5940
## 13517 36.97600    2755967          NA
## 13518 37.37400    2814125          NA
## 13519 37.77300    2874215          NA
## 13520 38.17500    2936478          NA
## 13521 38.57800    3001160          NA
## 13522 38.98200    3068465          NA
## 13523 39.38400    3143654          NA
## 13524 39.78300    3227835          NA
## 13525 40.17900    3312735          NA
## 13526 40.57000    3386736          NA
## 13527 40.95700    3444569          NA
## 13528 41.34200    3472357          NA
## 13529 41.72700    3479792          NA
## 13530 42.11100    3512626          NA
## 13531 42.49400    3632986          NA
## 13532 42.87600    3880285          NA
## 13533 43.25900    4278974          NA
## 13534 43.63900    4802134          NA
## 13535 44.01300    5375018          NA
## 13536 44.37500    5892763          NA
## 13537 44.72600    6281138          NA
## 13538 45.06800    6511115          NA
## 13539 45.39400    6608040          NA
## 13540 45.69600    6618594          NA
## 13541 45.96100    6614713          NA
## 13542 46.14600    6648628          NA
## 13543 46.20000    6736751          NA
## 13544 46.11500    6862267          NA
## 13545 45.91200    7005226          NA
## 13546 45.63400    7133263          NA
## 13547 45.37800    7225089          NA
## 13548 45.26000    7274026          NA
## 13549 45.36100    7295380          NA
## 13550 45.72100    7315864          NA
## 13551 46.33700    7372592          NA
## 13552 47.15100    7491647          NA
## 13553 48.06700    7682683          NA
## 13554 48.96700    7936122          NA
## 13555 49.75400    8235064          NA
## 13556 50.39200    8553595          NA
## 13557 50.86900    8872250          NA
## 13558 51.21300    9186719          NA
## 13559 51.49200    9501335          NA
## 13560 51.76200    9815412          NA
## 13561 52.04300   10130251          NA
## 13562 52.34600   10446856          NA
## 13563 52.66900   10763904          NA
## 13564 52.99800   11080122          NA
## 13565 53.32600   11397188          NA
## 13566 53.65400   11717691          NA
## 13567 53.99000   12043886          NA
## 13568 54.34200   12376305          NA
## 13569 54.71300   12715487          NA
## 13570 55.10400   13063711    330.4188
## 13571 55.50900   13423571    345.7008
## 13572 55.92000   13797204    386.4378
## 13573 56.32400   14185635    407.4259
## 13574 56.70900   14589165    406.4272
## 13575 57.06800   15008225    425.4166
## 13576 57.39700   15442906    446.8542
## 13577 57.69700   15893219    444.7884
## 13578       NA   16359500    446.5194
## 13579 48.40600   17099836   3839.3811
## 13580 48.77700   17524533   3890.3726
## 13581 49.14200   17965733   4029.2755
## 13582 49.50900   18423157   4218.9639
## 13583 49.88800   18896303   4439.9069
## 13584 50.28400   19384838   4593.0082
## 13585 50.70500   19888259   4675.4432
## 13586 51.14800   20406863   4884.5437
## 13587 51.61500   20942147   4957.3820
## 13588 52.10600   21496075   5057.3971
## 13589 52.62000   22069783   5184.4745
## 13590 53.15700   22665265   5264.2753
## 13591 53.71300   23281517   5209.7410
## 13592 54.28100   23913090   5304.0413
## 13593 54.85600   24552540   5481.5966
## 13594 55.42800   25195184   5432.3460
## 13595 55.99000   25836890   5416.6085
## 13596 56.53800   26480915   5279.9080
## 13597 57.07100   27138966   5307.1861
## 13598 57.59000   27827325   5372.0969
## 13599 58.10700   28556771   5581.4528
## 13600 58.63700   29333095   5725.0263
## 13601 59.19100   30150448   5548.4700
## 13602 59.76600   30993762   5297.8328
## 13603 60.35300   31841588   5419.7223
## 13604 60.94600   32678876   5216.8801
## 13605 61.54000   33495956   5090.5312
## 13606 62.10900   34297727   5075.9692
## 13607 62.61900   35100905   5168.1390
## 13608 63.03500   35930056   5169.7850
## 13609 63.30700   36800507   5031.4639
## 13610 63.38400   37718952   4858.9642
## 13611 63.24700   38672611   4637.8660
## 13612 62.89400   39633754   4581.2183
## 13613 62.33100   40564061   4619.3882
## 13614 61.56100   41435761   4662.3969
## 13615 60.59500   42241007   4770.1782
## 13616 59.48900   42987456   4809.2182
## 13617 58.31500   43682259   4756.3872
## 13618 57.14400   44338551   4798.4475
## 13619 56.04800   44967713   4930.0255
## 13620 55.08900   45571272   4996.0785
## 13621 54.31000   46150913   5115.8810
## 13622 53.74900   46719203   5202.6877
## 13623 53.44400   47291610   5373.8070
## 13624 53.44700   47880595   5587.7934
## 13625 53.79500   48489464   5826.8262
## 13626 54.45200   49119766   6060.3942
## 13627 55.36000   49779472   6170.9053
## 13628 56.46000   50477013   5992.0273
## 13629 57.66900   51216967   6084.9680
## 13630 58.89500   52003759   6182.7939
## 13631 60.06000   52832659   6231.6208
## 13632 61.09900   53687125   6284.8602
## 13633 61.96800   54544184   6273.5663
## 13634 62.64900   55386369   6259.8397
## 13635 63.15300   56207649   6209.3659
## 13636 63.53800   57009751   6192.8924
## 13637 63.85700   57792520   6199.8917
## 13638 64.13100   58558267   6125.7353
## 13639 64.37900   59308690   5659.2069
## 13640       NA   60041996   5864.8205
## 13641 42.12021  572839530    325.5888
## 13642 42.74248  584939711    332.2302
## 13643 43.36654  597494450    336.2955
## 13644 43.99144  610498308    346.4460
## 13645 44.61552  623943328    365.3080
## 13646 45.23222  637823175    354.9886
## 13647 45.83522  652144171    351.3007
## 13648 46.41881  666908586    364.5386
## 13649 46.98240  682102192    372.6987
## 13650 47.52900  697706091    385.4159
## 13651 48.07017  713711358    398.7820
## 13652 48.62378  730107660    392.2305
## 13653 49.20068  746911710    376.5119
## 13654 49.80487  764174968    382.1238
## 13655 50.43138  781966557    382.6115
## 13656 51.07061  800335570    399.7486
## 13657 51.70773  819292532    400.5309
## 13658 52.32453  838819900    415.6778
## 13659 52.90934  858901743    430.7695
## 13660 53.45633  879510842    409.5658
## 13661 53.95884  900620583    425.8022
## 13662 54.41705  922226632    442.5133
## 13663 54.84127  944315173    448.6709
## 13664 55.24177  966836458    467.4143
## 13665 55.62693  989728262    475.8533
## 13666 56.00894 1012942302    490.2006
## 13667 56.40007 1036437878    502.1702
## 13668 56.80524 1060208544    511.6726
## 13669 57.23095 1084281159    542.2914
## 13670 57.67713 1108702366    558.9289
## 13671 58.14480 1133495194    576.1945
## 13672 58.63005 1158655616    575.2684
## 13673 59.12313 1184133340    595.3963
## 13674 59.61691 1209847774    607.9453
## 13675 60.10686 1235693864    630.6661
## 13676 60.58986 1261587780    660.0185
## 13677 61.06099 1287476203    690.3611
## 13678 61.52176 1313346375    702.0304
## 13679 61.96971 1339202700    726.2874
## 13680 62.40431 1365067953    766.5137
## 13681 62.82398 1390946065    783.1514
## 13682 63.22899 1416822995    803.0253
## 13683 63.62377 1442644044    817.0586
## 13684 64.01140 1468324423    860.9965
## 13685 64.39519 1493757846    909.9139
## 13686 64.78317 1518861546    962.1547
## 13687 65.17993 1543610686   1018.9303
## 13688 65.58771 1568003175   1075.6207
## 13689 66.00525 1592010815   1093.9391
## 13690 66.42786 1615610187   1152.6504
## 13691 66.84877 1638792927   1221.1817
## 13692 67.25832 1661532158   1265.8857
## 13693 67.64634 1683740452   1317.6022
## 13694 68.00772 1705761545   1378.8330
## 13695 68.34020 1727632022   1455.2711
## 13696 68.64190 1749417067   1543.0481
## 13697 68.91616 1771187426   1641.0013
## 13698 69.17133 1792883164   1725.6227
## 13699 69.41227 1814455018   1813.7778
## 13700 69.64362 1835776769   1862.8755
## 13701 69.86785 1856882402   1745.1997
## 13702       NA 1877902324   1869.2833
## 13703 42.12021  572839530    325.5888
## 13704 42.74248  584939711    332.2302
## 13705 43.36654  597494450    336.2955
## 13706 43.99144  610498308    346.4460
## 13707 44.61552  623943328    365.3080
## 13708 45.23222  637823175    354.9886
## 13709 45.83522  652144171    351.3007
## 13710 46.41881  666908586    364.5386
## 13711 46.98240  682102192    372.6987
## 13712 47.52900  697706091    385.4159
## 13713 48.07017  713711358    398.7820
## 13714 48.62378  730107660    392.2305
## 13715 49.20068  746911710    376.5119
## 13716 49.80487  764174968    382.1238
## 13717 50.43138  781966557    382.6115
## 13718 51.07061  800335570    399.7486
## 13719 51.70773  819292532    400.5309
## 13720 52.32453  838819900    415.6778
## 13721 52.90934  858901743    430.7695
## 13722 53.45633  879510842    409.5658
## 13723 53.95884  900620583    425.8022
## 13724 54.41705  922226632    442.5133
## 13725 54.84127  944315173    448.6709
## 13726 55.24177  966836458    467.4143
## 13727 55.62693  989728262    475.8533
## 13728 56.00894 1012942302    490.2006
## 13729 56.40007 1036437878    502.1702
## 13730 56.80524 1060208544    511.6726
## 13731 57.23095 1084281159    542.2914
## 13732 57.67713 1108702366    558.9289
## 13733 58.14480 1133495194    576.1945
## 13734 58.63005 1158655616    575.2684
## 13735 59.12313 1184133340    595.3963
## 13736 59.61691 1209847774    607.9453
## 13737 60.10686 1235693864    630.6661
## 13738 60.58986 1261587780    660.0185
## 13739 61.06099 1287476203    690.3611
## 13740 61.52176 1313346375    702.0304
## 13741 61.96971 1339202700    726.2874
## 13742 62.40431 1365067953    766.5137
## 13743 62.82398 1390946065    783.1514
## 13744 63.22899 1416822995    803.0253
## 13745 63.62377 1442644044    817.0586
## 13746 64.01140 1468324423    860.9965
## 13747 64.39519 1493757846    909.9139
## 13748 64.78317 1518861546    962.1547
## 13749 65.17993 1543610686   1018.9303
## 13750 65.58771 1568003175   1075.6207
## 13751 66.00525 1592010815   1093.9391
## 13752 66.42786 1615610187   1152.6504
## 13753 66.84877 1638792927   1221.1817
## 13754 67.25832 1661532158   1265.8857
## 13755 67.64634 1683740452   1317.6022
## 13756 68.00772 1705761545   1378.8330
## 13757 68.34020 1727632022   1455.2711
## 13758 68.64190 1749417067   1543.0481
## 13759 68.91616 1771187426   1641.0013
## 13760 69.17133 1792883164   1725.6227
## 13761 69.41227 1814455018   1813.7778
## 13762 69.64362 1835776769   1862.8755
## 13763 69.86785 1856882402   1745.1997
## 13764       NA 1877902324   1869.2833
## 13765 31.69700    2842718          NA
## 13766 32.12500    2895609          NA
## 13767 32.55000    2951041          NA
## 13768 32.97500    3009061          NA
## 13769 33.40200    3069735          NA
## 13770 33.82800    3133155          NA
## 13771 34.24800    3199348          NA
## 13772 34.65600    3268392          NA
## 13773 35.05100    3340426          NA
## 13774 35.43200    3415572          NA
## 13775 35.80700    3494011          NA
## 13776 36.18600    3575896          NA
## 13777 36.57500    3661442          NA
## 13778 36.97400    3750780          NA
## 13779 37.37800    3844094          NA
## 13780 37.76700    3941613          NA
## 13781 38.11800    4041792          NA
## 13782 38.41700    4144552          NA
## 13783 38.66200    4253085          NA
## 13784 38.86100    4371711          NA
## 13785 39.03300    4502603          NA
## 13786 39.20600    4646478          NA
## 13787 39.41000    4799435          NA
## 13788 39.67100    4953154          NA
## 13789 40.00500    5096478          NA
## 13790 40.42300    5220748          NA
## 13791 40.93100    5328167          NA
## 13792 41.51300    5419808          NA
## 13793 42.14900    5485288          NA
## 13794 42.82500    5511582          NA
## 13795 43.52400    5492620          NA
## 13796 44.23200    5420179          NA
## 13797 44.93200    5305449          NA
## 13798 45.61100    5185712          NA
## 13799 46.25700    5111371          NA
## 13800 46.85500    5118084          NA
## 13801 47.39500    5221925          NA
## 13802 47.88400    5411653          NA
## 13803 48.33300    5661934          NA
## 13804 48.75400    5933884          NA
## 13805 49.16600    6199396          NA
## 13806 49.59200    6447791          NA
## 13807 50.05000    6688225          NA
## 13808 50.55000    6935665          NA
## 13809 51.09500    7213354          NA
## 13810 51.68600    7535931          NA
## 13811 52.31500    7907407          NA
## 13812 52.96000    8315144          NA
## 13813 53.60000    8736932   2310.3325
## 13814 54.21900    9142258   2319.2174
## 13815 54.80000    9508372   2352.4160
## 13816 55.32500    9830695   2169.7059
## 13817 55.79100   10113648   1137.1298
## 13818 56.20000   10355030   1256.4444
## 13819 56.55200   10554882   1274.2396
## 13820 56.85500   10715657   1119.6514
## 13821 57.12000   10832520          NA
## 13822 57.36500   10910774          NA
## 13823 57.60400   10975924          NA
## 13824 57.84600   11062114          NA
## 13825 58.09500   11193729          NA
## 13826       NA   11381377          NA
## 13827 69.10927   30455000   6215.0363
## 13828 69.48049   30739250   6886.5391
## 13829 69.51902   31023366   7502.6412
## 13830 69.68122   31296651   8150.8314
## 13831 70.39976   31609195   8498.6474
## 13832 70.80927   31954292   8932.5570
## 13833 71.05512   32283194   9482.2161
## 13834 71.25293   32682947   9772.7632
## 13835 71.53780   33113134  10282.1365
## 13836 71.05756   33441054  11088.1617
## 13837 72.02732   33814531  11436.1928
## 13838 71.63024   34224490  11824.5576
## 13839 72.81805   34604469  12647.8061
## 13840 72.61073   34988947  13483.0705
## 13841 72.96976   35373335  14085.9078
## 13842 73.31878   35757900  14009.9711
## 13843 73.64268   36137812  14320.6804
## 13844 74.13195   36511638  14576.3987
## 13845 74.29561   36864898  14647.9292
## 13846 74.81878   37191330  14525.3951
## 13847 75.34927   37491165  14727.4892
## 13848 75.52854   37758631  14603.7949
## 13849 76.13415   37986012  14697.3189
## 13850 75.90902   38171525  14884.7853
## 13851 76.29537   38330364  15087.6497
## 13852 76.25951   38469512  15382.0593
## 13853 76.51049   38584624  15835.1040
## 13854 76.72805   38684815  16670.2098
## 13855 76.74707   38766939  17482.3311
## 13856 76.81366   38827764  18297.4999
## 13857 76.83756   38867322  18970.0735
## 13858 76.97122   38966376  19403.6013
## 13859 77.41000   39157685  19488.2234
## 13860 77.54659   39361262  19187.4502
## 13861 77.90146   39549108  19551.4183
## 13862 77.98073   39724050  20002.0701
## 13863 78.12049   39889852  20448.8796
## 13864 78.60415   40057389  21117.3233
## 13865 78.66585   40223509  21953.9709
## 13866 78.71707   40386875  22847.0199
## 13867 78.96585   40567864  23938.2967
## 13868 79.36829   40850412  24707.6930
## 13869 79.56829   41431558  25026.4346
## 13870 79.61951   42187645  25310.7983
## 13871 79.87073   42921895  25654.6984
## 13872 80.17073   43653155  26146.1644
## 13873 80.82195   44397319  26762.6421
## 13874 80.87317   45226803  27218.8172
## 13875 81.17561   45954106  27025.6812
## 13876 81.47561   46362946  25779.2915
## 13877 81.62683   46576897  25702.7042
## 13878 82.47561   46742697  25402.9611
## 13879 82.42683   46773055  24635.1756
## 13880 83.07805   46620045  24361.2573
## 13881 83.22927   46480882  24772.3413
## 13882 82.83171   46444832  25742.3688
## 13883 83.32927   46484062  26500.3139
## 13884 83.28293   46593236  27224.3980
## 13885 83.43171   46797754  27725.8055
## 13886 83.83171   47134837  28101.5271
## 13887 82.33415   47363419  24939.1873
## 13888       NA   47326687  26238.7808
## 13889 59.36900    9874476          NA
## 13890 59.76900   10111639    617.4554
## 13891 60.17700   10352180    626.1352
## 13892 60.61100   10597516    627.0334
## 13893 61.07800   10849977    636.3681
## 13894 61.57900   11110825    637.1934
## 13895 62.10400   11380665    653.3376
## 13896 62.63100   11657650    678.8833
## 13897 63.14400   11937607    701.4215
## 13898 63.63400   12214948    738.3941
## 13899 64.09700   12485736    750.1673
## 13900 64.52800   12747831    744.3462
## 13901 64.93400   13002234    726.7867
## 13902 65.32100   13252033    763.4122
## 13903 65.69400   13501931    778.0989
## 13904 66.06700   13755141    810.5660
## 13905 66.45900   14012894    822.1925
## 13906 66.87400   14273495    848.3521
## 13907 67.30800   14533691    880.2699
## 13908 67.75100   14788866    920.4772
## 13909 68.17100   15035840    958.2852
## 13910 68.52900   15272822    997.1861
## 13911 68.80100   15501210   1023.1839
## 13912 68.97500   15724641   1057.2017
## 13913 69.05700   15948501   1095.5139
## 13914 69.07900   16176282   1134.0858
## 13915 69.08600   16408861   1166.7067
## 13916 69.12100   16643956   1170.0755
## 13917 69.20900   16878186   1182.3684
## 13918 69.35200   17106752   1193.3935
## 13919 69.50900   17325769   1253.7193
## 13920 69.62000   17535732   1295.6884
## 13921 69.63900   17736827   1337.3621
## 13922 69.55700   17924827   1414.6465
## 13923 69.40300   18094474   1479.8596
## 13924 69.25900   18242917   1548.5492
## 13925 69.23700   18367290   1596.5092
## 13926 69.41900   18470897   1689.2432
## 13927 69.84500   18564595   1759.6846
## 13928 70.50300   18663293   1825.6545
## 13929 71.33300   18777606   1923.4135
## 13930 72.23300   18911727   1880.2589
## 13931 73.08500   19062476   1939.3462
## 13932 73.79900   19224036   2037.2820
## 13933 74.33700   19387153   2130.1390
## 13934 74.69500   19544988   2244.8213
## 13935 74.90400   19695977   2398.4324
## 13936 75.03700   19842044   2542.5936
## 13937 75.15700   19983984   2674.7463
## 13938 75.28600   20123508   2750.2019
## 13939 75.43900   20261738   2950.3907
## 13940 75.61400   20398496   3176.9203
## 13941 75.79600   20425000   3462.9367
## 13942 75.97400   20585000   3552.6986
## 13943 76.14700   20778000   3694.3004
## 13944 76.31600   20970000   3843.7807
## 13945 76.48200   21203000   3972.1026
## 13946 76.64800   21444000   4067.9931
## 13947 76.81200   21670000   4157.2839
## 13948 76.97800   21803000   4228.1492
## 13949 77.14400   21919000   4053.7262
## 13950       NA   22156000   4156.9681
## 13951       NA      51199          NA
## 13952       NA      51196          NA
## 13953       NA      50961          NA
## 13954       NA      50529          NA
## 13955       NA      49928          NA
## 13956       NA      49209          NA
## 13957       NA      48351          NA
## 13958       NA      47388          NA
## 13959       NA      46399          NA
## 13960       NA      45529          NA
## 13961       NA      44878          NA
## 13962       NA      44489          NA
## 13963       NA      44318          NA
## 13964       NA      44304          NA
## 13965       NA      44322          NA
## 13966       NA      44271          NA
## 13967       NA      44140          NA
## 13968       NA      43944   4409.9346
## 13969       NA      43703   4607.6283
## 13970       NA      43452   4986.3390
## 13971       NA      43201   5438.6081
## 13972       NA      42963   5553.3321
## 13973 63.95122      42733   5613.8030
## 13974       NA      42477   5714.6579
## 13975       NA      42198   6262.4418
## 13976       NA      41874   6850.4835
## 13977       NA      41479   7666.5592
## 13978 65.95122      41041   8255.9242
## 13979       NA      40633   9108.1104
## 13980       NA      40354   9673.6386
## 13981       NA      40260  10169.1341
## 13982       NA      40381   9949.6082
## 13983 67.95122      40691  10295.3185
## 13984       NA      41141  10875.3310
## 13985       NA      41618  11320.6557
## 13986       NA      42077  11799.9228
## 13987       NA      42472  12373.2190
## 13988 70.03634      42857  13098.8251
## 13989       NA      43225  12924.0919
## 13990       NA      43622  13218.8247
## 13991       NA      44083  14394.2467
## 13992       NA      44602  14974.1469
## 13993 71.33659      45168  14988.7432
## 13994       NA      45749  14216.3111
## 13995       NA      46323  14601.2463
## 13996       NA      46852  15841.4530
## 13997       NA      47333  16174.4661
## 13998       NA      47769  16123.0952
## 13999       NA      48178  17773.2447
## 14000       NA      48599  17023.8704
## 14001       NA      49011  16888.1393
## 14002       NA      49442  17011.5776
## 14003       NA      49881  16774.6987
## 14004       NA      50328  17574.3069
## 14005       NA      50776  18740.9030
## 14006       NA      51204  18717.4288
## 14007       NA      51629  19288.0577
## 14008       NA      52036  19317.7874
## 14009       NA      52438  19681.4914
## 14010       NA      52834  20472.3844
## 14011       NA      53192  17404.4136
## 14012       NA      53546  17112.2076
## 14013 56.73900      89698          NA
## 14014 57.58900      90718          NA
## 14015 58.42800      91892          NA
## 14016 59.24600      93214          NA
## 14017 60.03500      94637          NA
## 14018 60.78100      96138          NA
## 14019 61.47100      97721          NA
## 14020 62.09900      99370          NA
## 14021 62.67000     101028          NA
## 14022 63.18800     102599          NA
## 14023 63.66700     104016          NA
## 14024 64.12400     105244          NA
## 14025 64.57800     106303          NA
## 14026 65.04000     107311          NA
## 14027 65.51500     108389          NA
## 14028 65.99700     109634          NA
## 14029 66.47800     111074          NA
## 14030 66.94000     112685   4295.0502
## 14031 67.37400     114398   4667.0069
## 14032 67.77500     116148   4771.0294
## 14033 68.14400     117828   4598.5722
## 14034 68.48400     119435   4822.9755
## 14035 68.80300     120987   4860.4402
## 14036 69.11000     122571   5035.8488
## 14037 69.40700     124296   5326.7660
## 14038 69.69800     126246   5679.1395
## 14039 69.98500     128448   6385.6705
## 14040 70.26600     130868   6513.5105
## 14041 70.54000     133364   7280.0173
## 14042 70.81000     135787   7792.2636
## 14043 71.07400     138019   8424.4954
## 14044 71.33500     140001   8336.4304
## 14045 71.59200     141758   8887.8908
## 14046 71.84300     143402   8837.2375
## 14047 72.08700     145080   8874.6603
## 14048 72.32300     146871   8919.6966
## 14049 72.54700     148837   9059.1181
## 14050 72.75900     150920   8872.0699
## 14051 72.95800     153023   9300.2158
## 14052 73.14400     154988   9427.5269
## 14053 73.31900     156737   9326.8713
## 14054 73.48600     158184   8926.5950
## 14055 73.64800     159392   8895.8353
## 14056 73.80800     160530   9209.4559
## 14057 73.96600     161821   9799.9326
## 14058 74.12200     163408   9664.9377
## 14059 74.27600     165378  10141.4431
## 14060 74.42600     167644  10173.5996
## 14061 74.57100     170011  10528.4702
## 14062 74.71200     172223  10099.2300
## 14063 74.85200     174092  10151.0465
## 14064 74.99300     175538  10619.4653
## 14065 75.13800     176654  10531.2885
## 14066 75.28600     177505  10148.0989
## 14067 75.44000     178307  10280.1226
## 14068 75.59600     179131  10093.6180
## 14069 75.75200     180028  10409.5373
## 14070 75.90700     180955  10718.8600
## 14071 76.05700     181890  10975.8265
## 14072 76.20300     182795  10914.5027
## 14073 76.34300     183629   8651.3493
## 14074       NA     184401   9183.6709
## 14075       NA       3898          NA
## 14076       NA       3996          NA
## 14077       NA       4078          NA
## 14078       NA       4179          NA
## 14079       NA       4302          NA
## 14080       NA       4471          NA
## 14081       NA       4675          NA
## 14082       NA       4922          NA
## 14083       NA       5194          NA
## 14084       NA       5461          NA
## 14085       NA       5707          NA
## 14086       NA       5945          NA
## 14087       NA       6156          NA
## 14088       NA       6370          NA
## 14089       NA       6601          NA
## 14090       NA       6882          NA
## 14091       NA       7250          NA
## 14092       NA       7713          NA
## 14093       NA       8191          NA
## 14094       NA       8557          NA
## 14095       NA       8777          NA
## 14096       NA       8675          NA
## 14097 73.21951       8372          NA
## 14098 72.76829       8296          NA
## 14099 72.91951       9067          NA
## 14100 72.66829      11066          NA
## 14101 73.51951      14561          NA
## 14102 73.67073      19274          NA
## 14103 74.27073      24374          NA
## 14104 74.32195      28723          NA
## 14105 74.52195      31522          NA
## 14106 75.92439      32441          NA
## 14107 75.42439      31816          NA
## 14108 75.57317      30194          NA
## 14109 75.77317      28482          NA
## 14110 75.97317      27320          NA
## 14111 76.12439      26854          NA
## 14112 76.27317      26910          NA
## 14113 76.47317      27388          NA
## 14114 76.67317      28122          NA
## 14115 76.87317      28935          NA
## 14116 76.97317      29847          NA
## 14117 77.17317      30913          NA
## 14118 77.37317      32055          NA
## 14119 77.52195      33187          NA
## 14120 77.67317      34252          NA
## 14121 77.87317      35240          NA
## 14122 78.02195      36138          NA
## 14123 78.22195      36880          NA
## 14124 78.37317      37380          NA
## 14125 78.52195      37582          NA
## 14126 78.72195      37451          NA
## 14127 78.87317      37012          NA
## 14128 79.02195      36458          NA
## 14129 79.17317      36018          NA
## 14130 79.32195      35865          NA
## 14131 79.52195      36061          NA
## 14132 79.62195      36569          NA
## 14133 79.82195      37264          NA
## 14134 79.97317      38002          NA
## 14135 80.12195      38659          NA
## 14136       NA      39239          NA
## 14137 59.26000      80970   1967.9458
## 14138 59.89100      82168   2027.0489
## 14139 60.47400      83239   2074.8887
## 14140 61.00600      84200   1922.6923
## 14141 61.48800      85117   1971.7757
## 14142 61.92400      86009   1968.5944
## 14143 62.31800      86907   1948.2531
## 14144 62.68200      87779   1745.1944
## 14145 63.02600      88663   1840.2685
## 14146 63.36000      89565   1873.8524
## 14147 63.69100      90501   2053.7517
## 14148 64.02600      91490   2091.8483
## 14149 64.36500      92511   2603.1534
## 14150 64.71100      93559   2288.2465
## 14151 65.06900      94618   2063.0578
## 14152 65.44500      95665   1885.2247
## 14153 65.84400      96694   2058.7070
## 14154 66.26300      97708   2306.8704
## 14155 66.69800      98688   2507.2763
## 14156 67.14300      99649   2567.0802
## 14157 67.59000     100566   2605.8074
## 14158 68.03100     101439   2702.5762
## 14159 68.45600     102255   2801.0342
## 14160 68.85600     103035   2840.1130
## 14161 69.22300     103776   3005.5573
## 14162 69.55100     104503   3169.0802
## 14163 69.83500     105217   3323.8309
## 14164 70.07800     105905   3316.7020
## 14165 70.28300     106533   3761.2142
## 14166 70.45100     107071   3794.9176
## 14167 70.58000     107489   3937.0060
## 14168 70.66900     107772   3971.2579
## 14169 70.72300     107941   4217.9282
## 14170 70.74800     108036   4393.3545
## 14171 70.75200     108059   4337.6184
## 14172 70.74500     108043   4675.1984
## 14173 70.73600     107983   4738.0418
## 14174 70.73100     107895   4908.1172
## 14175 70.73800     107807   5113.0393
## 14176 70.76200     107763   5253.7625
## 14177 70.80900     107787   5338.6844
## 14178 70.88200     107893   5426.6805
## 14179 70.97700     108095   5705.8978
## 14180 71.08700     108322   6074.9412
## 14181 71.20800     108520   6313.3665
## 14182 71.33100     108617   6464.6997
## 14183 71.44900     108602   6917.9856
## 14184 71.55400     108516   7153.5329
## 14185 71.64300     108401   7190.0986
## 14186 71.71600     108293   7098.0769
## 14187 71.77600     108260   6782.8265
## 14188 71.82700     108315   6738.2806
## 14189 71.87900     108435   6809.5146
## 14190 71.93900     108624   6965.0578
## 14191 72.01000     108868   7029.0711
## 14192 72.09500     109135   7207.1708
## 14193 72.19300     109467   7483.4715
## 14194 72.30000     109826   7583.5276
## 14195 72.41500     110210   7787.7734
## 14196 72.53400     110593   7792.1577
## 14197 72.65800     110947   7354.6462
## 14198       NA     111269   7387.2708
## 14199 40.37790  227233184   1135.8406
## 14200 40.82471  232567007   1120.4620
## 14201 41.26042  238121604   1160.6861
## 14202 41.68336  243893375   1202.3810
## 14203 42.09457  249873656   1231.6689
## 14204 42.49596  256059849   1259.0017
## 14205 42.89269  262454482   1244.9355
## 14206 43.28889  269072404   1199.8165
## 14207 43.68946  275937546   1204.9749
## 14208 44.09532  283080501   1284.2355
## 14209 44.50799  290526233   1379.4974
## 14210 44.92788  298284475   1448.5731
## 14211 45.35143  306359650   1447.1971
## 14212 45.77361  314761504   1469.6070
## 14213 46.19101  323500333   1542.9951
## 14214 46.59978  332583481   1499.1609
## 14215 46.99678  342018937   1538.0302
## 14216 47.38072  351808760   1538.4495
## 14217 47.74998  361939456   1487.5170
## 14218 48.10372  372404237   1502.8638
## 14219 48.44501  383188215   1515.6671
## 14220 48.76772  394281992   1462.5341
## 14221 49.07463  405688898   1406.0833
## 14222 49.36281  417425712   1332.2541
## 14223 49.62588  429521914   1321.5635
## 14224 49.85290  441988004   1307.5110
## 14225 50.03048  454835677   1295.3092
## 14226 50.15150  468053103   1298.3030
## 14227 50.21606  481594337   1316.3495
## 14228 50.23251  495407422   1313.6942
## 14229 50.21457  509451875   1308.8006
## 14230 50.17995  523726960   1279.5435
## 14231 50.14116  538246439   1243.3630
## 14232 50.10570  553020385   1201.6308
## 14233 50.07376  568072070   1182.5134
## 14234 50.04763  583413287   1189.9917
## 14235 50.03610  599067774   1218.2272
## 14236 50.05418  615054341   1238.1788
## 14237 50.11842  631400703   1236.2200
## 14238 50.24477  648148338   1230.2591
## 14239 50.45021  665327588   1240.4518
## 14240 50.75002  682956023   1260.0411
## 14241 51.14816  701066197   1304.5708
## 14242 51.64212  719716165   1322.6375
## 14243 52.22477  738983247   1372.5485
## 14244 52.88643  758924664   1416.7190
## 14245 53.61421  779566846   1462.7478
## 14246 54.38543  800908567   1511.3988
## 14247 55.17446  822945490   1546.6716
## 14248 55.96112  845655209   1550.9627
## 14249 56.72547  869025115   1598.6486
## 14250 57.45600  893045863   1620.7438
## 14251 58.14958  917725880   1620.6056
## 14252 58.80139  943039474   1656.6833
## 14253 59.40480  968958352   1690.6272
## 14254 59.95283  995458498   1692.6743
## 14255 60.44239 1022530245   1668.8508
## 14256 60.88002 1050162810   1664.7540
## 14257 61.27303 1078319512   1664.9522
## 14258 61.62745 1106957870   1663.2647
## 14259 61.95111 1136046775   1588.3935
## 14260       NA 1165563987   1612.0585
## 14261 40.37790  227191484   1135.4982
## 14262 40.82471  232524118   1120.1648
## 14263 41.26042  238077562   1160.3642
## 14264 41.68336  243848199   1202.0212
## 14265 42.09457  249827334   1231.2936
## 14266 42.49596  256012349   1258.6609
## 14267 42.89269  262405783   1244.5096
## 14268 43.28889  269022493   1199.3925
## 14269 43.68946  275886412   1204.5139
## 14270 44.09532  283028136   1283.8188
## 14271 44.50799  290472633   1379.0598
## 14272 44.92788  298229780   1448.0454
## 14273 45.35143  306303621   1446.6347
## 14274 45.77361  314704612   1468.9871
## 14275 46.19101  323442396   1542.4095
## 14276 46.59978  332524189   1498.5574
## 14277 46.99678  341958433   1537.2998
## 14278 47.38072  351746974   1537.8205
## 14279 47.74998  361877306   1486.6775
## 14280 48.10372  372341551   1501.8655
## 14281 48.44152  383124954   1514.7659
## 14282 48.76424  394217957   1461.7517
## 14283 49.07141  405624485   1405.3264
## 14284 49.35957  417361377   1331.5226
## 14285 49.62287  429457197   1320.8098
##  [ reached 'max' / getOption("max.print") -- omitted 2207 rows ]
df_wdi_extra <- WDI(
  country = "all", 
  indicator = c(lifeExp = "SP.DYN.LE00.IN", pop = "SP.POP.TOTL", gdpPercap = "NY.GDP.PCAP.KD"), 
  extra = TRUE
)
df_wdi_extra
##                                            country iso2c iso3c year status
## 1                                      Afghanistan    AF   AFG 1993       
## 2                                      Afghanistan    AF   AFG 1997       
## 3                                      Afghanistan    AF   AFG 1994       
## 4                                      Afghanistan    AF   AFG 1995       
## 5                                      Afghanistan    AF   AFG 2001       
## 6                                      Afghanistan    AF   AFG 1998       
## 7                                      Afghanistan    AF   AFG 1999       
## 8                                      Afghanistan    AF   AFG 2007       
## 9                                      Afghanistan    AF   AFG 2008       
## 10                                     Afghanistan    AF   AFG 1980       
## 11                                     Afghanistan    AF   AFG 1996       
## 12                                     Afghanistan    AF   AFG 1969       
## 13                                     Afghanistan    AF   AFG 1970       
## 14                                     Afghanistan    AF   AFG 1971       
## 15                                     Afghanistan    AF   AFG 1968       
## 16                                     Afghanistan    AF   AFG 1986       
## 17                                     Afghanistan    AF   AFG 1987       
## 18                                     Afghanistan    AF   AFG 2002       
## 19                                     Afghanistan    AF   AFG 1985       
## 20                                     Afghanistan    AF   AFG 1977       
## 21                                     Afghanistan    AF   AFG 1978       
## 22                                     Afghanistan    AF   AFG 1979       
## 23                                     Afghanistan    AF   AFG 1965       
## 24                                     Afghanistan    AF   AFG 1966       
## 25                                     Afghanistan    AF   AFG 1967       
## 26                                     Afghanistan    AF   AFG 2009       
## 27                                     Afghanistan    AF   AFG 2010       
## 28                                     Afghanistan    AF   AFG 2011       
## 29                                     Afghanistan    AF   AFG 2012       
## 30                                     Afghanistan    AF   AFG 2000       
## 31                                     Afghanistan    AF   AFG 1960       
## 32                                     Afghanistan    AF   AFG 2003       
## 33                                     Afghanistan    AF   AFG 1962       
## 34                                     Afghanistan    AF   AFG 1963       
## 35                                     Afghanistan    AF   AFG 1964       
## 36                                     Afghanistan    AF   AFG 2019       
## 37                                     Afghanistan    AF   AFG 2020       
## 38                                     Afghanistan    AF   AFG 1981       
## 39                                     Afghanistan    AF   AFG 1982       
## 40                                     Afghanistan    AF   AFG 1983       
## 41                                     Afghanistan    AF   AFG 1984       
## 42                                     Afghanistan    AF   AFG 1975       
## 43                                     Afghanistan    AF   AFG 1972       
## 44                                     Afghanistan    AF   AFG 1973       
## 45                                     Afghanistan    AF   AFG 1961       
## 46                                     Afghanistan    AF   AFG 2005       
## 47                                     Afghanistan    AF   AFG 1976       
## 48                                     Afghanistan    AF   AFG 2018       
## 49                                     Afghanistan    AF   AFG 1992       
## 50                                     Afghanistan    AF   AFG 1974       
## 51                                     Afghanistan    AF   AFG 2006       
## 52                                     Afghanistan    AF   AFG 1990       
## 53                                     Afghanistan    AF   AFG 2021       
## 54                                     Afghanistan    AF   AFG 2004       
## 55                                     Afghanistan    AF   AFG 1989       
## 56                                     Afghanistan    AF   AFG 2015       
## 57                                     Afghanistan    AF   AFG 2013       
## 58                                     Afghanistan    AF   AFG 2017       
## 59                                     Afghanistan    AF   AFG 2014       
## 60                                     Afghanistan    AF   AFG 1991       
## 61                                     Afghanistan    AF   AFG 2016       
## 62                                     Afghanistan    AF   AFG 1988       
## 63                     Africa Eastern and Southern    ZH   AFE 1973       
## 64                     Africa Eastern and Southern    ZH   AFE 1976       
## 65                     Africa Eastern and Southern    ZH   AFE 1963       
## 66                     Africa Eastern and Southern    ZH   AFE 1964       
## 67                     Africa Eastern and Southern    ZH   AFE 1975       
## 68                     Africa Eastern and Southern    ZH   AFE 1971       
## 69                     Africa Eastern and Southern    ZH   AFE 1972       
## 70                     Africa Eastern and Southern    ZH   AFE 1974       
## 71                     Africa Eastern and Southern    ZH   AFE 2014       
## 72                     Africa Eastern and Southern    ZH   AFE 2015       
## 73                     Africa Eastern and Southern    ZH   AFE 2012       
## 74                     Africa Eastern and Southern    ZH   AFE 1965       
## 75                     Africa Eastern and Southern    ZH   AFE 1970       
## 76                     Africa Eastern and Southern    ZH   AFE 2010       
## 77                     Africa Eastern and Southern    ZH   AFE 2016       
## 78                     Africa Eastern and Southern    ZH   AFE 1983       
## 79                     Africa Eastern and Southern    ZH   AFE 2013       
## 80                     Africa Eastern and Southern    ZH   AFE 1985       
## 81                     Africa Eastern and Southern    ZH   AFE 2011       
## 82                     Africa Eastern and Southern    ZH   AFE 1987       
## 83                     Africa Eastern and Southern    ZH   AFE 2017       
## 84                     Africa Eastern and Southern    ZH   AFE 2018       
## 85                     Africa Eastern and Southern    ZH   AFE 1986       
## 86                     Africa Eastern and Southern    ZH   AFE 2020       
## 87                     Africa Eastern and Southern    ZH   AFE 2021       
## 88                     Africa Eastern and Southern    ZH   AFE 1993       
## 89                     Africa Eastern and Southern    ZH   AFE 1994       
## 90                     Africa Eastern and Southern    ZH   AFE 1995       
## 91                     Africa Eastern and Southern    ZH   AFE 1996       
## 92                     Africa Eastern and Southern    ZH   AFE 1984       
## 93                     Africa Eastern and Southern    ZH   AFE 1960       
## 94                     Africa Eastern and Southern    ZH   AFE 1961       
## 95                     Africa Eastern and Southern    ZH   AFE 1962       
## 96                     Africa Eastern and Southern    ZH   AFE 2001       
## 97                     Africa Eastern and Southern    ZH   AFE 2002       
## 98                     Africa Eastern and Southern    ZH   AFE 2019       
## 99                     Africa Eastern and Southern    ZH   AFE 2004       
## 100                    Africa Eastern and Southern    ZH   AFE 1966       
## 101                    Africa Eastern and Southern    ZH   AFE 1967       
## 102                    Africa Eastern and Southern    ZH   AFE 1968       
## 103                    Africa Eastern and Southern    ZH   AFE 1969       
## 104                    Africa Eastern and Southern    ZH   AFE 2009       
## 105                    Africa Eastern and Southern    ZH   AFE 2000       
## 106                    Africa Eastern and Southern    ZH   AFE 1997       
## 107                    Africa Eastern and Southern    ZH   AFE 1998       
## 108                    Africa Eastern and Southern    ZH   AFE 1999       
## 109                    Africa Eastern and Southern    ZH   AFE 1978       
## 110                    Africa Eastern and Southern    ZH   AFE 1988       
## 111                    Africa Eastern and Southern    ZH   AFE 1989       
## 112                    Africa Eastern and Southern    ZH   AFE 1977       
## 113                    Africa Eastern and Southern    ZH   AFE 1982       
## 114                    Africa Eastern and Southern    ZH   AFE 1979       
## 115                    Africa Eastern and Southern    ZH   AFE 1980       
## 116                    Africa Eastern and Southern    ZH   AFE 1981       
## 117                    Africa Eastern and Southern    ZH   AFE 1990       
## 118                    Africa Eastern and Southern    ZH   AFE 1991       
## 119                    Africa Eastern and Southern    ZH   AFE 1992       
## 120                    Africa Eastern and Southern    ZH   AFE 2006       
## 121                    Africa Eastern and Southern    ZH   AFE 2007       
## 122                    Africa Eastern and Southern    ZH   AFE 2008       
## 123                    Africa Eastern and Southern    ZH   AFE 2003       
## 124                    Africa Eastern and Southern    ZH   AFE 2005       
## 125                     Africa Western and Central    ZI   AFW 1993       
## 126                     Africa Western and Central    ZI   AFW 2005       
## 127                     Africa Western and Central    ZI   AFW 1994       
## 128                     Africa Western and Central    ZI   AFW 1995       
## 129                     Africa Western and Central    ZI   AFW 1996       
## 130                     Africa Western and Central    ZI   AFW 1997       
## 131                     Africa Western and Central    ZI   AFW 1998       
## 132                     Africa Western and Central    ZI   AFW 1999       
## 133                     Africa Western and Central    ZI   AFW 1967       
## 134                     Africa Western and Central    ZI   AFW 1968       
## 135                     Africa Western and Central    ZI   AFW 1979       
## 136                     Africa Western and Central    ZI   AFW 1966       
## 137                     Africa Western and Central    ZI   AFW 1985       
## 138                     Africa Western and Central    ZI   AFW 1986       
## 139                     Africa Western and Central    ZI   AFW 1969       
## 140                     Africa Western and Central    ZI   AFW 1984       
## 141                     Africa Western and Central    ZI   AFW 1976       
## 142                     Africa Western and Central    ZI   AFW 1977       
## 143                     Africa Western and Central    ZI   AFW 1978       
## 144                     Africa Western and Central    ZI   AFW 1992       
## 145                     Africa Western and Central    ZI   AFW 1963       
## 146                     Africa Western and Central    ZI   AFW 1964       
## 147                     Africa Western and Central    ZI   AFW 1965       
## 148                     Africa Western and Central    ZI   AFW 2007       
## 149                     Africa Western and Central    ZI   AFW 2008       
## 150                     Africa Western and Central    ZI   AFW 2009       
## 151                     Africa Western and Central    ZI   AFW 1970       
## 152                     Africa Western and Central    ZI   AFW 2000       
## 153                     Africa Western and Central    ZI   AFW 2001       
## 154                     Africa Western and Central    ZI   AFW 2002       
## 155                     Africa Western and Central    ZI   AFW 1960       
## 156                     Africa Western and Central    ZI   AFW 1961       
## 157                     Africa Western and Central    ZI   AFW 1962       
## 158                     Africa Western and Central    ZI   AFW 2017       
## 159                     Africa Western and Central    ZI   AFW 1980       
## 160                     Africa Western and Central    ZI   AFW 1981       
## 161                     Africa Western and Central    ZI   AFW 1982       
## 162                     Africa Western and Central    ZI   AFW 1983       
## 163                     Africa Western and Central    ZI   AFW 2020       
## 164                     Africa Western and Central    ZI   AFW 2021       
## 165                     Africa Western and Central    ZI   AFW 1971       
## 166                     Africa Western and Central    ZI   AFW 1972       
## 167                     Africa Western and Central    ZI   AFW 1973       
## 168                     Africa Western and Central    ZI   AFW 1974       
## 169                     Africa Western and Central    ZI   AFW 1975       
## 170                     Africa Western and Central    ZI   AFW 2016       
## 171                     Africa Western and Central    ZI   AFW 2003       
## 172                     Africa Western and Central    ZI   AFW 2004       
## 173                     Africa Western and Central    ZI   AFW 2019       
## 174                     Africa Western and Central    ZI   AFW 2006       
## 175                     Africa Western and Central    ZI   AFW 1987       
## 176                     Africa Western and Central    ZI   AFW 2018       
## 177                     Africa Western and Central    ZI   AFW 1989       
## 178                     Africa Western and Central    ZI   AFW 2010       
## 179                     Africa Western and Central    ZI   AFW 1991       
## 180                     Africa Western and Central    ZI   AFW 1988       
## 181                     Africa Western and Central    ZI   AFW 2012       
## 182                     Africa Western and Central    ZI   AFW 1990       
## 183                     Africa Western and Central    ZI   AFW 2014       
## 184                     Africa Western and Central    ZI   AFW 2011       
## 185                     Africa Western and Central    ZI   AFW 2013       
## 186                     Africa Western and Central    ZI   AFW 2015       
## 187                                        Albania    AL   ALB 1969       
## 188                                        Albania    AL   ALB 1971       
## 189                                        Albania    AL   ALB 1968       
## 190                                        Albania    AL   ALB 2009       
## 191                                        Albania    AL   ALB 1970       
## 192                                        Albania    AL   ALB 1967       
## 193                                        Albania    AL   ALB 1972       
## 194                                        Albania    AL   ALB 1973       
## 195                                        Albania    AL   ALB 1960       
## 196                                        Albania    AL   ALB 2011       
## 197                                        Albania    AL   ALB 1966       
## 198                                        Albania    AL   ALB 2008       
## 199                                        Albania    AL   ALB 1980       
## 200                                        Albania    AL   ALB 2010       
## 201                                        Albania    AL   ALB 1982       
## 202                                        Albania    AL   ALB 2012       
## 203                                        Albania    AL   ALB 2013       
## 204                                        Albania    AL   ALB 2014       
## 205                                        Albania    AL   ALB 2015       
## 206                                        Albania    AL   ALB 2016       
## 207                                        Albania    AL   ALB 2017       
## 208                                        Albania    AL   ALB 2018       
## 209                                        Albania    AL   ALB 2019       
## 210                                        Albania    AL   ALB 1991       
## 211                                        Albania    AL   ALB 1992       
## 212                                        Albania    AL   ALB 1993       
## 213                                        Albania    AL   ALB 1994       
## 214                                        Albania    AL   ALB 1995       
## 215                                        Albania    AL   ALB 1983       
## 216                                        Albania    AL   ALB 1984       
## 217                                        Albania    AL   ALB 1998       
## 218                                        Albania    AL   ALB 1999       
## 219                                        Albania    AL   ALB 1961       
## 220                                        Albania    AL   ALB 2002       
## 221                                        Albania    AL   ALB 1962       
## 222                                        Albania    AL   ALB 1963       
## 223                                        Albania    AL   ALB 1964       
## 224                                        Albania    AL   ALB 1965       
## 225                                        Albania    AL   ALB 2007       
## 226                                        Albania    AL   ALB 1979       
## 227                                        Albania    AL   ALB 1981       
## 228                                        Albania    AL   ALB 1986       
## 229                                        Albania    AL   ALB 1996       
## 230                                        Albania    AL   ALB 1997       
## 231                                        Albania    AL   ALB 1985       
## 232                                        Albania    AL   ALB 1977       
## 233                                        Albania    AL   ALB 1974       
## 234                                        Albania    AL   ALB 1975       
## 235                                        Albania    AL   ALB 1976       
## 236                                        Albania    AL   ALB 1989       
## 237                                        Albania    AL   ALB 2020       
## 238                                        Albania    AL   ALB 2021       
## 239                                        Albania    AL   ALB 1988       
## 240                                        Albania    AL   ALB 2000       
## 241                                        Albania    AL   ALB 1990       
## 242                                        Albania    AL   ALB 1987       
## 243                                        Albania    AL   ALB 2006       
## 244                                        Albania    AL   ALB 1978       
## 245                                        Albania    AL   ALB 2003       
## 246                                        Albania    AL   ALB 2005       
## 247                                        Albania    AL   ALB 2001       
## 248                                        Albania    AL   ALB 2004       
## 249                                        Algeria    DZ   DZA 1987       
## 250                                        Algeria    DZ   DZA 1963       
## 251                                        Algeria    DZ   DZA 1985       
## 252                                        Algeria    DZ   DZA 1986       
## 253                                        Algeria    DZ   DZA 1991       
## 254                                        Algeria    DZ   DZA 1988       
## 255                                        Algeria    DZ   DZA 1989       
## 256                                        Algeria    DZ   DZA 1990       
## 257                                        Algeria    DZ   DZA 1972       
## 258                                        Algeria    DZ   DZA 1973       
## 259                                        Algeria    DZ   DZA 1964       
## 260                                        Algeria    DZ   DZA 1998       
## 261                                        Algeria    DZ   DZA 1976       
## 262                                        Algeria    DZ   DZA 1977       
## 263                                        Algeria    DZ   DZA 1978       
## 264                                        Algeria    DZ   DZA 1965       
## 265                                        Algeria    DZ   DZA 1971       
## 266                                        Algeria    DZ   DZA 1960       
## 267                                        Algeria    DZ   DZA 1969       
## 268                                        Algeria    DZ   DZA 1962       
## 269                                        Algeria    DZ   DZA 2000       
## 270                                        Algeria    DZ   DZA 2001       
## 271                                        Algeria    DZ   DZA 1961       
## 272                                        Algeria    DZ   DZA 2003       
## 273                                        Algeria    DZ   DZA 1992       
## 274                                        Algeria    DZ   DZA 1993       
## 275                                        Algeria    DZ   DZA 2002       
## 276                                        Algeria    DZ   DZA 1995       
## 277                                        Algeria    DZ   DZA 1970       
## 278                                        Algeria    DZ   DZA 1984       
## 279                                        Algeria    DZ   DZA 2010       
## 280                                        Algeria    DZ   DZA 2011       
## 281                                        Algeria    DZ   DZA 2012       
## 282                                        Algeria    DZ   DZA 1974       
## 283                                        Algeria    DZ   DZA 1975       
## 284                                        Algeria    DZ   DZA 2017       
## 285                                        Algeria    DZ   DZA 2018       
## 286                                        Algeria    DZ   DZA 2004       
## 287                                        Algeria    DZ   DZA 2005       
## 288                                        Algeria    DZ   DZA 1994       
## 289                                        Algeria    DZ   DZA 1967       
## 290                                        Algeria    DZ   DZA 1968       
## 291                                        Algeria    DZ   DZA 2009       
## 292                                        Algeria    DZ   DZA 1996       
## 293                                        Algeria    DZ   DZA 1997       
## 294                                        Algeria    DZ   DZA 2014       
## 295                                        Algeria    DZ   DZA 1999       
## 296                                        Algeria    DZ   DZA 1979       
## 297                                        Algeria    DZ   DZA 2013       
## 298                                        Algeria    DZ   DZA 1981       
## 299                                        Algeria    DZ   DZA 2019       
## 300                                        Algeria    DZ   DZA 1983       
## 301                                        Algeria    DZ   DZA 1966       
## 302                                        Algeria    DZ   DZA 2020       
## 303                                        Algeria    DZ   DZA 1982       
## 304                                        Algeria    DZ   DZA 2015       
## 305                                        Algeria    DZ   DZA 2016       
## 306                                        Algeria    DZ   DZA 2006       
## 307                                        Algeria    DZ   DZA 2007       
## 308                                        Algeria    DZ   DZA 2008       
## 309                                        Algeria    DZ   DZA 1980       
## 310                                        Algeria    DZ   DZA 2021       
## 311                                 American Samoa    AS   ASM 1969       
## 312                                 American Samoa    AS   ASM 1968       
## 313                                 American Samoa    AS   ASM 2007       
## 314                                 American Samoa    AS   ASM 1972       
## 315                                 American Samoa    AS   ASM 1973       
## 316                                 American Samoa    AS   ASM 1971       
## 317                                 American Samoa    AS   ASM 1967       
## 318                                 American Samoa    AS   ASM 1966       
## 319                                 American Samoa    AS   ASM 2006       
## 320                                 American Samoa    AS   ASM 1970       
## 321                                 American Samoa    AS   ASM 2009       
## 322                                 American Samoa    AS   ASM 1982       
## 323                                 American Samoa    AS   ASM 2010       
## 324                                 American Samoa    AS   ASM 2020       
## 325                                 American Samoa    AS   ASM 2008       
## 326                                 American Samoa    AS   ASM 2013       
## 327                                 American Samoa    AS   ASM 2014       
## 328                                 American Samoa    AS   ASM 2011       
## 329                                 American Samoa    AS   ASM 2012       
## 330                                 American Samoa    AS   ASM 2017       
## 331                                 American Samoa    AS   ASM 1991       
## 332                                 American Samoa    AS   ASM 1992       
## 333                                 American Samoa    AS   ASM 1993       
## 334                                 American Samoa    AS   ASM 1994       
## 335                                 American Samoa    AS   ASM 1995       
## 336                                 American Samoa    AS   ASM 1983       
## 337                                 American Samoa    AS   ASM 1984       
## 338                                 American Samoa    AS   ASM 1985       
## 339                                 American Samoa    AS   ASM 1986       
## 340                                 American Samoa    AS   ASM 1987       
## 341                                 American Samoa    AS   ASM 2015       
## 342                                 American Samoa    AS   ASM 2016       
## 343                                 American Samoa    AS   ASM 1960       
## 344                                 American Samoa    AS   ASM 1961       
## 345                                 American Samoa    AS   ASM 1962       
## 346                                 American Samoa    AS   ASM 1963       
## 347                                 American Samoa    AS   ASM 1964       
## 348                                 American Samoa    AS   ASM 1965       
## 349                                 American Samoa    AS   ASM 1981       
## 350                                 American Samoa    AS   ASM 1996       
## 351                                 American Samoa    AS   ASM 1997       
## 352                                 American Samoa    AS   ASM 1998       
## 353                                 American Samoa    AS   ASM 1999       
## 354                                 American Samoa    AS   ASM 1974       
## 355                                 American Samoa    AS   ASM 1975       
## 356                                 American Samoa    AS   ASM 1976       
## 357                                 American Samoa    AS   ASM 1977       
## 358                                 American Samoa    AS   ASM 2018       
## 359                                 American Samoa    AS   ASM 2019       
## 360                                 American Samoa    AS   ASM 1980       
## 361                                 American Samoa    AS   ASM 2021       
## 362                                 American Samoa    AS   ASM 1990       
## 363                                 American Samoa    AS   ASM 2003       
## 364                                 American Samoa    AS   ASM 1988       
## 365                                 American Samoa    AS   ASM 1989       
## 366                                 American Samoa    AS   ASM 2001       
## 367                                 American Samoa    AS   ASM 2002       
## 368                                 American Samoa    AS   ASM 2004       
## 369                                 American Samoa    AS   ASM 2005       
## 370                                 American Samoa    AS   ASM 1979       
## 371                                 American Samoa    AS   ASM 2000       
## 372                                 American Samoa    AS   ASM 1978       
## 373                                        Andorra    AD   AND 1989       
## 374                                        Andorra    AD   AND 1988       
## 375                                        Andorra    AD   AND 1966       
## 376                                        Andorra    AD   AND 1990       
## 377                                        Andorra    AD   AND 1991       
## 378                                        Andorra    AD   AND 1992       
## 379                                        Andorra    AD   AND 1961       
## 380                                        Andorra    AD   AND 1962       
## 381                                        Andorra    AD   AND 1963       
## 382                                        Andorra    AD   AND 1973       
## 383                                        Andorra    AD   AND 1965       
## 384                                        Andorra    AD   AND 1979       
## 385                                        Andorra    AD   AND 1980       
## 386                                        Andorra    AD   AND 1964       
## 387                                        Andorra    AD   AND 1986       
## 388                                        Andorra    AD   AND 1970       
## 389                                        Andorra    AD   AND 1960       
## 390                                        Andorra    AD   AND 1975       
## 391                                        Andorra    AD   AND 2001       
## 392                                        Andorra    AD   AND 1974       
## 393                                        Andorra    AD   AND 2003       
## 394                                        Andorra    AD   AND 1993       
## 395                                        Andorra    AD   AND 1994       
## 396                                        Andorra    AD   AND 2002       
## 397                                        Andorra    AD   AND 1996       
## 398                                        Andorra    AD   AND 1971       
## 399                                        Andorra    AD   AND 1972       
## 400                                        Andorra    AD   AND 2000       
## 401                                        Andorra    AD   AND 1987       
## 402                                        Andorra    AD   AND 2012       
## 403                                        Andorra    AD   AND 2004       
## 404                                        Andorra    AD   AND 1976       
## 405                                        Andorra    AD   AND 1977       
## 406                                        Andorra    AD   AND 1978       
## 407                                        Andorra    AD   AND 1969       
## 408                                        Andorra    AD   AND 2005       
## 409                                        Andorra    AD   AND 1995       
## 410                                        Andorra    AD   AND 1968       
## 411                                        Andorra    AD   AND 1999       
## 412                                        Andorra    AD   AND 2009       
## 413                                        Andorra    AD   AND 2010       
## 414                                        Andorra    AD   AND 2011       
## 415                                        Andorra    AD   AND 2014       
## 416                                        Andorra    AD   AND 2017       
## 417                                        Andorra    AD   AND 2018       
## 418                                        Andorra    AD   AND 2013       
## 419                                        Andorra    AD   AND 1982       
## 420                                        Andorra    AD   AND 1983       
## 421                                        Andorra    AD   AND 1984       
## 422                                        Andorra    AD   AND 1967       
## 423                                        Andorra    AD   AND 1998       
## 424                                        Andorra    AD   AND 2006       
## 425                                        Andorra    AD   AND 2015       
## 426                                        Andorra    AD   AND 1985       
## 427                                        Andorra    AD   AND 1997       
## 428                                        Andorra    AD   AND 2021       
## 429                                        Andorra    AD   AND 2007       
## 430                                        Andorra    AD   AND 2016       
## 431                                        Andorra    AD   AND 2019       
## 432                                        Andorra    AD   AND 2020       
## 433                                        Andorra    AD   AND 1981       
## 434                                        Andorra    AD   AND 2008       
## 435                                         Angola    AO   AGO 1964       
## 436                                         Angola    AO   AGO 2019       
## 437                                         Angola    AO   AGO 1965       
## 438                                         Angola    AO   AGO 2004       
## 439                                         Angola    AO   AGO 1966       
## 440                                         Angola    AO   AGO 1963       
## 441                                         Angola    AO   AGO 2003       
## 442                                         Angola    AO   AGO 2016       
## 443                                         Angola    AO   AGO 2009       
## 444                                         Angola    AO   AGO 1967       
## 445                                         Angola    AO   AGO 2002       
## 446                                         Angola    AO   AGO 2007       
## 447                                         Angola    AO   AGO 2017       
## 448                                         Angola    AO   AGO 2005       
## 449                                         Angola    AO   AGO 2006       
## 450                                         Angola    AO   AGO 2011       
## 451                                         Angola    AO   AGO 2008       
## 452                                         Angola    AO   AGO 1979       
## 453                                         Angola    AO   AGO 2001       
## 454                                         Angola    AO   AGO 1985       
## 455                                         Angola    AO   AGO 1986       
## 456                                         Angola    AO   AGO 1987       
## 457                                         Angola    AO   AGO 2020       
## 458                                         Angola    AO   AGO 2021       
## 459                                         Angola    AO   AGO 1977       
## 460                                         Angola    AO   AGO 1978       
## 461                                         Angola    AO   AGO 1992       
## 462                                         Angola    AO   AGO 2010       
## 463                                         Angola    AO   AGO 1994       
## 464                                         Angola    AO   AGO 2012       
## 465                                         Angola    AO   AGO 1983       
## 466                                         Angola    AO   AGO 1984       
## 467                                         Angola    AO   AGO 1960       
## 468                                         Angola    AO   AGO 1961       
## 469                                         Angola    AO   AGO 1962       
## 470                                         Angola    AO   AGO 1974       
## 471                                         Angola    AO   AGO 2018       
## 472                                         Angola    AO   AGO 1976       
## 473                                         Angola    AO   AGO 1990       
## 474                                         Angola    AO   AGO 1991       
## 475                                         Angola    AO   AGO 2013       
## 476                                         Angola    AO   AGO 1980       
## 477                                         Angola    AO   AGO 1968       
## 478                                         Angola    AO   AGO 1969       
## 479                                         Angola    AO   AGO 2000       
## 480                                         Angola    AO   AGO 2014       
## 481                                         Angola    AO   AGO 2015       
## 482                                         Angola    AO   AGO 1973       
## 483                                         Angola    AO   AGO 1982       
## 484                                         Angola    AO   AGO 1988       
## 485                                         Angola    AO   AGO 1989       
## 486                                         Angola    AO   AGO 1981       
## 487                                         Angola    AO   AGO 1999       
## 488                                         Angola    AO   AGO 1996       
## 489                                         Angola    AO   AGO 1997       
## 490                                         Angola    AO   AGO 1998       
## 491                                         Angola    AO   AGO 1993       
## 492                                         Angola    AO   AGO 1995       
## 493                                         Angola    AO   AGO 1975       
## 494                                         Angola    AO   AGO 1971       
## 495                                         Angola    AO   AGO 1972       
## 496                                         Angola    AO   AGO 1970       
## 497                            Antigua and Barbuda    AG   ATG 1992       
## 498                            Antigua and Barbuda    AG   ATG 1987       
## 499                            Antigua and Barbuda    AG   ATG 1991       
## 500                            Antigua and Barbuda    AG   ATG 1962       
## 501                            Antigua and Barbuda    AG   ATG 1977       
## 502                            Antigua and Barbuda    AG   ATG 1989       
## 503                            Antigua and Barbuda    AG   ATG 1990       
## 504                            Antigua and Barbuda    AG   ATG 1986       
## 505                            Antigua and Barbuda    AG   ATG 1968       
## 506                            Antigua and Barbuda    AG   ATG 1978       
## 507                            Antigua and Barbuda    AG   ATG 1960       
## 508                            Antigua and Barbuda    AG   ATG 1961       
## 509                            Antigua and Barbuda    AG   ATG 1972       
## 510                            Antigua and Barbuda    AG   ATG 2021       
## 511                            Antigua and Barbuda    AG   ATG 1988       
## 512                            Antigua and Barbuda    AG   ATG 1998       
## 513                            Antigua and Barbuda    AG   ATG 1999       
## 514                            Antigua and Barbuda    AG   ATG 2000       
## 515                            Antigua and Barbuda    AG   ATG 2001       
## 516                            Antigua and Barbuda    AG   ATG 2002       
## 517                            Antigua and Barbuda    AG   ATG 1993       
## 518                            Antigua and Barbuda    AG   ATG 1994       
## 519                            Antigua and Barbuda    AG   ATG 1969       
## 520                            Antigua and Barbuda    AG   ATG 1970       
## 521                            Antigua and Barbuda    AG   ATG 1971       
## 522                            Antigua and Barbuda    AG   ATG 1996       
## 523                            Antigua and Barbuda    AG   ATG 1997       
## 524                            Antigua and Barbuda    AG   ATG 1973       
## 525                            Antigua and Barbuda    AG   ATG 1974       
## 526                            Antigua and Barbuda    AG   ATG 1975       
## 527                            Antigua and Barbuda    AG   ATG 1976       
## 528                            Antigua and Barbuda    AG   ATG 2013       
## 529                            Antigua and Barbuda    AG   ATG 2014       
## 530                            Antigua and Barbuda    AG   ATG 1963       
## 531                            Antigua and Barbuda    AG   ATG 1964       
## 532                            Antigua and Barbuda    AG   ATG 1965       
## 533                            Antigua and Barbuda    AG   ATG 1966       
## 534                            Antigua and Barbuda    AG   ATG 1967       
## 535                            Antigua and Barbuda    AG   ATG 2008       
## 536                            Antigua and Barbuda    AG   ATG 2009       
## 537                            Antigua and Barbuda    AG   ATG 2020       
## 538                            Antigua and Barbuda    AG   ATG 2012       
## 539                            Antigua and Barbuda    AG   ATG 1979       
## 540                            Antigua and Barbuda    AG   ATG 2010       
## 541                            Antigua and Barbuda    AG   ATG 2011       
## 542                            Antigua and Barbuda    AG   ATG 1982       
## 543                            Antigua and Barbuda    AG   ATG 1983       
## 544                            Antigua and Barbuda    AG   ATG 1980       
## 545                            Antigua and Barbuda    AG   ATG 1981       
## 546                            Antigua and Barbuda    AG   ATG 2004       
## 547                            Antigua and Barbuda    AG   ATG 2005       
## 548                            Antigua and Barbuda    AG   ATG 1984       
## 549                            Antigua and Barbuda    AG   ATG 1985       
## 550                            Antigua and Barbuda    AG   ATG 1995       
## 551                            Antigua and Barbuda    AG   ATG 2019       
## 552                            Antigua and Barbuda    AG   ATG 2006       
## 553                            Antigua and Barbuda    AG   ATG 2003       
## 554                            Antigua and Barbuda    AG   ATG 2015       
## 555                            Antigua and Barbuda    AG   ATG 2016       
## 556                            Antigua and Barbuda    AG   ATG 2007       
## 557                            Antigua and Barbuda    AG   ATG 2018       
## 558                            Antigua and Barbuda    AG   ATG 2017       
## 559                                     Arab World    1A   ARB 1963       
## 560                                     Arab World    1A   ARB 2003       
## 561                                     Arab World    1A   ARB 2004       
## 562                                     Arab World    1A   ARB 1962       
## 563                                     Arab World    1A   ARB 1966       
## 564                                     Arab World    1A   ARB 2008       
## 565                                     Arab World    1A   ARB 1964       
## 566                                     Arab World    1A   ARB 1961       
## 567                                     Arab World    1A   ARB 1960       
## 568                                     Arab World    1A   ARB 2016       
## 569                                     Arab World    1A   ARB 2018       
## 570                                     Arab World    1A   ARB 1965       
## 571                                     Arab World    1A   ARB 2006       
## 572                                     Arab World    1A   ARB 2007       
## 573                                     Arab World    1A   ARB 1978       
## 574                                     Arab World    1A   ARB 2005       
## 575                                     Arab World    1A   ARB 2010       
## 576                                     Arab World    1A   ARB 2015       
## 577                                     Arab World    1A   ARB 1986       
## 578                                     Arab World    1A   ARB 1987       
## 579                                     Arab World    1A   ARB 2019       
## 580                                     Arab World    1A   ARB 2020       
## 581                                     Arab World    1A   ARB 2021       
## 582                                     Arab World    1A   ARB 1991       
## 583                                     Arab World    1A   ARB 2009       
## 584                                     Arab World    1A   ARB 1995       
## 585                                     Arab World    1A   ARB 2011       
## 586                                     Arab World    1A   ARB 2012       
## 587                                     Arab World    1A   ARB 2013       
## 588                                     Arab World    1A   ARB 1984       
## 589                                     Arab World    1A   ARB 1985       
## 590                                     Arab World    1A   ARB 2002       
## 591                                     Arab World    1A   ARB 1973       
## 592                                     Arab World    1A   ARB 2017       
## 593                                     Arab World    1A   ARB 1975       
## 594                                     Arab World    1A   ARB 1976       
## 595                                     Arab World    1A   ARB 1977       
## 596                                     Arab World    1A   ARB 1969       
## 597                                     Arab World    1A   ARB 1979       
## 598                                     Arab World    1A   ARB 1967       
## 599                                     Arab World    1A   ARB 1968       
## 600                                     Arab World    1A   ARB 2001       
## 601                                     Arab World    1A   ARB 1970       
## 602                                     Arab World    1A   ARB 2014       
## 603                                     Arab World    1A   ARB 1972       
## 604                                     Arab World    1A   ARB 1990       
## 605                                     Arab World    1A   ARB 1982       
## 606                                     Arab World    1A   ARB 1988       
## 607                                     Arab World    1A   ARB 1989       
## 608                                     Arab World    1A   ARB 1981       
## 609                                     Arab World    1A   ARB 1996       
## 610                                     Arab World    1A   ARB 1983       
## 611                                     Arab World    1A   ARB 1980       
## 612                                     Arab World    1A   ARB 2000       
## 613                                     Arab World    1A   ARB 1971       
## 614                                     Arab World    1A   ARB 1997       
## 615                                     Arab World    1A   ARB 1999       
## 616                                     Arab World    1A   ARB 1992       
## 617                                     Arab World    1A   ARB 1974       
## 618                                     Arab World    1A   ARB 1994       
## 619                                     Arab World    1A   ARB 1998       
## 620                                     Arab World    1A   ARB 1993       
## 621                                      Argentina    AR   ARG 1982       
## 622                                      Argentina    AR   ARG 1987       
## 623                                      Argentina    AR   ARG 1960       
## 624                                      Argentina    AR   ARG 1968       
## 625                                      Argentina    AR   ARG 1986       
## 626                                      Argentina    AR   ARG 1981       
## 627                                      Argentina    AR   ARG 1972       
## 628                                      Argentina    AR   ARG 1984       
## 629                                      Argentina    AR   ARG 1985       
## 630                                      Argentina    AR   ARG 1967       
## 631                                      Argentina    AR   ARG 1973       
## 632                                      Argentina    AR   ARG 1965       
## 633                                      Argentina    AR   ARG 1995       
## 634                                      Argentina    AR   ARG 1996       
## 635                                      Argentina    AR   ARG 2021       
## 636                                      Argentina    AR   ARG 1983       
## 637                                      Argentina    AR   ARG 1999       
## 638                                      Argentina    AR   ARG 1988       
## 639                                      Argentina    AR   ARG 1997       
## 640                                      Argentina    AR   ARG 1998       
## 641                                      Argentina    AR   ARG 1991       
## 642                                      Argentina    AR   ARG 1966       
## 643                                      Argentina    AR   ARG 1993       
## 644                                      Argentina    AR   ARG 1994       
## 645                                      Argentina    AR   ARG 2007       
## 646                                      Argentina    AR   ARG 1969       
## 647                                      Argentina    AR   ARG 1970       
## 648                                      Argentina    AR   ARG 1971       
## 649                                      Argentina    AR   ARG 2012       
## 650                                      Argentina    AR   ARG 2013       
## 651                                      Argentina    AR   ARG 2000       
## 652                                      Argentina    AR   ARG 1989       
## 653                                      Argentina    AR   ARG 1990       
## 654                                      Argentina    AR   ARG 1963       
## 655                                      Argentina    AR   ARG 1964       
## 656                                      Argentina    AR   ARG 2005       
## 657                                      Argentina    AR   ARG 2006       
## 658                                      Argentina    AR   ARG 2020       
## 659                                      Argentina    AR   ARG 2010       
## 660                                      Argentina    AR   ARG 1974       
## 661                                      Argentina    AR   ARG 2008       
## 662                                      Argentina    AR   ARG 2009       
## 663                                      Argentina    AR   ARG 1977       
## 664                                      Argentina    AR   ARG 1978       
## 665                                      Argentina    AR   ARG 1961       
## 666                                      Argentina    AR   ARG 1962       
## 667                                      Argentina    AR   ARG 2019       
## 668                                      Argentina    AR   ARG 2002       
## 669                                      Argentina    AR   ARG 1979       
## 670                                      Argentina    AR   ARG 1980       
## 671                                      Argentina    AR   ARG 2001       
## 672                                      Argentina    AR   ARG 1975       
## 673                                      Argentina    AR   ARG 2011       
## 674                                      Argentina    AR   ARG 2014       
## 675                                      Argentina    AR   ARG 1992       
## 676                                      Argentina    AR   ARG 2018       
## 677                                      Argentina    AR   ARG 2003       
## 678                                      Argentina    AR   ARG 2004       
## 679                                      Argentina    AR   ARG 2017       
## 680                                      Argentina    AR   ARG 1976       
## 681                                      Argentina    AR   ARG 2016       
## 682                                      Argentina    AR   ARG 2015       
## 683                                        Armenia    AM   ARM 1963       
## 684                                        Armenia    AM   ARM 2000       
## 685                                        Armenia    AM   ARM 2001       
## 686                                        Armenia    AM   ARM 1964       
## 687                                        Armenia    AM   ARM 1962       
## 688                                        Armenia    AM   ARM 1966       
## 689                                        Armenia    AM   ARM 2013       
## 690                                        Armenia    AM   ARM 2015       
## 691                                        Armenia    AM   ARM 1965       
## 692                                        Armenia    AM   ARM 1961       
## 693                                        Armenia    AM   ARM 2004       
## 694                                        Armenia    AM   ARM 2005       
## 695                                        Armenia    AM   ARM 2002       
## 696                                        Armenia    AM   ARM 2003       
## 697                                        Armenia    AM   ARM 2012       
## 698                                        Armenia    AM   ARM 1986       
## 699                                        Armenia    AM   ARM 2006       
## 700                                        Armenia    AM   ARM 2016       
## 701                                        Armenia    AM   ARM 2017       
## 702                                        Armenia    AM   ARM 2018       
## 703                                        Armenia    AM   ARM 1987       
## 704                                        Armenia    AM   ARM 2020       
## 705                                        Armenia    AM   ARM 2007       
## 706                                        Armenia    AM   ARM 2008       
## 707                                        Armenia    AM   ARM 2019       
## 708                                        Armenia    AM   ARM 2010       
## 709                                        Armenia    AM   ARM 1984       
## 710                                        Armenia    AM   ARM 1985       
## 711                                        Armenia    AM   ARM 1999       
## 712                                        Armenia    AM   ARM 1960       
## 713                                        Armenia    AM   ARM 2014       
## 714                                        Armenia    AM   ARM 1975       
## 715                                        Armenia    AM   ARM 1976       
## 716                                        Armenia    AM   ARM 1977       
## 717                                        Armenia    AM   ARM 1978       
## 718                                        Armenia    AM   ARM 1979       
## 719                                        Armenia    AM   ARM 1967       
## 720                                        Armenia    AM   ARM 2009       
## 721                                        Armenia    AM   ARM 1969       
## 722                                        Armenia    AM   ARM 1970       
## 723                                        Armenia    AM   ARM 2011       
## 724                                        Armenia    AM   ARM 1972       
## 725                                        Armenia    AM   ARM 1973       
## 726                                        Armenia    AM   ARM 1991       
## 727                                        Armenia    AM   ARM 1988       
## 728                                        Armenia    AM   ARM 1989       
## 729                                        Armenia    AM   ARM 1990       
## 730                                        Armenia    AM   ARM 1982       
## 731                                        Armenia    AM   ARM 1983       
## 732                                        Armenia    AM   ARM 1980       
## 733                                        Armenia    AM   ARM 1968       
## 734                                        Armenia    AM   ARM 1998       
## 735                                        Armenia    AM   ARM 1994       
## 736                                        Armenia    AM   ARM 1996       
## 737                                        Armenia    AM   ARM 1997       
## 738                                        Armenia    AM   ARM 2021       
## 739                                        Armenia    AM   ARM 1974       
## 740                                        Armenia    AM   ARM 1993       
## 741                                        Armenia    AM   ARM 1971       
## 742                                        Armenia    AM   ARM 1995       
## 743                                        Armenia    AM   ARM 1992       
## 744                                        Armenia    AM   ARM 1981       
## 745                                          Aruba    AW   ABW 1985       
## 746                                          Aruba    AW   ABW 1966       
## 747                                          Aruba    AW   ABW 1980       
## 748                                          Aruba    AW   ABW 1984       
## 749                                          Aruba    AW   ABW 1982       
## 750                                          Aruba    AW   ABW 1983       
## 751                                          Aruba    AW   ABW 1965       
## 752                                          Aruba    AW   ABW 1971       
## 753                                          Aruba    AW   ABW 1972       
## 754                                          Aruba    AW   ABW 2018       
## 755                                          Aruba    AW   ABW 2019       
## 756                                          Aruba    AW   ABW 1979       
## 757                                          Aruba    AW   ABW 1963       
## 758                                          Aruba    AW   ABW 1997       
## 759                                          Aruba    AW   ABW 1986       
## 760                                          Aruba    AW   ABW 2020       
## 761                                          Aruba    AW   ABW 1981       
## 762                                          Aruba    AW   ABW 1989       
## 763                                          Aruba    AW   ABW 1964       
## 764                                          Aruba    AW   ABW 1992       
## 765                                          Aruba    AW   ABW 2021       
## 766                                          Aruba    AW   ABW 2017       
## 767                                          Aruba    AW   ABW 1967       
## 768                                          Aruba    AW   ABW 1994       
## 769                                          Aruba    AW   ABW 1993       
## 770                                          Aruba    AW   ABW 1996       
## 771                                          Aruba    AW   ABW 2010       
## 772                                          Aruba    AW   ABW 1998       
## 773                                          Aruba    AW   ABW 1995       
## 774                                          Aruba    AW   ABW 1988       
## 775                                          Aruba    AW   ABW 1961       
## 776                                          Aruba    AW   ABW 1962       
## 777                                          Aruba    AW   ABW 2003       
## 778                                          Aruba    AW   ABW 2004       
## 779                                          Aruba    AW   ABW 2005       
## 780                                          Aruba    AW   ABW 2016       
## 781                                          Aruba    AW   ABW 1968       
## 782                                          Aruba    AW   ABW 1969       
## 783                                          Aruba    AW   ABW 1970       
## 784                                          Aruba    AW   ABW 2008       
## 785                                          Aruba    AW   ABW 2011       
## 786                                          Aruba    AW   ABW 1987       
## 787                                          Aruba    AW   ABW 1960       
## 788                                          Aruba    AW   ABW 1975       
## 789                                          Aruba    AW   ABW 1976       
## 790                                          Aruba    AW   ABW 1977       
## 791                                          Aruba    AW   ABW 1978       
## 792                                          Aruba    AW   ABW 2015       
## 793                                          Aruba    AW   ABW 2000       
## 794                                          Aruba    AW   ABW 2009       
## 795                                          Aruba    AW   ABW 2006       
## 796                                          Aruba    AW   ABW 2007       
## 797                                          Aruba    AW   ABW 1991       
## 798                                          Aruba    AW   ABW 2001       
## 799                                          Aruba    AW   ABW 2002       
## 800                                          Aruba    AW   ABW 1999       
## 801                                          Aruba    AW   ABW 1973       
## 802                                          Aruba    AW   ABW 1974       
## 803                                          Aruba    AW   ABW 1990       
## 804                                          Aruba    AW   ABW 2013       
## 805                                          Aruba    AW   ABW 2014       
## 806                                          Aruba    AW   ABW 2012       
## 807                                      Australia    AU   AUS 2001       
## 808                                      Australia    AU   AUS 2009       
## 809                                      Australia    AU   AUS 2012       
## 810                                      Australia    AU   AUS 1996       
## 811                                      Australia    AU   AUS 2000       
## 812                                      Australia    AU   AUS 1997       
## 813                                      Australia    AU   AUS 1960       
## 814                                      Australia    AU   AUS 2008       
## 815                                      Australia    AU   AUS 2004       
## 816                                      Australia    AU   AUS 2017       
## 817                                      Australia    AU   AUS 1998       
## 818                                      Australia    AU   AUS 1999       
## 819                                      Australia    AU   AUS 1979       
## 820                                      Australia    AU   AUS 1980       
## 821                                      Australia    AU   AUS 2013       
## 822                                      Australia    AU   AUS 2014       
## 823                                      Australia    AU   AUS 2015       
## 824                                      Australia    AU   AUS 2016       
## 825                                      Australia    AU   AUS 1985       
## 826                                      Australia    AU   AUS 2002       
## 827                                      Australia    AU   AUS 2003       
## 828                                      Australia    AU   AUS 1988       
## 829                                      Australia    AU   AUS 2005       
## 830                                      Australia    AU   AUS 2021       
## 831                                      Australia    AU   AUS 1978       
## 832                                      Australia    AU   AUS 1994       
## 833                                      Australia    AU   AUS 1995       
## 834                                      Australia    AU   AUS 1967       
## 835                                      Australia    AU   AUS 2010       
## 836                                      Australia    AU   AUS 2011       
## 837                                      Australia    AU   AUS 1970       
## 838                                      Australia    AU   AUS 1971       
## 839                                      Australia    AU   AUS 1972       
## 840                                      Australia    AU   AUS 1973       
## 841                                      Australia    AU   AUS 1961       
## 842                                      Australia    AU   AUS 1962       
## 843                                      Australia    AU   AUS 1963       
## 844                                      Australia    AU   AUS 2006       
## 845                                      Australia    AU   AUS 2007       
## 846                                      Australia    AU   AUS 1966       
## 847                                      Australia    AU   AUS 1993       
## 848                                      Australia    AU   AUS 1981       
## 849                                      Australia    AU   AUS 1982       
## 850                                      Australia    AU   AUS 1983       
## 851                                      Australia    AU   AUS 1984       
## 852                                      Australia    AU   AUS 2020       
## 853                                      Australia    AU   AUS 1977       
## 854                                      Australia    AU   AUS 2018       
## 855                                      Australia    AU   AUS 2019       
## 856                                      Australia    AU   AUS 1987       
## 857                                      Australia    AU   AUS 1989       
## 858                                      Australia    AU   AUS 1991       
## 859                                      Australia    AU   AUS 1992       
## 860                                      Australia    AU   AUS 1965       
## 861                                      Australia    AU   AUS 1974       
## 862                                      Australia    AU   AUS 1968       
## 863                                      Australia    AU   AUS 1969       
## 864                                      Australia    AU   AUS 1990       
## 865                                      Australia    AU   AUS 1986       
## 866                                      Australia    AU   AUS 1975       
## 867                                      Australia    AU   AUS 1964       
## 868                                      Australia    AU   AUS 1976       
## 869                                        Austria    AT   AUT 1983       
## 870                                        Austria    AT   AUT 1984       
## 871                                        Austria    AT   AUT 1978       
## 872                                        Austria    AT   AUT 1979       
## 873                                        Austria    AT   AUT 1982       
## 874                                        Austria    AT   AUT 1969       
## 875                                        Austria    AT   AUT 1970       
## 876                                        Austria    AT   AUT 1981       
## 877                                        Austria    AT   AUT 1964       
## 878                                        Austria    AT   AUT 2015       
## 879                                        Austria    AT   AUT 1980       
## 880                                        Austria    AT   AUT 2021       
## 881                                        Austria    AT   AUT 2018       
## 882                                        Austria    AT   AUT 2019       
## 883                                        Austria    AT   AUT 2020       
## 884                                        Austria    AT   AUT 1962       
## 885                                        Austria    AT   AUT 1963       
## 886                                        Austria    AT   AUT 1989       
## 887                                        Austria    AT   AUT 1990       
## 888                                        Austria    AT   AUT 2016       
## 889                                        Austria    AT   AUT 2017       
## 890                                        Austria    AT   AUT 1992       
## 891                                        Austria    AT   AUT 1993       
## 892                                        Austria    AT   AUT 1994       
## 893                                        Austria    AT   AUT 1995       
## 894                                        Austria    AT   AUT 1985       
## 895                                        Austria    AT   AUT 1986       
## 896                                        Austria    AT   AUT 1987       
## 897                                        Austria    AT   AUT 1961       
## 898                                        Austria    AT   AUT 1960       
## 899                                        Austria    AT   AUT 2001       
## 900                                        Austria    AT   AUT 2002       
## 901                                        Austria    AT   AUT 1965       
## 902                                        Austria    AT   AUT 1966       
## 903                                        Austria    AT   AUT 1967       
## 904                                        Austria    AT   AUT 1968       
## 905                                        Austria    AT   AUT 2006       
## 906                                        Austria    AT   AUT 2007       
## 907                                        Austria    AT   AUT 1971       
## 908                                        Austria    AT   AUT 1972       
## 909                                        Austria    AT   AUT 1973       
## 910                                        Austria    AT   AUT 1974       
## 911                                        Austria    AT   AUT 1975       
## 912                                        Austria    AT   AUT 1976       
## 913                                        Austria    AT   AUT 1977       
## 914                                        Austria    AT   AUT 2014       
## 915                                        Austria    AT   AUT 2005       
## 916                                        Austria    AT   AUT 1991       
## 917                                        Austria    AT   AUT 2003       
## 918                                        Austria    AT   AUT 2004       
## 919                                        Austria    AT   AUT 1998       
## 920                                        Austria    AT   AUT 1999       
## 921                                        Austria    AT   AUT 1996       
## 922                                        Austria    AT   AUT 1997       
## 923                                        Austria    AT   AUT 2013       
## 924                                        Austria    AT   AUT 2000       
## 925                                        Austria    AT   AUT 1988       
## 926                                        Austria    AT   AUT 2009       
## 927                                        Austria    AT   AUT 2010       
## 928                                        Austria    AT   AUT 2008       
## 929                                        Austria    AT   AUT 2012       
## 930                                        Austria    AT   AUT 2011       
## 931                                     Azerbaijan    AZ   AZE 2000       
## 932                                     Azerbaijan    AZ   AZE 2008       
## 933                                     Azerbaijan    AZ   AZE 1999       
## 934                                     Azerbaijan    AZ   AZE 1996       
## 935                                     Azerbaijan    AZ   AZE 1995       
## 936                                     Azerbaijan    AZ   AZE 2003       
## 937                                     Azerbaijan    AZ   AZE 2014       
## 938                                     Azerbaijan    AZ   AZE 1997       
## 939                                     Azerbaijan    AZ   AZE 1998       
## 940                                     Azerbaijan    AZ   AZE 2007       
## 941                                     Azerbaijan    AZ   AZE 2021       
## 942                                     Azerbaijan    AZ   AZE 1980       
## 943                                     Azerbaijan    AZ   AZE 2011       
## 944                                     Azerbaijan    AZ   AZE 2012       
## 945                                     Azerbaijan    AZ   AZE 2013       
## 946                                     Azerbaijan    AZ   AZE 1984       
## 947                                     Azerbaijan    AZ   AZE 2001       
## 948                                     Azerbaijan    AZ   AZE 2002       
## 949                                     Azerbaijan    AZ   AZE 1988       
## 950                                     Azerbaijan    AZ   AZE 2004       
## 951                                     Azerbaijan    AZ   AZE 2005       
## 952                                     Azerbaijan    AZ   AZE 2019       
## 953                                     Azerbaijan    AZ   AZE 2020       
## 954                                     Azerbaijan    AZ   AZE 1994       
## 955                                     Azerbaijan    AZ   AZE 1966       
## 956                                     Azerbaijan    AZ   AZE 2009       
## 957                                     Azerbaijan    AZ   AZE 2010       
## 958                                     Azerbaijan    AZ   AZE 1969       
## 959                                     Azerbaijan    AZ   AZE 1970       
## 960                                     Azerbaijan    AZ   AZE 1971       
## 961                                     Azerbaijan    AZ   AZE 1972       
## 962                                     Azerbaijan    AZ   AZE 1960       
## 963                                     Azerbaijan    AZ   AZE 1961       
## 964                                     Azerbaijan    AZ   AZE 1962       
## 965                                     Azerbaijan    AZ   AZE 1963       
## 966                                     Azerbaijan    AZ   AZE 2006       
## 967                                     Azerbaijan    AZ   AZE 1965       
## 968                                     Azerbaijan    AZ   AZE 1979       
## 969                                     Azerbaijan    AZ   AZE 2016       
## 970                                     Azerbaijan    AZ   AZE 1981       
## 971                                     Azerbaijan    AZ   AZE 1982       
## 972                                     Azerbaijan    AZ   AZE 1983       
## 973                                     Azerbaijan    AZ   AZE 1993       
## 974                                     Azerbaijan    AZ   AZE 2017       
## 975                                     Azerbaijan    AZ   AZE 1973       
## 976                                     Azerbaijan    AZ   AZE 2015       
## 977                                     Azerbaijan    AZ   AZE 1986       
## 978                                     Azerbaijan    AZ   AZE 1989       
## 979                                     Azerbaijan    AZ   AZE 2018       
## 980                                     Azerbaijan    AZ   AZE 1978       
## 981                                     Azerbaijan    AZ   AZE 1992       
## 982                                     Azerbaijan    AZ   AZE 1964       
## 983                                     Azerbaijan    AZ   AZE 1967       
## 984                                     Azerbaijan    AZ   AZE 1968       
## 985                                     Azerbaijan    AZ   AZE 1976       
## 986                                     Azerbaijan    AZ   AZE 1990       
## 987                                     Azerbaijan    AZ   AZE 1985       
## 988                                     Azerbaijan    AZ   AZE 1987       
## 989                                     Azerbaijan    AZ   AZE 1974       
## 990                                     Azerbaijan    AZ   AZE 1991       
## 991                                     Azerbaijan    AZ   AZE 1977       
## 992                                     Azerbaijan    AZ   AZE 1975       
## 993                                   Bahamas, The    BS   BHS 1979       
## 994                                   Bahamas, The    BS   BHS 1960       
## 995                                   Bahamas, The    BS   BHS 1974       
## 996                                   Bahamas, The    BS   BHS 1964       
## 997                                   Bahamas, The    BS   BHS 1978       
## 998                                   Bahamas, The    BS   BHS 1973       
## 999                                   Bahamas, The    BS   BHS 1965       
## 1000                                  Bahamas, The    BS   BHS 1975       
## 1001                                  Bahamas, The    BS   BHS 1977       
## 1002                                  Bahamas, The    BS   BHS 2017       
## 1003                                  Bahamas, The    BS   BHS 2014       
## 1004                                  Bahamas, The    BS   BHS 2019       
## 1005                                  Bahamas, The    BS   BHS 1976       
## 1006                                  Bahamas, The    BS   BHS 1980       
## 1007                                  Bahamas, The    BS   BHS 2018       
## 1008                                  Bahamas, The    BS   BHS 1986       
## 1009                                  Bahamas, The    BS   BHS 2020       
## 1010                                  Bahamas, The    BS   BHS 2016       
## 1011                                  Bahamas, The    BS   BHS 1985       
## 1012                                  Bahamas, The    BS   BHS 1989       
## 1013                                  Bahamas, The    BS   BHS 2015       
## 1014                                  Bahamas, The    BS   BHS 1991       
## 1015                                  Bahamas, The    BS   BHS 1988       
## 1016                                  Bahamas, The    BS   BHS 1981       
## 1017                                  Bahamas, The    BS   BHS 1990       
## 1018                                  Bahamas, The    BS   BHS 1983       
## 1019                                  Bahamas, The    BS   BHS 1992       
## 1020                                  Bahamas, The    BS   BHS 1997       
## 1021                                  Bahamas, The    BS   BHS 1998       
## 1022                                  Bahamas, The    BS   BHS 1999       
## 1023                                  Bahamas, The    BS   BHS 1961       
## 1024                                  Bahamas, The    BS   BHS 1962       
## 1025                                  Bahamas, The    BS   BHS 1963       
## 1026                                  Bahamas, The    BS   BHS 2004       
## 1027                                  Bahamas, The    BS   BHS 2005       
## 1028                                  Bahamas, The    BS   BHS 1966       
## 1029                                  Bahamas, The    BS   BHS 1967       
## 1030                                  Bahamas, The    BS   BHS 1982       
## 1031                                  Bahamas, The    BS   BHS 1969       
## 1032                                  Bahamas, The    BS   BHS 1970       
## 1033                                  Bahamas, The    BS   BHS 1971       
## 1034                                  Bahamas, The    BS   BHS 1972       
## 1035                                  Bahamas, The    BS   BHS 2012       
## 1036                                  Bahamas, The    BS   BHS 2013       
## 1037                                  Bahamas, The    BS   BHS 1987       
## 1038                                  Bahamas, The    BS   BHS 2000       
## 1039                                  Bahamas, The    BS   BHS 2001       
## 1040                                  Bahamas, The    BS   BHS 2002       
## 1041                                  Bahamas, The    BS   BHS 2003       
## 1042                                  Bahamas, The    BS   BHS 2006       
## 1043                                  Bahamas, The    BS   BHS 2021       
## 1044                                  Bahamas, The    BS   BHS 1994       
## 1045                                  Bahamas, The    BS   BHS 1995       
## 1046                                  Bahamas, The    BS   BHS 1996       
## 1047                                  Bahamas, The    BS   BHS 1984       
## 1048                                  Bahamas, The    BS   BHS 2011       
## 1049                                  Bahamas, The    BS   BHS 1968       
## 1050                                  Bahamas, The    BS   BHS 2008       
## 1051                                  Bahamas, The    BS   BHS 2009       
## 1052                                  Bahamas, The    BS   BHS 1993       
## 1053                                  Bahamas, The    BS   BHS 2007       
## 1054                                  Bahamas, The    BS   BHS 2010       
## 1055                                       Bahrain    BH   BHR 1991       
## 1056                                       Bahrain    BH   BHR 1992       
## 1057                                       Bahrain    BH   BHR 2003       
## 1058                                       Bahrain    BH   BHR 1995       
## 1059                                       Bahrain    BH   BHR 1996       
## 1060                                       Bahrain    BH   BHR 1993       
## 1061                                       Bahrain    BH   BHR 1994       
## 1062                                       Bahrain    BH   BHR 2017       
## 1063                                       Bahrain    BH   BHR 2018       
## 1064                                       Bahrain    BH   BHR 2006       
## 1065                                       Bahrain    BH   BHR 2002       
## 1066                                       Bahrain    BH   BHR 2008       
## 1067                                       Bahrain    BH   BHR 2009       
## 1068                                       Bahrain    BH   BHR 2010       
## 1069                                       Bahrain    BH   BHR 2007       
## 1070                                       Bahrain    BH   BHR 1998       
## 1071                                       Bahrain    BH   BHR 1999       
## 1072                                       Bahrain    BH   BHR 2000       
## 1073                                       Bahrain    BH   BHR 2015       
## 1074                                       Bahrain    BH   BHR 2016       
## 1075                                       Bahrain    BH   BHR 1989       
## 1076                                       Bahrain    BH   BHR 1990       
## 1077                                       Bahrain    BH   BHR 2004       
## 1078                                       Bahrain    BH   BHR 2005       
## 1079                                       Bahrain    BH   BHR 1968       
## 1080                                       Bahrain    BH   BHR 1969       
## 1081                                       Bahrain    BH   BHR 1970       
## 1082                                       Bahrain    BH   BHR 1971       
## 1083                                       Bahrain    BH   BHR 1997       
## 1084                                       Bahrain    BH   BHR 1960       
## 1085                                       Bahrain    BH   BHR 1961       
## 1086                                       Bahrain    BH   BHR 1962       
## 1087                                       Bahrain    BH   BHR 2001       
## 1088                                       Bahrain    BH   BHR 1964       
## 1089                                       Bahrain    BH   BHR 1965       
## 1090                                       Bahrain    BH   BHR 1979       
## 1091                                       Bahrain    BH   BHR 2019       
## 1092                                       Bahrain    BH   BHR 2020       
## 1093                                       Bahrain    BH   BHR 2021       
## 1094                                       Bahrain    BH   BHR 1983       
## 1095                                       Bahrain    BH   BHR 2013       
## 1096                                       Bahrain    BH   BHR 1972       
## 1097                                       Bahrain    BH   BHR 2011       
## 1098                                       Bahrain    BH   BHR 2012       
## 1099                                       Bahrain    BH   BHR 1982       
## 1100                                       Bahrain    BH   BHR 2014       
## 1101                                       Bahrain    BH   BHR 1977       
## 1102                                       Bahrain    BH   BHR 1978       
## 1103                                       Bahrain    BH   BHR 1984       
## 1104                                       Bahrain    BH   BHR 1966       
## 1105                                       Bahrain    BH   BHR 1967       
## 1106                                       Bahrain    BH   BHR 1981       
## 1107                                       Bahrain    BH   BHR 1988       
## 1108                                       Bahrain    BH   BHR 1985       
## 1109                                       Bahrain    BH   BHR 1986       
## 1110                                       Bahrain    BH   BHR 1987       
## 1111                                       Bahrain    BH   BHR 1963       
## 1112                                       Bahrain    BH   BHR 1973       
## 1113                                       Bahrain    BH   BHR 1974       
## 1114                                       Bahrain    BH   BHR 1980       
## 1115                                       Bahrain    BH   BHR 1976       
## 1116                                       Bahrain    BH   BHR 1975       
## 1117                                    Bangladesh    BD   BGD 1975       
## 1118                                    Bangladesh    BD   BGD 1962       
## 1119                                    Bangladesh    BD   BGD 1970       
## 1120                                    Bangladesh    BD   BGD 1961       
## 1121                                    Bangladesh    BD   BGD 1971       
## 1122                                    Bangladesh    BD   BGD 1963       
## 1123                                    Bangladesh    BD   BGD 1973       
## 1124                                    Bangladesh    BD   BGD 1969       
## 1125                                    Bangladesh    BD   BGD 2014       
## 1126                                    Bangladesh    BD   BGD 2015       
## 1127                                    Bangladesh    BD   BGD 1976       
## 1128                                    Bangladesh    BD   BGD 1974       
## 1129                                    Bangladesh    BD   BGD 1985       
## 1130                                    Bangladesh    BD   BGD 2010       
## 1131                                    Bangladesh    BD   BGD 1972       
## 1132                                    Bangladesh    BD   BGD 1984       
## 1133                                    Bangladesh    BD   BGD 2013       
## 1134                                    Bangladesh    BD   BGD 1988       
## 1135                                    Bangladesh    BD   BGD 1989       
## 1136                                    Bangladesh    BD   BGD 2012       
## 1137                                    Bangladesh    BD   BGD 1977       
## 1138                                    Bangladesh    BD   BGD 1978       
## 1139                                    Bangladesh    BD   BGD 1979       
## 1140                                    Bangladesh    BD   BGD 1990       
## 1141                                    Bangladesh    BD   BGD 1995       
## 1142                                    Bangladesh    BD   BGD 1996       
## 1143                                    Bangladesh    BD   BGD 1997       
## 1144                                    Bangladesh    BD   BGD 2011       
## 1145                                    Bangladesh    BD   BGD 1986       
## 1146                                    Bangladesh    BD   BGD 1987       
## 1147                                    Bangladesh    BD   BGD 1960       
## 1148                                    Bangladesh    BD   BGD 2002       
## 1149                                    Bangladesh    BD   BGD 2003       
## 1150                                    Bangladesh    BD   BGD 2004       
## 1151                                    Bangladesh    BD   BGD 1964       
## 1152                                    Bangladesh    BD   BGD 1965       
## 1153                                    Bangladesh    BD   BGD 1966       
## 1154                                    Bangladesh    BD   BGD 1967       
## 1155                                    Bangladesh    BD   BGD 1968       
## 1156                                    Bangladesh    BD   BGD 2008       
## 1157                                    Bangladesh    BD   BGD 2009       
## 1158                                    Bangladesh    BD   BGD 1983       
## 1159                                    Bangladesh    BD   BGD 1998       
## 1160                                    Bangladesh    BD   BGD 1999       
## 1161                                    Bangladesh    BD   BGD 2000       
## 1162                                    Bangladesh    BD   BGD 2001       
## 1163                                    Bangladesh    BD   BGD 2018       
## 1164                                    Bangladesh    BD   BGD 1991       
## 1165                                    Bangladesh    BD   BGD 2016       
## 1166                                    Bangladesh    BD   BGD 2017       
## 1167                                    Bangladesh    BD   BGD 2021       
## 1168                                    Bangladesh    BD   BGD 1980       
## 1169                                    Bangladesh    BD   BGD 1981       
## 1170                                    Bangladesh    BD   BGD 1982       
## 1171                                    Bangladesh    BD   BGD 1993       
## 1172                                    Bangladesh    BD   BGD 1994       
## 1173                                    Bangladesh    BD   BGD 2006       
## 1174                                    Bangladesh    BD   BGD 1992       
## 1175                                    Bangladesh    BD   BGD 2020       
## 1176                                    Bangladesh    BD   BGD 2005       
## 1177                                    Bangladesh    BD   BGD 2007       
## 1178                                    Bangladesh    BD   BGD 2019       
## 1179                                      Barbados    BB   BRB 1990       
## 1180                                      Barbados    BB   BRB 2009       
## 1181                                      Barbados    BB   BRB 1991       
## 1182                                      Barbados    BB   BRB 1992       
## 1183                                      Barbados    BB   BRB 1994       
## 1184                                      Barbados    BB   BRB 1989       
## 1185                                      Barbados    BB   BRB 1995       
## 1186                                      Barbados    BB   BRB 2006       
## 1187                                      Barbados    BB   BRB 1993       
## 1188                                      Barbados    BB   BRB 2008       
## 1189                                      Barbados    BB   BRB 2005       
## 1190                                      Barbados    BB   BRB 1979       
## 1191                                      Barbados    BB   BRB 2007       
## 1192                                      Barbados    BB   BRB 1981       
## 1193                                      Barbados    BB   BRB 1978       
## 1194                                      Barbados    BB   BRB 2015       
## 1195                                      Barbados    BB   BRB 1980       
## 1196                                      Barbados    BB   BRB 2017       
## 1197                                      Barbados    BB   BRB 2018       
## 1198                                      Barbados    BB   BRB 2002       
## 1199                                      Barbados    BB   BRB 2003       
## 1200                                      Barbados    BB   BRB 2004       
## 1201                                      Barbados    BB   BRB 1963       
## 1202                                      Barbados    BB   BRB 1964       
## 1203                                      Barbados    BB   BRB 1965       
## 1204                                      Barbados    BB   BRB 1966       
## 1205                                      Barbados    BB   BRB 1996       
## 1206                                      Barbados    BB   BRB 1997       
## 1207                                      Barbados    BB   BRB 1998       
## 1208                                      Barbados    BB   BRB 2016       
## 1209                                      Barbados    BB   BRB 1987       
## 1210                                      Barbados    BB   BRB 1988       
## 1211                                      Barbados    BB   BRB 1973       
## 1212                                      Barbados    BB   BRB 2019       
## 1213                                      Barbados    BB   BRB 2020       
## 1214                                      Barbados    BB   BRB 2021       
## 1215                                      Barbados    BB   BRB 1977       
## 1216                                      Barbados    BB   BRB 2012       
## 1217                                      Barbados    BB   BRB 2013       
## 1218                                      Barbados    BB   BRB 2010       
## 1219                                      Barbados    BB   BRB 2011       
## 1220                                      Barbados    BB   BRB 1986       
## 1221                                      Barbados    BB   BRB 1960       
## 1222                                      Barbados    BB   BRB 2014       
## 1223                                      Barbados    BB   BRB 1972       
## 1224                                      Barbados    BB   BRB 1976       
## 1225                                      Barbados    BB   BRB 1982       
## 1226                                      Barbados    BB   BRB 1961       
## 1227                                      Barbados    BB   BRB 1962       
## 1228                                      Barbados    BB   BRB 1967       
## 1229                                      Barbados    BB   BRB 2001       
## 1230                                      Barbados    BB   BRB 1983       
## 1231                                      Barbados    BB   BRB 1984       
## 1232                                      Barbados    BB   BRB 1985       
## 1233                                      Barbados    BB   BRB 2000       
## 1234                                      Barbados    BB   BRB 1968       
## 1235                                      Barbados    BB   BRB 1974       
## 1236                                      Barbados    BB   BRB 1975       
## 1237                                      Barbados    BB   BRB 1970       
## 1238                                      Barbados    BB   BRB 1971       
## 1239                                      Barbados    BB   BRB 1969       
## 1240                                      Barbados    BB   BRB 1999       
## 1241                                       Belarus    BY   BLR 1976       
## 1242                                       Belarus    BY   BLR 1962       
## 1243                                       Belarus    BY   BLR 1963       
## 1244                                       Belarus    BY   BLR 1975       
## 1245                                       Belarus    BY   BLR 1961       
## 1246                                       Belarus    BY   BLR 1971       
## 1247                                       Belarus    BY   BLR 2011       
## 1248                                       Belarus    BY   BLR 2012       
## 1249                                       Belarus    BY   BLR 1974       
## 1250                                       Belarus    BY   BLR 2010       
## 1251                                       Belarus    BY   BLR 2006       
## 1252                                       Belarus    BY   BLR 1972       
## 1253                                       Belarus    BY   BLR 1964       
## 1254                                       Belarus    BY   BLR 1970       
## 1255                                       Belarus    BY   BLR 1985       
## 1256                                       Belarus    BY   BLR 1986       
## 1257                                       Belarus    BY   BLR 1973       
## 1258                                       Belarus    BY   BLR 2009       
## 1259                                       Belarus    BY   BLR 1978       
## 1260                                       Belarus    BY   BLR 1979       
## 1261                                       Belarus    BY   BLR 1987       
## 1262                                       Belarus    BY   BLR 1977       
## 1263                                       Belarus    BY   BLR 1993       
## 1264                                       Belarus    BY   BLR 1994       
## 1265                                       Belarus    BY   BLR 2007       
## 1266                                       Belarus    BY   BLR 2008       
## 1267                                       Belarus    BY   BLR 1984       
## 1268                                       Belarus    BY   BLR 1960       
## 1269                                       Belarus    BY   BLR 1997       
## 1270                                       Belarus    BY   BLR 1998       
## 1271                                       Belarus    BY   BLR 1999       
## 1272                                       Belarus    BY   BLR 2000       
## 1273                                       Belarus    BY   BLR 1965       
## 1274                                       Belarus    BY   BLR 1966       
## 1275                                       Belarus    BY   BLR 1967       
## 1276                                       Belarus    BY   BLR 1968       
## 1277                                       Belarus    BY   BLR 1969       
## 1278                                       Belarus    BY   BLR 2005       
## 1279                                       Belarus    BY   BLR 1982       
## 1280                                       Belarus    BY   BLR 1983       
## 1281                                       Belarus    BY   BLR 2021       
## 1282                                       Belarus    BY   BLR 1995       
## 1283                                       Belarus    BY   BLR 1996       
## 1284                                       Belarus    BY   BLR 2015       
## 1285                                       Belarus    BY   BLR 1988       
## 1286                                       Belarus    BY   BLR 2013       
## 1287                                       Belarus    BY   BLR 2014       
## 1288                                       Belarus    BY   BLR 2018       
## 1289                                       Belarus    BY   BLR 2016       
## 1290                                       Belarus    BY   BLR 1980       
## 1291                                       Belarus    BY   BLR 1981       
## 1292                                       Belarus    BY   BLR 1990       
## 1293                                       Belarus    BY   BLR 2019       
## 1294                                       Belarus    BY   BLR 2020       
## 1295                                       Belarus    BY   BLR 1989       
## 1296                                       Belarus    BY   BLR 2004       
## 1297                                       Belarus    BY   BLR 1991       
## 1298                                       Belarus    BY   BLR 1992       
## 1299                                       Belarus    BY   BLR 2003       
## 1300                                       Belarus    BY   BLR 2017       
## 1301                                       Belarus    BY   BLR 2001       
## 1302                                       Belarus    BY   BLR 2002       
## 1303                                       Belgium    BE   BEL 1991       
## 1304                                       Belgium    BE   BEL 1990       
## 1305                                       Belgium    BE   BEL 2005       
## 1306                                       Belgium    BE   BEL 1992       
## 1307                                       Belgium    BE   BEL 1989       
## 1308                                       Belgium    BE   BEL 2003       
## 1309                                       Belgium    BE   BEL 1986       
## 1310                                       Belgium    BE   BEL 1987       
## 1311                                       Belgium    BE   BEL 1988       
## 1312                                       Belgium    BE   BEL 2018       
## 1313                                       Belgium    BE   BEL 2004       
## 1314                                       Belgium    BE   BEL 2016       
## 1315                                       Belgium    BE   BEL 2017       
## 1316                                       Belgium    BE   BEL 2009       
## 1317                                       Belgium    BE   BEL 2019       
## 1318                                       Belgium    BE   BEL 2011       
## 1319                                       Belgium    BE   BEL 2012       
## 1320                                       Belgium    BE   BEL 2013       
## 1321                                       Belgium    BE   BEL 2002       
## 1322                                       Belgium    BE   BEL 1960       
## 1323                                       Belgium    BE   BEL 1961       
## 1324                                       Belgium    BE   BEL 1962       
## 1325                                       Belgium    BE   BEL 1963       
## 1326                                       Belgium    BE   BEL 1993       
## 1327                                       Belgium    BE   BEL 1994       
## 1328                                       Belgium    BE   BEL 1995       
## 1329                                       Belgium    BE   BEL 1996       
## 1330                                       Belgium    BE   BEL 2010       
## 1331                                       Belgium    BE   BEL 1985       
## 1332                                       Belgium    BE   BEL 1970       
## 1333                                       Belgium    BE   BEL 1971       
## 1334                                       Belgium    BE   BEL 1972       
## 1335                                       Belgium    BE   BEL 2014       
## 1336                                       Belgium    BE   BEL 2015       
## 1337                                       Belgium    BE   BEL 1975       
## 1338                                       Belgium    BE   BEL 1976       
## 1339                                       Belgium    BE   BEL 1964       
## 1340                                       Belgium    BE   BEL 1965       
## 1341                                       Belgium    BE   BEL 2006       
## 1342                                       Belgium    BE   BEL 2007       
## 1343                                       Belgium    BE   BEL 2008       
## 1344                                       Belgium    BE   BEL 1969       
## 1345                                       Belgium    BE   BEL 1984       
## 1346                                       Belgium    BE   BEL 1999       
## 1347                                       Belgium    BE   BEL 2000       
## 1348                                       Belgium    BE   BEL 2001       
## 1349                                       Belgium    BE   BEL 1973       
## 1350                                       Belgium    BE   BEL 1974       
## 1351                                       Belgium    BE   BEL 2021       
## 1352                                       Belgium    BE   BEL 1977       
## 1353                                       Belgium    BE   BEL 1979       
## 1354                                       Belgium    BE   BEL 2020       
## 1355                                       Belgium    BE   BEL 1968       
## 1356                                       Belgium    BE   BEL 1982       
## 1357                                       Belgium    BE   BEL 1983       
## 1358                                       Belgium    BE   BEL 1998       
## 1359                                       Belgium    BE   BEL 1978       
## 1360                                       Belgium    BE   BEL 1966       
## 1361                                       Belgium    BE   BEL 1967       
## 1362                                       Belgium    BE   BEL 1997       
## 1363                                       Belgium    BE   BEL 1980       
## 1364                                       Belgium    BE   BEL 1981       
## 1365                                        Belize    BZ   BLZ 1969       
## 1366                                        Belize    BZ   BLZ 1965       
## 1367                                        Belize    BZ   BLZ 1964       
## 1368                                        Belize    BZ   BLZ 2011       
## 1369                                        Belize    BZ   BLZ 1966       
## 1370                                        Belize    BZ   BLZ 1967       
## 1371                                        Belize    BZ   BLZ 1968       
## 1372                                        Belize    BZ   BLZ 2006       
## 1373                                        Belize    BZ   BLZ 2012       
## 1374                                        Belize    BZ   BLZ 1970       
## 1375                                        Belize    BZ   BLZ 1971       
## 1376                                        Belize    BZ   BLZ 2010       
## 1377                                        Belize    BZ   BLZ 2007       
## 1378                                        Belize    BZ   BLZ 2008       
## 1379                                        Belize    BZ   BLZ 1963       
## 1380                                        Belize    BZ   BLZ 1983       
## 1381                                        Belize    BZ   BLZ 1980       
## 1382                                        Belize    BZ   BLZ 1981       
## 1383                                        Belize    BZ   BLZ 2009       
## 1384                                        Belize    BZ   BLZ 1987       
## 1385                                        Belize    BZ   BLZ 1988       
## 1386                                        Belize    BZ   BLZ 1989       
## 1387                                        Belize    BZ   BLZ 1982       
## 1388                                        Belize    BZ   BLZ 1978       
## 1389                                        Belize    BZ   BLZ 1979       
## 1390                                        Belize    BZ   BLZ 1995       
## 1391                                        Belize    BZ   BLZ 1990       
## 1392                                        Belize    BZ   BLZ 1997       
## 1393                                        Belize    BZ   BLZ 1998       
## 1394                                        Belize    BZ   BLZ 1972       
## 1395                                        Belize    BZ   BLZ 1996       
## 1396                                        Belize    BZ   BLZ 1960       
## 1397                                        Belize    BZ   BLZ 1961       
## 1398                                        Belize    BZ   BLZ 1962       
## 1399                                        Belize    BZ   BLZ 2003       
## 1400                                        Belize    BZ   BLZ 2004       
## 1401                                        Belize    BZ   BLZ 2005       
## 1402                                        Belize    BZ   BLZ 2021       
## 1403                                        Belize    BZ   BLZ 1991       
## 1404                                        Belize    BZ   BLZ 1992       
## 1405                                        Belize    BZ   BLZ 1993       
## 1406                                        Belize    BZ   BLZ 1994       
## 1407                                        Belize    BZ   BLZ 2013       
## 1408                                        Belize    BZ   BLZ 1973       
## 1409                                        Belize    BZ   BLZ 2015       
## 1410                                        Belize    BZ   BLZ 2016       
## 1411                                        Belize    BZ   BLZ 1974       
## 1412                                        Belize    BZ   BLZ 1975       
## 1413                                        Belize    BZ   BLZ 1976       
## 1414                                        Belize    BZ   BLZ 1977       
## 1415                                        Belize    BZ   BLZ 2020       
## 1416                                        Belize    BZ   BLZ 2001       
## 1417                                        Belize    BZ   BLZ 2014       
## 1418                                        Belize    BZ   BLZ 1985       
## 1419                                        Belize    BZ   BLZ 1986       
## 1420                                        Belize    BZ   BLZ 2000       
## 1421                                        Belize    BZ   BLZ 2002       
## 1422                                        Belize    BZ   BLZ 2018       
## 1423                                        Belize    BZ   BLZ 2019       
## 1424                                        Belize    BZ   BLZ 1984       
## 1425                                        Belize    BZ   BLZ 1999       
## 1426                                        Belize    BZ   BLZ 2017       
## 1427                                         Benin    BJ   BEN 1987       
## 1428                                         Benin    BJ   BEN 1988       
## 1429                                         Benin    BJ   BEN 2005       
## 1430                                         Benin    BJ   BEN 2001       
## 1431                                         Benin    BJ   BEN 1990       
## 1432                                         Benin    BJ   BEN 1986       
## 1433                                         Benin    BJ   BEN 2018       
## 1434                                         Benin    BJ   BEN 1989       
## 1435                                         Benin    BJ   BEN 2003       
## 1436                                         Benin    BJ   BEN 2004       
## 1437                                         Benin    BJ   BEN 2009       
## 1438                                         Benin    BJ   BEN 2002       
## 1439                                         Benin    BJ   BEN 2011       
## 1440                                         Benin    BJ   BEN 2012       
## 1441                                         Benin    BJ   BEN 2013       
## 1442                                         Benin    BJ   BEN 2000       
## 1443                                         Benin    BJ   BEN 1960       
## 1444                                         Benin    BJ   BEN 1961       
## 1445                                         Benin    BJ   BEN 1962       
## 1446                                         Benin    BJ   BEN 1963       
## 1447                                         Benin    BJ   BEN 1991       
## 1448                                         Benin    BJ   BEN 1992       
## 1449                                         Benin    BJ   BEN 1993       
## 1450                                         Benin    BJ   BEN 1994       
## 1451                                         Benin    BJ   BEN 2010       
## 1452                                         Benin    BJ   BEN 1983       
## 1453                                         Benin    BJ   BEN 1984       
## 1454                                         Benin    BJ   BEN 1985       
## 1455                                         Benin    BJ   BEN 1972       
## 1456                                         Benin    BJ   BEN 2014       
## 1457                                         Benin    BJ   BEN 2015       
## 1458                                         Benin    BJ   BEN 2016       
## 1459                                         Benin    BJ   BEN 2017       
## 1460                                         Benin    BJ   BEN 1964       
## 1461                                         Benin    BJ   BEN 1965       
## 1462                                         Benin    BJ   BEN 2006       
## 1463                                         Benin    BJ   BEN 2007       
## 1464                                         Benin    BJ   BEN 2008       
## 1465                                         Benin    BJ   BEN 1969       
## 1466                                         Benin    BJ   BEN 1970       
## 1467                                         Benin    BJ   BEN 1971       
## 1468                                         Benin    BJ   BEN 1998       
## 1469                                         Benin    BJ   BEN 1999       
## 1470                                         Benin    BJ   BEN 1973       
## 1471                                         Benin    BJ   BEN 1974       
## 1472                                         Benin    BJ   BEN 1975       
## 1473                                         Benin    BJ   BEN 1977       
## 1474                                         Benin    BJ   BEN 2019       
## 1475                                         Benin    BJ   BEN 2020       
## 1476                                         Benin    BJ   BEN 2021       
## 1477                                         Benin    BJ   BEN 1980       
## 1478                                         Benin    BJ   BEN 1981       
## 1479                                         Benin    BJ   BEN 1982       
## 1480                                         Benin    BJ   BEN 1997       
## 1481                                         Benin    BJ   BEN 1966       
## 1482                                         Benin    BJ   BEN 1976       
## 1483                                         Benin    BJ   BEN 1995       
## 1484                                         Benin    BJ   BEN 1996       
## 1485                                         Benin    BJ   BEN 1967       
## 1486                                         Benin    BJ   BEN 1979       
## 1487                                         Benin    BJ   BEN 1968       
## 1488                                         Benin    BJ   BEN 1978       
## 1489                                       Bermuda    BM   BMU 1965       
## 1490                                       Bermuda    BM   BMU 1969       
## 1491                                       Bermuda    BM   BMU 1967       
## 1492                                       Bermuda    BM   BMU 1968       
## 1493                                       Bermuda    BM   BMU 1963       
## 1494                                       Bermuda    BM   BMU 1966       
## 1495                                       Bermuda    BM   BMU 1970       
## 1496                                       Bermuda    BM   BMU 1971       
## 1497                                       Bermuda    BM   BMU 2003       
## 1498                                       Bermuda    BM   BMU 1964       
## 1499                                       Bermuda    BM   BMU 2001       
## 1500                                       Bermuda    BM   BMU 2002       
## 1501                                       Bermuda    BM   BMU 1981       
## 1502                                       Bermuda    BM   BMU 2004       
## 1503                                       Bermuda    BM   BMU 2005       
## 1504                                       Bermuda    BM   BMU 1980       
## 1505                                       Bermuda    BM   BMU 1985       
## 1506                                       Bermuda    BM   BMU 1986       
## 1507                                       Bermuda    BM   BMU 1987       
## 1508                                       Bermuda    BM   BMU 1988       
## 1509                                       Bermuda    BM   BMU 2012       
## 1510                                       Bermuda    BM   BMU 2013       
## 1511                                       Bermuda    BM   BMU 1978       
## 1512                                       Bermuda    BM   BMU 1979       
## 1513                                       Bermuda    BM   BMU 1993       
## 1514                                       Bermuda    BM   BMU 1994       
## 1515                                       Bermuda    BM   BMU 1972       
## 1516                                       Bermuda    BM   BMU 1973       
## 1517                                       Bermuda    BM   BMU 1960       
## 1518                                       Bermuda    BM   BMU 1961       
## 1519                                       Bermuda    BM   BMU 1962       
## 1520                                       Bermuda    BM   BMU 1998       
## 1521                                       Bermuda    BM   BMU 1999       
## 1522                                       Bermuda    BM   BMU 2000       
## 1523                                       Bermuda    BM   BMU 2011       
## 1524                                       Bermuda    BM   BMU 1989       
## 1525                                       Bermuda    BM   BMU 2014       
## 1526                                       Bermuda    BM   BMU 2015       
## 1527                                       Bermuda    BM   BMU 2016       
## 1528                                       Bermuda    BM   BMU 2017       
## 1529                                       Bermuda    BM   BMU 1982       
## 1530                                       Bermuda    BM   BMU 2006       
## 1531                                       Bermuda    BM   BMU 2007       
## 1532                                       Bermuda    BM   BMU 1974       
## 1533                                       Bermuda    BM   BMU 1975       
## 1534                                       Bermuda    BM   BMU 1976       
## 1535                                       Bermuda    BM   BMU 1977       
## 1536                                       Bermuda    BM   BMU 1992       
## 1537                                       Bermuda    BM   BMU 2021       
## 1538                                       Bermuda    BM   BMU 1990       
## 1539                                       Bermuda    BM   BMU 1991       
## 1540                                       Bermuda    BM   BMU 1984       
## 1541                                       Bermuda    BM   BMU 1995       
## 1542                                       Bermuda    BM   BMU 1997       
## 1543                                       Bermuda    BM   BMU 1983       
## 1544                                       Bermuda    BM   BMU 2010       
## 1545                                       Bermuda    BM   BMU 1996       
## 1546                                       Bermuda    BM   BMU 2009       
## 1547                                       Bermuda    BM   BMU 2018       
## 1548                                       Bermuda    BM   BMU 2019       
## 1549                                       Bermuda    BM   BMU 2008       
## 1550                                       Bermuda    BM   BMU 2020       
## 1551                                        Bhutan    BT   BTN 1982       
## 1552                                        Bhutan    BT   BTN 1986       
## 1553                                        Bhutan    BT   BTN 1981       
## 1554                                        Bhutan    BT   BTN 1996       
## 1555                                        Bhutan    BT   BTN 1987       
## 1556                                        Bhutan    BT   BTN 1984       
## 1557                                        Bhutan    BT   BTN 1985       
## 1558                                        Bhutan    BT   BTN 1997       
## 1559                                        Bhutan    BT   BTN 1983       
## 1560                                        Bhutan    BT   BTN 2009       
## 1561                                        Bhutan    BT   BTN 2010       
## 1562                                        Bhutan    BT   BTN 2016       
## 1563                                        Bhutan    BT   BTN 2017       
## 1564                                        Bhutan    BT   BTN 1995       
## 1565                                        Bhutan    BT   BTN 1998       
## 1566                                        Bhutan    BT   BTN 2011       
## 1567                                        Bhutan    BT   BTN 1977       
## 1568                                        Bhutan    BT   BTN 2001       
## 1569                                        Bhutan    BT   BTN 2018       
## 1570                                        Bhutan    BT   BTN 1999       
## 1571                                        Bhutan    BT   BTN 2000       
## 1572                                        Bhutan    BT   BTN 2008       
## 1573                                        Bhutan    BT   BTN 1978       
## 1574                                        Bhutan    BT   BTN 1979       
## 1575                                        Bhutan    BT   BTN 1980       
## 1576                                        Bhutan    BT   BTN 1994       
## 1577                                        Bhutan    BT   BTN 2012       
## 1578                                        Bhutan    BT   BTN 2013       
## 1579                                        Bhutan    BT   BTN 2014       
## 1580                                        Bhutan    BT   BTN 2015       
## 1581                                        Bhutan    BT   BTN 1968       
## 1582                                        Bhutan    BT   BTN 1969       
## 1583                                        Bhutan    BT   BTN 1988       
## 1584                                        Bhutan    BT   BTN 1989       
## 1585                                        Bhutan    BT   BTN 2007       
## 1586                                        Bhutan    BT   BTN 2005       
## 1587                                        Bhutan    BT   BTN 2006       
## 1588                                        Bhutan    BT   BTN 1962       
## 1589                                        Bhutan    BT   BTN 1963       
## 1590                                        Bhutan    BT   BTN 1967       
## 1591                                        Bhutan    BT   BTN 1964       
## 1592                                        Bhutan    BT   BTN 1965       
## 1593                                        Bhutan    BT   BTN 1966       
## 1594                                        Bhutan    BT   BTN 2020       
## 1595                                        Bhutan    BT   BTN 2021       
## 1596                                        Bhutan    BT   BTN 1970       
## 1597                                        Bhutan    BT   BTN 2019       
## 1598                                        Bhutan    BT   BTN 1976       
## 1599                                        Bhutan    BT   BTN 2003       
## 1600                                        Bhutan    BT   BTN 1974       
## 1601                                        Bhutan    BT   BTN 1975       
## 1602                                        Bhutan    BT   BTN 2002       
## 1603                                        Bhutan    BT   BTN 1993       
## 1604                                        Bhutan    BT   BTN 1990       
## 1605                                        Bhutan    BT   BTN 1991       
## 1606                                        Bhutan    BT   BTN 1992       
## 1607                                        Bhutan    BT   BTN 1961       
## 1608                                        Bhutan    BT   BTN 1971       
## 1609                                        Bhutan    BT   BTN 2004       
## 1610                                        Bhutan    BT   BTN 1960       
## 1611                                        Bhutan    BT   BTN 1973       
## 1612                                        Bhutan    BT   BTN 1972       
## 1613                                       Bolivia    BO   BOL 1965       
## 1614                                       Bolivia    BO   BOL 1966       
## 1615                                       Bolivia    BO   BOL 1969       
## 1616                                       Bolivia    BO   BOL 2003       
## 1617                                       Bolivia    BO   BOL 2004       
## 1618                                       Bolivia    BO   BOL 1964       
## 1619                                       Bolivia    BO   BOL 1963       
## 1620                                       Bolivia    BO   BOL 1973       
## 1621                                       Bolivia    BO   BOL 1999       
## 1622                                       Bolivia    BO   BOL 1967       
## 1623                                       Bolivia    BO   BOL 1968       
## 1624                                       Bolivia    BO   BOL 2002       
## 1625                                       Bolivia    BO   BOL 1977       
## 1626                                       Bolivia    BO   BOL 2000       
## 1627                                       Bolivia    BO   BOL 2001       
## 1628                                       Bolivia    BO   BOL 1984       
## 1629                                       Bolivia    BO   BOL 1985       
## 1630                                       Bolivia    BO   BOL 1978       
## 1631                                       Bolivia    BO   BOL 1970       
## 1632                                       Bolivia    BO   BOL 1975       
## 1633                                       Bolivia    BO   BOL 1976       
## 1634                                       Bolivia    BO   BOL 1974       
## 1635                                       Bolivia    BO   BOL 2012       
## 1636                                       Bolivia    BO   BOL 1991       
## 1637                                       Bolivia    BO   BOL 1971       
## 1638                                       Bolivia    BO   BOL 1989       
## 1639                                       Bolivia    BO   BOL 1990       
## 1640                                       Bolivia    BO   BOL 1960       
## 1641                                       Bolivia    BO   BOL 1961       
## 1642                                       Bolivia    BO   BOL 1962       
## 1643                                       Bolivia    BO   BOL 1998       
## 1644                                       Bolivia    BO   BOL 2011       
## 1645                                       Bolivia    BO   BOL 2016       
## 1646                                       Bolivia    BO   BOL 2013       
## 1647                                       Bolivia    BO   BOL 2014       
## 1648                                       Bolivia    BO   BOL 2015       
## 1649                                       Bolivia    BO   BOL 2007       
## 1650                                       Bolivia    BO   BOL 1979       
## 1651                                       Bolivia    BO   BOL 2005       
## 1652                                       Bolivia    BO   BOL 2006       
## 1653                                       Bolivia    BO   BOL 1997       
## 1654                                       Bolivia    BO   BOL 2008       
## 1655                                       Bolivia    BO   BOL 2009       
## 1656                                       Bolivia    BO   BOL 1972       
## 1657                                       Bolivia    BO   BOL 1988       
## 1658                                       Bolivia    BO   BOL 1982       
## 1659                                       Bolivia    BO   BOL 1986       
## 1660                                       Bolivia    BO   BOL 1987       
## 1661                                       Bolivia    BO   BOL 1981       
## 1662                                       Bolivia    BO   BOL 2010       
## 1663                                       Bolivia    BO   BOL 1983       
## 1664                                       Bolivia    BO   BOL 1980       
## 1665                                       Bolivia    BO   BOL 1996       
## 1666                                       Bolivia    BO   BOL 1992       
## 1667                                       Bolivia    BO   BOL 1993       
## 1668                                       Bolivia    BO   BOL 1995       
## 1669                                       Bolivia    BO   BOL 2017       
## 1670                                       Bolivia    BO   BOL 2018       
## 1671                                       Bolivia    BO   BOL 1994       
## 1672                                       Bolivia    BO   BOL 2021       
## 1673                                       Bolivia    BO   BOL 2019       
## 1674                                       Bolivia    BO   BOL 2020       
## 1675                        Bosnia and Herzegovina    BA   BIH 1995       
## 1676                        Bosnia and Herzegovina    BA   BIH 1985       
## 1677                        Bosnia and Herzegovina    BA   BIH 1986       
## 1678                        Bosnia and Herzegovina    BA   BIH 1984       
## 1679                        Bosnia and Herzegovina    BA   BIH 2007       
## 1680                        Bosnia and Herzegovina    BA   BIH 1982       
## 1681                        Bosnia and Herzegovina    BA   BIH 2021       
## 1682                        Bosnia and Herzegovina    BA   BIH 2005       
## 1683                        Bosnia and Herzegovina    BA   BIH 2011       
## 1684                        Bosnia and Herzegovina    BA   BIH 2012       
## 1685                        Bosnia and Herzegovina    BA   BIH 1983       
## 1686                        Bosnia and Herzegovina    BA   BIH 1996       
## 1687                        Bosnia and Herzegovina    BA   BIH 2020       
## 1688                        Bosnia and Herzegovina    BA   BIH 1980       
## 1689                        Bosnia and Herzegovina    BA   BIH 1981       
## 1690                        Bosnia and Herzegovina    BA   BIH 2013       
## 1691                        Bosnia and Herzegovina    BA   BIH 1997       
## 1692                        Bosnia and Herzegovina    BA   BIH 1998       
## 1693                        Bosnia and Herzegovina    BA   BIH 1999       
## 1694                        Bosnia and Herzegovina    BA   BIH 2004       
## 1695                        Bosnia and Herzegovina    BA   BIH 1991       
## 1696                        Bosnia and Herzegovina    BA   BIH 2006       
## 1697                        Bosnia and Herzegovina    BA   BIH 1993       
## 1698                        Bosnia and Herzegovina    BA   BIH 1994       
## 1699                        Bosnia and Herzegovina    BA   BIH 2008       
## 1700                        Bosnia and Herzegovina    BA   BIH 2009       
## 1701                        Bosnia and Herzegovina    BA   BIH 2010       
## 1702                        Bosnia and Herzegovina    BA   BIH 1967       
## 1703                        Bosnia and Herzegovina    BA   BIH 1968       
## 1704                        Bosnia and Herzegovina    BA   BIH 1987       
## 1705                        Bosnia and Herzegovina    BA   BIH 1988       
## 1706                        Bosnia and Herzegovina    BA   BIH 1989       
## 1707                        Bosnia and Herzegovina    BA   BIH 1990       
## 1708                        Bosnia and Herzegovina    BA   BIH 2003       
## 1709                        Bosnia and Herzegovina    BA   BIH 1961       
## 1710                        Bosnia and Herzegovina    BA   BIH 1962       
## 1711                        Bosnia and Herzegovina    BA   BIH 1963       
## 1712                        Bosnia and Herzegovina    BA   BIH 2016       
## 1713                        Bosnia and Herzegovina    BA   BIH 1964       
## 1714                        Bosnia and Herzegovina    BA   BIH 1965       
## 1715                        Bosnia and Herzegovina    BA   BIH 1966       
## 1716                        Bosnia and Herzegovina    BA   BIH 1979       
## 1717                        Bosnia and Herzegovina    BA   BIH 1972       
## 1718                        Bosnia and Herzegovina    BA   BIH 2014       
## 1719                        Bosnia and Herzegovina    BA   BIH 2015       
## 1720                        Bosnia and Herzegovina    BA   BIH 2000       
## 1721                        Bosnia and Herzegovina    BA   BIH 2017       
## 1722                        Bosnia and Herzegovina    BA   BIH 2018       
## 1723                        Bosnia and Herzegovina    BA   BIH 2019       
## 1724                        Bosnia and Herzegovina    BA   BIH 1992       
## 1725                        Bosnia and Herzegovina    BA   BIH 2001       
## 1726                        Bosnia and Herzegovina    BA   BIH 2002       
## 1727                        Bosnia and Herzegovina    BA   BIH 1960       
## 1728                        Bosnia and Herzegovina    BA   BIH 1976       
## 1729                        Bosnia and Herzegovina    BA   BIH 1978       
## 1730                        Bosnia and Herzegovina    BA   BIH 1974       
## 1731                        Bosnia and Herzegovina    BA   BIH 1975       
## 1732                        Bosnia and Herzegovina    BA   BIH 1970       
## 1733                        Bosnia and Herzegovina    BA   BIH 1973       
## 1734                        Bosnia and Herzegovina    BA   BIH 1969       
## 1735                        Bosnia and Herzegovina    BA   BIH 1977       
## 1736                        Bosnia and Herzegovina    BA   BIH 1971       
## 1737                                      Botswana    BW   BWA 1961       
## 1738                                      Botswana    BW   BWA 1960       
## 1739                                      Botswana    BW   BWA 2005       
## 1740                                      Botswana    BW   BWA 1962       
## 1741                                      Botswana    BW   BWA 1964       
## 1742                                      Botswana    BW   BWA 1972       
## 1743                                      Botswana    BW   BWA 1965       
## 1744                                      Botswana    BW   BWA 1963       
## 1745                                      Botswana    BW   BWA 2000       
## 1746                                      Botswana    BW   BWA 1975       
## 1747                                      Botswana    BW   BWA 2001       
## 1748                                      Botswana    BW   BWA 2002       
## 1749                                      Botswana    BW   BWA 2004       
## 1750                                      Botswana    BW   BWA 1971       
## 1751                                      Botswana    BW   BWA 1976       
## 1752                                      Botswana    BW   BWA 1977       
## 1753                                      Botswana    BW   BWA 2003       
## 1754                                      Botswana    BW   BWA 1974       
## 1755                                      Botswana    BW   BWA 1984       
## 1756                                      Botswana    BW   BWA 2013       
## 1757                                      Botswana    BW   BWA 1973       
## 1758                                      Botswana    BW   BWA 1966       
## 1759                                      Botswana    BW   BWA 1989       
## 1760                                      Botswana    BW   BWA 1990       
## 1761                                      Botswana    BW   BWA 1991       
## 1762                                      Botswana    BW   BWA 1982       
## 1763                                      Botswana    BW   BWA 1983       
## 1764                                      Botswana    BW   BWA 1999       
## 1765                                      Botswana    BW   BWA 1998       
## 1766                                      Botswana    BW   BWA 2017       
## 1767                                      Botswana    BW   BWA 2014       
## 1768                                      Botswana    BW   BWA 2015       
## 1769                                      Botswana    BW   BWA 2016       
## 1770                                      Botswana    BW   BWA 1969       
## 1771                                      Botswana    BW   BWA 2018       
## 1772                                      Botswana    BW   BWA 1967       
## 1773                                      Botswana    BW   BWA 1968       
## 1774                                      Botswana    BW   BWA 2012       
## 1775                                      Botswana    BW   BWA 2009       
## 1776                                      Botswana    BW   BWA 2010       
## 1777                                      Botswana    BW   BWA 1970       
## 1778                                      Botswana    BW   BWA 1987       
## 1779                                      Botswana    BW   BWA 1988       
## 1780                                      Botswana    BW   BWA 1985       
## 1781                                      Botswana    BW   BWA 1986       
## 1782                                      Botswana    BW   BWA 2007       
## 1783                                      Botswana    BW   BWA 2008       
## 1784                                      Botswana    BW   BWA 1981       
## 1785                                      Botswana    BW   BWA 2006       
## 1786                                      Botswana    BW   BWA 1996       
## 1787                                      Botswana    BW   BWA 1997       
## 1788                                      Botswana    BW   BWA 1980       
## 1789                                      Botswana    BW   BWA 1995       
## 1790                                      Botswana    BW   BWA 1978       
## 1791                                      Botswana    BW   BWA 1979       
## 1792                                      Botswana    BW   BWA 2011       
## 1793                                      Botswana    BW   BWA 1994       
## 1794                                      Botswana    BW   BWA 2021       
## 1795                                      Botswana    BW   BWA 1993       
## 1796                                      Botswana    BW   BWA 2019       
## 1797                                      Botswana    BW   BWA 2020       
## 1798                                      Botswana    BW   BWA 1992       
## 1799                                        Brazil    BR   BRA 1992       
## 1800                                        Brazil    BR   BRA 1983       
## 1801                                        Brazil    BR   BRA 2020       
## 1802                                        Brazil    BR   BRA 2019       
## 1803                                        Brazil    BR   BRA 1981       
## 1804                                        Brazil    BR   BRA 2005       
## 1805                                        Brazil    BR   BRA 2010       
## 1806                                        Brazil    BR   BRA 2021       
## 1807                                        Brazil    BR   BRA 2003       
## 1808                                        Brazil    BR   BRA 1982       
## 1809                                        Brazil    BR   BRA 2018       
## 1810                                        Brazil    BR   BRA 2002       
## 1811                                        Brazil    BR   BRA 1979       
## 1812                                        Brazil    BR   BRA 1980       
## 1813                                        Brazil    BR   BRA 1995       
## 1814                                        Brazil    BR   BRA 1978       
## 1815                                        Brazil    BR   BRA 1997       
## 1816                                        Brazil    BR   BRA 1988       
## 1817                                        Brazil    BR   BRA 2004       
## 1818                                        Brazil    BR   BRA 1996       
## 1819                                        Brazil    BR   BRA 1987       
## 1820                                        Brazil    BR   BRA 1993       
## 1821                                        Brazil    BR   BRA 1994       
## 1822                                        Brazil    BR   BRA 1990       
## 1823                                        Brazil    BR   BRA 1991       
## 1824                                        Brazil    BR   BRA 1969       
## 1825                                        Brazil    BR   BRA 1984       
## 1826                                        Brazil    BR   BRA 2008       
## 1827                                        Brazil    BR   BRA 2009       
## 1828                                        Brazil    BR   BRA 2000       
## 1829                                        Brazil    BR   BRA 2001       
## 1830                                        Brazil    BR   BRA 1962       
## 1831                                        Brazil    BR   BRA 1963       
## 1832                                        Brazil    BR   BRA 1964       
## 1833                                        Brazil    BR   BRA 2006       
## 1834                                        Brazil    BR   BRA 2007       
## 1835                                        Brazil    BR   BRA 1966       
## 1836                                        Brazil    BR   BRA 1967       
## 1837                                        Brazil    BR   BRA 1968       
## 1838                                        Brazil    BR   BRA 2011       
## 1839                                        Brazil    BR   BRA 1985       
## 1840                                        Brazil    BR   BRA 1986       
## 1841                                        Brazil    BR   BRA 2014       
## 1842                                        Brazil    BR   BRA 2015       
## 1843                                        Brazil    BR   BRA 2016       
## 1844                                        Brazil    BR   BRA 2017       
## 1845                                        Brazil    BR   BRA 1977       
## 1846                                        Brazil    BR   BRA 1976       
## 1847                                        Brazil    BR   BRA 1965       
## 1848                                        Brazil    BR   BRA 1961       
## 1849                                        Brazil    BR   BRA 1998       
## 1850                                        Brazil    BR   BRA 1999       
## 1851                                        Brazil    BR   BRA 1960       
## 1852                                        Brazil    BR   BRA 1972       
## 1853                                        Brazil    BR   BRA 1989       
## 1854                                        Brazil    BR   BRA 1975       
## 1855                                        Brazil    BR   BRA 2013       
## 1856                                        Brazil    BR   BRA 1973       
## 1857                                        Brazil    BR   BRA 2012       
## 1858                                        Brazil    BR   BRA 1970       
## 1859                                        Brazil    BR   BRA 1974       
## 1860                                        Brazil    BR   BRA 1971       
## 1861                        British Virgin Islands    VG   VGB 1960       
## 1862                        British Virgin Islands    VG   VGB 1999       
## 1863                        British Virgin Islands    VG   VGB 1963       
## 1864                        British Virgin Islands    VG   VGB 1994       
## 1865                        British Virgin Islands    VG   VGB 1995       
## 1866                        British Virgin Islands    VG   VGB 1961       
## 1867                        British Virgin Islands    VG   VGB 1998       
## 1868                        British Virgin Islands    VG   VGB 1974       
## 1869                        British Virgin Islands    VG   VGB 1996       
## 1870                        British Virgin Islands    VG   VGB 1962       
## 1871                        British Virgin Islands    VG   VGB 1970       
## 1872                        British Virgin Islands    VG   VGB 1971       
## 1873                        British Virgin Islands    VG   VGB 1975       
## 1874                        British Virgin Islands    VG   VGB 1997       
## 1875                        British Virgin Islands    VG   VGB 1972       
## 1876                        British Virgin Islands    VG   VGB 1973       
## 1877                        British Virgin Islands    VG   VGB 2006       
## 1878                        British Virgin Islands    VG   VGB 2007       
## 1879                        British Virgin Islands    VG   VGB 1964       
## 1880                        British Virgin Islands    VG   VGB 1965       
## 1881                        British Virgin Islands    VG   VGB 1987       
## 1882                        British Virgin Islands    VG   VGB 1988       
## 1883                        British Virgin Islands    VG   VGB 1980       
## 1884                        British Virgin Islands    VG   VGB 1981       
## 1885                        British Virgin Islands    VG   VGB 1982       
## 1886                        British Virgin Islands    VG   VGB 1993       
## 1887                        British Virgin Islands    VG   VGB 2019       
## 1888                        British Virgin Islands    VG   VGB 1983       
## 1889                        British Virgin Islands    VG   VGB 2008       
## 1890                        British Virgin Islands    VG   VGB 2009       
## 1891                        British Virgin Islands    VG   VGB 2010       
## 1892                        British Virgin Islands    VG   VGB 2011       
## 1893                        British Virgin Islands    VG   VGB 1976       
## 1894                        British Virgin Islands    VG   VGB 1966       
## 1895                        British Virgin Islands    VG   VGB 1967       
## 1896                        British Virgin Islands    VG   VGB 2002       
## 1897                        British Virgin Islands    VG   VGB 2003       
## 1898                        British Virgin Islands    VG   VGB 1968       
## 1899                        British Virgin Islands    VG   VGB 1969       
## 1900                        British Virgin Islands    VG   VGB 2005       
## 1901                        British Virgin Islands    VG   VGB 1979       
## 1902                        British Virgin Islands    VG   VGB 1984       
## 1903                        British Virgin Islands    VG   VGB 1985       
## 1904                        British Virgin Islands    VG   VGB 1986       
## 1905                        British Virgin Islands    VG   VGB 1978       
## 1906                        British Virgin Islands    VG   VGB 2016       
## 1907                        British Virgin Islands    VG   VGB 2000       
## 1908                        British Virgin Islands    VG   VGB 2001       
## 1909                        British Virgin Islands    VG   VGB 1992       
## 1910                        British Virgin Islands    VG   VGB 1989       
## 1911                        British Virgin Islands    VG   VGB 2017       
## 1912                        British Virgin Islands    VG   VGB 2018       
## 1913                        British Virgin Islands    VG   VGB 2012       
## 1914                        British Virgin Islands    VG   VGB 2013       
## 1915                        British Virgin Islands    VG   VGB 2020       
## 1916                        British Virgin Islands    VG   VGB 2021       
## 1917                        British Virgin Islands    VG   VGB 2004       
## 1918                        British Virgin Islands    VG   VGB 1990       
## 1919                        British Virgin Islands    VG   VGB 1977       
## 1920                        British Virgin Islands    VG   VGB 2014       
## 1921                        British Virgin Islands    VG   VGB 1991       
## 1922                        British Virgin Islands    VG   VGB 2015       
## 1923                             Brunei Darussalam    BN   BRN 2018       
## 1924                             Brunei Darussalam    BN   BRN 1978       
## 1925                             Brunei Darussalam    BN   BRN 1979       
## 1926                             Brunei Darussalam    BN   BRN 2017       
## 1927                             Brunei Darussalam    BN   BRN 1990       
## 1928                             Brunei Darussalam    BN   BRN 2009       
## 1929                             Brunei Darussalam    BN   BRN 2021       
## 1930                             Brunei Darussalam    BN   BRN 2008       
## 1931                             Brunei Darussalam    BN   BRN 1973       
## 1932                             Brunei Darussalam    BN   BRN 2019       
## 1933                             Brunei Darussalam    BN   BRN 2020       
## 1934                             Brunei Darussalam    BN   BRN 1989       
## 1935                             Brunei Darussalam    BN   BRN 1977       
## 1936                             Brunei Darussalam    BN   BRN 1994       
## 1937                             Brunei Darussalam    BN   BRN 1983       
## 1938                             Brunei Darussalam    BN   BRN 1976       
## 1939                             Brunei Darussalam    BN   BRN 2016       
## 1940                             Brunei Darussalam    BN   BRN 1986       
## 1941                             Brunei Darussalam    BN   BRN 1974       
## 1942                             Brunei Darussalam    BN   BRN 1975       
## 1943                             Brunei Darussalam    BN   BRN 1992       
## 1944                             Brunei Darussalam    BN   BRN 1993       
## 1945                             Brunei Darussalam    BN   BRN 1962       
## 1946                             Brunei Darussalam    BN   BRN 1963       
## 1947                             Brunei Darussalam    BN   BRN 1980       
## 1948                             Brunei Darussalam    BN   BRN 1981       
## 1949                             Brunei Darussalam    BN   BRN 1982       
## 1950                             Brunei Darussalam    BN   BRN 2000       
## 1951                             Brunei Darussalam    BN   BRN 2001       
## 1952                             Brunei Darussalam    BN   BRN 2002       
## 1953                             Brunei Darussalam    BN   BRN 2003       
## 1954                             Brunei Darussalam    BN   BRN 1987       
## 1955                             Brunei Darussalam    BN   BRN 1991       
## 1956                             Brunei Darussalam    BN   BRN 2006       
## 1957                             Brunei Darussalam    BN   BRN 2007       
## 1958                             Brunei Darussalam    BN   BRN 1961       
## 1959                             Brunei Darussalam    BN   BRN 2013       
## 1960                             Brunei Darussalam    BN   BRN 2010       
## 1961                             Brunei Darussalam    BN   BRN 2011       
## 1962                             Brunei Darussalam    BN   BRN 2012       
## 1963                             Brunei Darussalam    BN   BRN 1971       
## 1964                             Brunei Darussalam    BN   BRN 2014       
## 1965                             Brunei Darussalam    BN   BRN 2015       
## 1966                             Brunei Darussalam    BN   BRN 1972       
## 1967                             Brunei Darussalam    BN   BRN 1996       
## 1968                             Brunei Darussalam    BN   BRN 2004       
## 1969                             Brunei Darussalam    BN   BRN 1988       
## 1970                             Brunei Darussalam    BN   BRN 1960       
## 1971                             Brunei Darussalam    BN   BRN 1985       
## 1972                             Brunei Darussalam    BN   BRN 1997       
## 1973                             Brunei Darussalam    BN   BRN 1998       
## 1974                             Brunei Darussalam    BN   BRN 1995       
## 1975                             Brunei Darussalam    BN   BRN 1999       
## 1976                             Brunei Darussalam    BN   BRN 1970       
## 1977                             Brunei Darussalam    BN   BRN 1966       
## 1978                             Brunei Darussalam    BN   BRN 1984       
## 1979                             Brunei Darussalam    BN   BRN 1965       
## 1980                             Brunei Darussalam    BN   BRN 1964       
## 1981                             Brunei Darussalam    BN   BRN 2005       
## 1982                             Brunei Darussalam    BN   BRN 1969       
## 1983                             Brunei Darussalam    BN   BRN 1967       
## 1984                             Brunei Darussalam    BN   BRN 1968       
## 1985                                      Bulgaria    BG   BGR 1998       
## 1986                                      Bulgaria    BG   BGR 1961       
## 1987                                      Bulgaria    BG   BGR 1993       
## 1988                                      Bulgaria    BG   BGR 1960       
## 1989                                      Bulgaria    BG   BGR 1971       
## 1990                                      Bulgaria    BG   BGR 1972       
## 1991                                      Bulgaria    BG   BGR 1995       
## 1992                                      Bulgaria    BG   BGR 1997       
## 1993                                      Bulgaria    BG   BGR 1967       
## 1994                                      Bulgaria    BG   BGR 1968       
## 1995                                      Bulgaria    BG   BGR 1962       
## 1996                                      Bulgaria    BG   BGR 1996       
## 1997                                      Bulgaria    BG   BGR 1970       
## 1998                                      Bulgaria    BG   BGR 1983       
## 1999                                      Bulgaria    BG   BGR 1994       
## 2000                                      Bulgaria    BG   BGR 1969       
## 2001                                      Bulgaria    BG   BGR 1963       
## 2002                                      Bulgaria    BG   BGR 1964       
## 2003                                      Bulgaria    BG   BGR 1984       
## 2004                                      Bulgaria    BG   BGR 1985       
## 2005                                      Bulgaria    BG   BGR 1978       
## 2006                                      Bulgaria    BG   BGR 1979       
## 2007                                      Bulgaria    BG   BGR 1992       
## 2008                                      Bulgaria    BG   BGR 2005       
## 2009                                      Bulgaria    BG   BGR 2006       
## 2010                                      Bulgaria    BG   BGR 2007       
## 2011                                      Bulgaria    BG   BGR 2008       
## 2012                                      Bulgaria    BG   BGR 2009       
## 2013                                      Bulgaria    BG   BGR 2010       
## 2014                                      Bulgaria    BG   BGR 1973       
## 2015                                      Bulgaria    BG   BGR 1999       
## 2016                                      Bulgaria    BG   BGR 1965       
## 2017                                      Bulgaria    BG   BGR 2001       
## 2018                                      Bulgaria    BG   BGR 2002       
## 2019                                      Bulgaria    BG   BGR 2003       
## 2020                                      Bulgaria    BG   BGR 1966       
## 2021                                      Bulgaria    BG   BGR 2018       
## 2022                                      Bulgaria    BG   BGR 2019       
## 2023                                      Bulgaria    BG   BGR 1980       
## 2024                                      Bulgaria    BG   BGR 1981       
## 2025                                      Bulgaria    BG   BGR 1982       
## 2026                                      Bulgaria    BG   BGR 1976       
## 2027                                      Bulgaria    BG   BGR 1977       
## 2028                                      Bulgaria    BG   BGR 1974       
## 2029                                      Bulgaria    BG   BGR 2000       
## 2030                                      Bulgaria    BG   BGR 1991       
## 2031                                      Bulgaria    BG   BGR 1987       
## 2032                                      Bulgaria    BG   BGR 2016       
## 2033                                      Bulgaria    BG   BGR 2017       
## 2034                                      Bulgaria    BG   BGR 2021       
## 2035                                      Bulgaria    BG   BGR 2004       
## 2036                                      Bulgaria    BG   BGR 1988       
## 2037                                      Bulgaria    BG   BGR 2020       
## 2038                                      Bulgaria    BG   BGR 1975       
## 2039                                      Bulgaria    BG   BGR 2012       
## 2040                                      Bulgaria    BG   BGR 2013       
## 2041                                      Bulgaria    BG   BGR 1986       
## 2042                                      Bulgaria    BG   BGR 1990       
## 2043                                      Bulgaria    BG   BGR 1989       
## 2044                                      Bulgaria    BG   BGR 2011       
## 2045                                      Bulgaria    BG   BGR 2014       
## 2046                                      Bulgaria    BG   BGR 2015       
## 2047                                  Burkina Faso    BF   BFA 2018       
## 2048                                  Burkina Faso    BF   BFA 2014       
## 2049                                  Burkina Faso    BF   BFA 2013       
## 2050                                  Burkina Faso    BF   BFA 2004       
## 2051                                  Burkina Faso    BF   BFA 2003       
## 2052                                  Burkina Faso    BF   BFA 1972       
## 2053                                  Burkina Faso    BF   BFA 1973       
## 2054                                  Burkina Faso    BF   BFA 2017       
## 2055                                  Burkina Faso    BF   BFA 2016       
## 2056                                  Burkina Faso    BF   BFA 1976       
## 2057                                  Burkina Faso    BF   BFA 1977       
## 2058                                  Burkina Faso    BF   BFA 2015       
## 2059                                  Burkina Faso    BF   BFA 1983       
## 2060                                  Burkina Faso    BF   BFA 2012       
## 2061                                  Burkina Faso    BF   BFA 1985       
## 2062                                  Burkina Faso    BF   BFA 1986       
## 2063                                  Burkina Faso    BF   BFA 1974       
## 2064                                  Burkina Faso    BF   BFA 1975       
## 2065                                  Burkina Faso    BF   BFA 1990       
## 2066                                  Burkina Faso    BF   BFA 1991       
## 2067                                  Burkina Faso    BF   BFA 1978       
## 2068                                  Burkina Faso    BF   BFA 2019       
## 2069                                  Burkina Faso    BF   BFA 2020       
## 2070                                  Burkina Faso    BF   BFA 2021       
## 2071                                  Burkina Faso    BF   BFA 1982       
## 2072                                  Burkina Faso    BF   BFA 1996       
## 2073                                  Burkina Faso    BF   BFA 1997       
## 2074                                  Burkina Faso    BF   BFA 1998       
## 2075                                  Burkina Faso    BF   BFA 1999       
## 2076                                  Burkina Faso    BF   BFA 1988       
## 2077                                  Burkina Faso    BF   BFA 1989       
## 2078                                  Burkina Faso    BF   BFA 2002       
## 2079                                  Burkina Faso    BF   BFA 1961       
## 2080                                  Burkina Faso    BF   BFA 1962       
## 2081                                  Burkina Faso    BF   BFA 2005       
## 2082                                  Burkina Faso    BF   BFA 2006       
## 2083                                  Burkina Faso    BF   BFA 2007       
## 2084                                  Burkina Faso    BF   BFA 2008       
## 2085                                  Burkina Faso    BF   BFA 2009       
## 2086                                  Burkina Faso    BF   BFA 2010       
## 2087                                  Burkina Faso    BF   BFA 2011       
## 2088                                  Burkina Faso    BF   BFA 1971       
## 2089                                  Burkina Faso    BF   BFA 1981       
## 2090                                  Burkina Faso    BF   BFA 1987       
## 2091                                  Burkina Faso    BF   BFA 2001       
## 2092                                  Burkina Faso    BF   BFA 1960       
## 2093                                  Burkina Faso    BF   BFA 1970       
## 2094                                  Burkina Faso    BF   BFA 1994       
## 2095                                  Burkina Faso    BF   BFA 1979       
## 2096                                  Burkina Faso    BF   BFA 1980       
## 2097                                  Burkina Faso    BF   BFA 1992       
## 2098                                  Burkina Faso    BF   BFA 1993       
## 2099                                  Burkina Faso    BF   BFA 1995       
## 2100                                  Burkina Faso    BF   BFA 1984       
## 2101                                  Burkina Faso    BF   BFA 1969       
## 2102                                  Burkina Faso    BF   BFA 1963       
## 2103                                  Burkina Faso    BF   BFA 2000       
## 2104                                  Burkina Faso    BF   BFA 1968       
## 2105                                  Burkina Faso    BF   BFA 1965       
## 2106                                  Burkina Faso    BF   BFA 1967       
## 2107                                  Burkina Faso    BF   BFA 1964       
## 2108                                  Burkina Faso    BF   BFA 1966       
## 2109                                       Burundi    BI   BDI 1997       
## 2110                                       Burundi    BI   BDI 1992       
## 2111                                       Burundi    BI   BDI 1964       
## 2112                                       Burundi    BI   BDI 1994       
## 2113                                       Burundi    BI   BDI 1996       
## 2114                                       Burundi    BI   BDI 1967       
## 2115                                       Burundi    BI   BDI 1968       
## 2116                                       Burundi    BI   BDI 1969       
## 2117                                       Burundi    BI   BDI 1995       
## 2118                                       Burundi    BI   BDI 1963       
## 2119                                       Burundi    BI   BDI 1976       
## 2120                                       Burundi    BI   BDI 1993       
## 2121                                       Burundi    BI   BDI 1965       
## 2122                                       Burundi    BI   BDI 1966       
## 2123                                       Burundi    BI   BDI 1981       
## 2124                                       Burundi    BI   BDI 1982       
## 2125                                       Burundi    BI   BDI 1983       
## 2126                                       Burundi    BI   BDI 1974       
## 2127                                       Burundi    BI   BDI 1975       
## 2128                                       Burundi    BI   BDI 1991       
## 2129                                       Burundi    BI   BDI 1990       
## 2130                                       Burundi    BI   BDI 2005       
## 2131                                       Burundi    BI   BDI 2006       
## 2132                                       Burundi    BI   BDI 2007       
## 2133                                       Burundi    BI   BDI 2008       
## 2134                                       Burundi    BI   BDI 2009       
## 2135                                       Burundi    BI   BDI 2010       
## 2136                                       Burundi    BI   BDI 1998       
## 2137                                       Burundi    BI   BDI 1960       
## 2138                                       Burundi    BI   BDI 1961       
## 2139                                       Burundi    BI   BDI 2001       
## 2140                                       Burundi    BI   BDI 2002       
## 2141                                       Burundi    BI   BDI 1962       
## 2142                                       Burundi    BI   BDI 2004       
## 2143                                       Burundi    BI   BDI 2018       
## 2144                                       Burundi    BI   BDI 1977       
## 2145                                       Burundi    BI   BDI 1978       
## 2146                                       Burundi    BI   BDI 1979       
## 2147                                       Burundi    BI   BDI 1980       
## 2148                                       Burundi    BI   BDI 1973       
## 2149                                       Burundi    BI   BDI 1970       
## 2150                                       Burundi    BI   BDI 1999       
## 2151                                       Burundi    BI   BDI 2000       
## 2152                                       Burundi    BI   BDI 2021       
## 2153                                       Burundi    BI   BDI 2015       
## 2154                                       Burundi    BI   BDI 2016       
## 2155                                       Burundi    BI   BDI 2017       
## 2156                                       Burundi    BI   BDI 1972       
## 2157                                       Burundi    BI   BDI 1986       
## 2158                                       Burundi    BI   BDI 2019       
## 2159                                       Burundi    BI   BDI 2020       
## 2160                                       Burundi    BI   BDI 1989       
## 2161                                       Burundi    BI   BDI 2012       
## 2162                                       Burundi    BI   BDI 1984       
## 2163                                       Burundi    BI   BDI 1971       
## 2164                                       Burundi    BI   BDI 2011       
## 2165                                       Burundi    BI   BDI 2003       
## 2166                                       Burundi    BI   BDI 1987       
## 2167                                       Burundi    BI   BDI 1988       
## 2168                                       Burundi    BI   BDI 2013       
## 2169                                       Burundi    BI   BDI 2014       
## 2170                                       Burundi    BI   BDI 1985       
## 2171                                    Cabo Verde    CV   CPV 2015       
## 2172                                    Cabo Verde    CV   CPV 2011       
## 2173                                    Cabo Verde    CV   CPV 2010       
## 2174                                    Cabo Verde    CV   CPV 2001       
## 2175                                    Cabo Verde    CV   CPV 1969       
## 2176                                    Cabo Verde    CV   CPV 2013       
## 2177                                    Cabo Verde    CV   CPV 2009       
## 2178                                    Cabo Verde    CV   CPV 1973       
## 2179                                    Cabo Verde    CV   CPV 2012       
## 2180                                    Cabo Verde    CV   CPV 2020       
## 2181                                    Cabo Verde    CV   CPV 2014       
## 2182                                    Cabo Verde    CV   CPV 1981       
## 2183                                    Cabo Verde    CV   CPV 1974       
## 2184                                    Cabo Verde    CV   CPV 1970       
## 2185                                    Cabo Verde    CV   CPV 1971       
## 2186                                    Cabo Verde    CV   CPV 1972       
## 2187                                    Cabo Verde    CV   CPV 1982       
## 2188                                    Cabo Verde    CV   CPV 1988       
## 2189                                    Cabo Verde    CV   CPV 2016       
## 2190                                    Cabo Verde    CV   CPV 2017       
## 2191                                    Cabo Verde    CV   CPV 1987       
## 2192                                    Cabo Verde    CV   CPV 2019       
## 2193                                    Cabo Verde    CV   CPV 1993       
## 2194                                    Cabo Verde    CV   CPV 1994       
## 2195                                    Cabo Verde    CV   CPV 1995       
## 2196                                    Cabo Verde    CV   CPV 1996       
## 2197                                    Cabo Verde    CV   CPV 1984       
## 2198                                    Cabo Verde    CV   CPV 1985       
## 2199                                    Cabo Verde    CV   CPV 1986       
## 2200                                    Cabo Verde    CV   CPV 2000       
## 2201                                    Cabo Verde    CV   CPV 1961       
## 2202                                    Cabo Verde    CV   CPV 2002       
## 2203                                    Cabo Verde    CV   CPV 2003       
## 2204                                    Cabo Verde    CV   CPV 2018       
## 2205                                    Cabo Verde    CV   CPV 2005       
## 2206                                    Cabo Verde    CV   CPV 2006       
## 2207                                    Cabo Verde    CV   CPV 2007       
## 2208                                    Cabo Verde    CV   CPV 2008       
## 2209                                    Cabo Verde    CV   CPV 1968       
## 2210                                    Cabo Verde    CV   CPV 1967       
## 2211                                    Cabo Verde    CV   CPV 1983       
## 2212                                    Cabo Verde    CV   CPV 1998       
## 2213                                    Cabo Verde    CV   CPV 1999       
## 2214                                    Cabo Verde    CV   CPV 1960       
## 2215                                    Cabo Verde    CV   CPV 1978       
## 2216                                    Cabo Verde    CV   CPV 1975       
## 2217                                    Cabo Verde    CV   CPV 1976       
## 2218                                    Cabo Verde    CV   CPV 1977       
## 2219                                    Cabo Verde    CV   CPV 1990       
## 2220                                    Cabo Verde    CV   CPV 1979       
## 2221                                    Cabo Verde    CV   CPV 1980       
## 2222                                    Cabo Verde    CV   CPV 2021       
## 2223                                    Cabo Verde    CV   CPV 1966       
## 2224                                    Cabo Verde    CV   CPV 1997       
## 2225                                    Cabo Verde    CV   CPV 1992       
## 2226                                    Cabo Verde    CV   CPV 1989       
## 2227                                    Cabo Verde    CV   CPV 1962       
## 2228                                    Cabo Verde    CV   CPV 1991       
## 2229                                    Cabo Verde    CV   CPV 1963       
## 2230                                    Cabo Verde    CV   CPV 1965       
## 2231                                    Cabo Verde    CV   CPV 2004       
## 2232                                    Cabo Verde    CV   CPV 1964       
## 2233                                      Cambodia    KH   KHM 1992       
## 2234                                      Cambodia    KH   KHM 1989       
## 2235                                      Cambodia    KH   KHM 1987       
## 2236                                      Cambodia    KH   KHM 1966       
## 2237                                      Cambodia    KH   KHM 1967       
## 2238                                      Cambodia    KH   KHM 1990       
## 2239                                      Cambodia    KH   KHM 1991       
## 2240                                      Cambodia    KH   KHM 1963       
## 2241                                      Cambodia    KH   KHM 1988       
## 2242                                      Cambodia    KH   KHM 2000       
## 2243                                      Cambodia    KH   KHM 1964       
## 2244                                      Cambodia    KH   KHM 1965       
## 2245                                      Cambodia    KH   KHM 1979       
## 2246                                      Cambodia    KH   KHM 1980       
## 2247                                      Cambodia    KH   KHM 1981       
## 2248                                      Cambodia    KH   KHM 1973       
## 2249                                      Cambodia    KH   KHM 1974       
## 2250                                      Cambodia    KH   KHM 1986       
## 2251                                      Cambodia    KH   KHM 1972       
## 2252                                      Cambodia    KH   KHM 1975       
## 2253                                      Cambodia    KH   KHM 2001       
## 2254                                      Cambodia    KH   KHM 2002       
## 2255                                      Cambodia    KH   KHM 1961       
## 2256                                      Cambodia    KH   KHM 2004       
## 2257                                      Cambodia    KH   KHM 1968       
## 2258                                      Cambodia    KH   KHM 1993       
## 2259                                      Cambodia    KH   KHM 2003       
## 2260                                      Cambodia    KH   KHM 1995       
## 2261                                      Cambodia    KH   KHM 1996       
## 2262                                      Cambodia    KH   KHM 1962       
## 2263                                      Cambodia    KH   KHM 1960       
## 2264                                      Cambodia    KH   KHM 2012       
## 2265                                      Cambodia    KH   KHM 1999       
## 2266                                      Cambodia    KH   KHM 1976       
## 2267                                      Cambodia    KH   KHM 1977       
## 2268                                      Cambodia    KH   KHM 1978       
## 2269                                      Cambodia    KH   KHM 2017       
## 2270                                      Cambodia    KH   KHM 2018       
## 2271                                      Cambodia    KH   KHM 1969       
## 2272                                      Cambodia    KH   KHM 1994       
## 2273                                      Cambodia    KH   KHM 1971       
## 2274                                      Cambodia    KH   KHM 2009       
## 2275                                      Cambodia    KH   KHM 2010       
## 2276                                      Cambodia    KH   KHM 2011       
## 2277                                      Cambodia    KH   KHM 1998       
## 2278                                      Cambodia    KH   KHM 2016       
## 2279                                      Cambodia    KH   KHM 2013       
## 2280                                      Cambodia    KH   KHM 2014       
## 2281                                      Cambodia    KH   KHM 2015       
## 2282                                      Cambodia    KH   KHM 1982       
## 2283                                      Cambodia    KH   KHM 1983       
## 2284                                      Cambodia    KH   KHM 2019       
## 2285                                      Cambodia    KH   KHM 1970       
## 2286                                      Cambodia    KH   KHM 2006       
## 2287                                      Cambodia    KH   KHM 2007       
## 2288                                      Cambodia    KH   KHM 1984       
## 2289                                      Cambodia    KH   KHM 1985       
## 2290                                      Cambodia    KH   KHM 1997       
## 2291                                      Cambodia    KH   KHM 2008       
## 2292                                      Cambodia    KH   KHM 2005       
## 2293                                      Cambodia    KH   KHM 2020       
## 2294                                      Cambodia    KH   KHM 2021       
## 2295                                      Cameroon    CM   CMR 2015       
## 2296                                      Cameroon    CM   CMR 2010       
## 2297                                      Cameroon    CM   CMR 1982       
## 2298                                      Cameroon    CM   CMR 2011       
## 2299                                      Cameroon    CM   CMR 2009       
## 2300                                      Cameroon    CM   CMR 2014       
## 2301                                      Cameroon    CM   CMR 1971       
## 2302                                      Cameroon    CM   CMR 2013       
## 2303                                      Cameroon    CM   CMR 2008       
## 2304                                      Cameroon    CM   CMR 1966       
## 2305                                      Cameroon    CM   CMR 2012       
## 2306                                      Cameroon    CM   CMR 1968       
## 2307                                      Cameroon    CM   CMR 1969       
## 2308                                      Cameroon    CM   CMR 1970       
## 2309                                      Cameroon    CM   CMR 1967       
## 2310                                      Cameroon    CM   CMR 1972       
## 2311                                      Cameroon    CM   CMR 2016       
## 2312                                      Cameroon    CM   CMR 2017       
## 2313                                      Cameroon    CM   CMR 1986       
## 2314                                      Cameroon    CM   CMR 2019       
## 2315                                      Cameroon    CM   CMR 1993       
## 2316                                      Cameroon    CM   CMR 1994       
## 2317                                      Cameroon    CM   CMR 1995       
## 2318                                      Cameroon    CM   CMR 1980       
## 2319                                      Cameroon    CM   CMR 1983       
## 2320                                      Cameroon    CM   CMR 1984       
## 2321                                      Cameroon    CM   CMR 1985       
## 2322                                      Cameroon    CM   CMR 2000       
## 2323                                      Cameroon    CM   CMR 2001       
## 2324                                      Cameroon    CM   CMR 2002       
## 2325                                      Cameroon    CM   CMR 2003       
## 2326                                      Cameroon    CM   CMR 2018       
## 2327                                      Cameroon    CM   CMR 1992       
## 2328                                      Cameroon    CM   CMR 2006       
## 2329                                      Cameroon    CM   CMR 2007       
## 2330                                      Cameroon    CM   CMR 1965       
## 2331                                      Cameroon    CM   CMR 1964       
## 2332                                      Cameroon    CM   CMR 2021       
## 2333                                      Cameroon    CM   CMR 1981       
## 2334                                      Cameroon    CM   CMR 1998       
## 2335                                      Cameroon    CM   CMR 1999       
## 2336                                      Cameroon    CM   CMR 2005       
## 2337                                      Cameroon    CM   CMR 1976       
## 2338                                      Cameroon    CM   CMR 1973       
## 2339                                      Cameroon    CM   CMR 1974       
## 2340                                      Cameroon    CM   CMR 1979       
## 2341                                      Cameroon    CM   CMR 1996       
## 2342                                      Cameroon    CM   CMR 1977       
## 2343                                      Cameroon    CM   CMR 1978       
## 2344                                      Cameroon    CM   CMR 1988       
## 2345                                      Cameroon    CM   CMR 1975       
## 2346                                      Cameroon    CM   CMR 1997       
## 2347                                      Cameroon    CM   CMR 1987       
## 2348                                      Cameroon    CM   CMR 1962       
## 2349                                      Cameroon    CM   CMR 1963       
## 2350                                      Cameroon    CM   CMR 1990       
## 2351                                      Cameroon    CM   CMR 1991       
## 2352                                      Cameroon    CM   CMR 1961       
## 2353                                      Cameroon    CM   CMR 2020       
## 2354                                      Cameroon    CM   CMR 1960       
## 2355                                      Cameroon    CM   CMR 2004       
## 2356                                      Cameroon    CM   CMR 1989       
## 2357                                        Canada    CA   CAN 1988       
## 2358                                        Canada    CA   CAN 1963       
## 2359                                        Canada    CA   CAN 1985       
## 2360                                        Canada    CA   CAN 1987       
## 2361                                        Canada    CA   CAN 1962       
## 2362                                        Canada    CA   CAN 1964       
## 2363                                        Canada    CA   CAN 1984       
## 2364                                        Canada    CA   CAN 1986       
## 2365                                        Canada    CA   CAN 1976       
## 2366                                        Canada    CA   CAN 1973       
## 2367                                        Canada    CA   CAN 1974       
## 2368                                        Canada    CA   CAN 1961       
## 2369                                        Canada    CA   CAN 1970       
## 2370                                        Canada    CA   CAN 1971       
## 2371                                        Canada    CA   CAN 1983       
## 2372                                        Canada    CA   CAN 1975       
## 2373                                        Canada    CA   CAN 1996       
## 2374                                        Canada    CA   CAN 1997       
## 2375                                        Canada    CA   CAN 1998       
## 2376                                        Canada    CA   CAN 1960       
## 2377                                        Canada    CA   CAN 2000       
## 2378                                        Canada    CA   CAN 1965       
## 2379                                        Canada    CA   CAN 1989       
## 2380                                        Canada    CA   CAN 1999       
## 2381                                        Canada    CA   CAN 1991       
## 2382                                        Canada    CA   CAN 1992       
## 2383                                        Canada    CA   CAN 1993       
## 2384                                        Canada    CA   CAN 1982       
## 2385                                        Canada    CA   CAN 2008       
## 2386                                        Canada    CA   CAN 2009       
## 2387                                        Canada    CA   CAN 2010       
## 2388                                        Canada    CA   CAN 2011       
## 2389                                        Canada    CA   CAN 1972       
## 2390                                        Canada    CA   CAN 2013       
## 2391                                        Canada    CA   CAN 2014       
## 2392                                        Canada    CA   CAN 1966       
## 2393                                        Canada    CA   CAN 1990       
## 2394                                        Canada    CA   CAN 1968       
## 2395                                        Canada    CA   CAN 1969       
## 2396                                        Canada    CA   CAN 2006       
## 2397                                        Canada    CA   CAN 2007       
## 2398                                        Canada    CA   CAN 1981       
## 2399                                        Canada    CA   CAN 1995       
## 2400                                        Canada    CA   CAN 1978       
## 2401                                        Canada    CA   CAN 2015       
## 2402                                        Canada    CA   CAN 1967       
## 2403                                        Canada    CA   CAN 2012       
## 2404                                        Canada    CA   CAN 2003       
## 2405                                        Canada    CA   CAN 1979       
## 2406                                        Canada    CA   CAN 1980       
## 2407                                        Canada    CA   CAN 1977       
## 2408                                        Canada    CA   CAN 2021       
## 2409                                        Canada    CA   CAN 2004       
## 2410                                        Canada    CA   CAN 2001       
## 2411                                        Canada    CA   CAN 1994       
## 2412                                        Canada    CA   CAN 2017       
## 2413                                        Canada    CA   CAN 2005       
## 2414                                        Canada    CA   CAN 2002       
## 2415                                        Canada    CA   CAN 2016       
## 2416                                        Canada    CA   CAN 2018       
## 2417                                        Canada    CA   CAN 2020       
## 2418                                        Canada    CA   CAN 2019       
## 2419                        Caribbean small states    S3   CSS 2004       
## 2420                        Caribbean small states    S3   CSS 1963       
## 2421                        Caribbean small states    S3   CSS 2003       
## 2422                        Caribbean small states    S3   CSS 1967       
## 2423                        Caribbean small states    S3   CSS 2005       
## 2424                        Caribbean small states    S3   CSS 2007       
## 2425                        Caribbean small states    S3   CSS 1962       
## 2426                        Caribbean small states    S3   CSS 1964       
## 2427                        Caribbean small states    S3   CSS 1965       
## 2428                        Caribbean small states    S3   CSS 2002       
## 2429                        Caribbean small states    S3   CSS 1966       
## 2430                        Caribbean small states    S3   CSS 2015       
## 2431                        Caribbean small states    S3   CSS 1978       
## 2432                        Caribbean small states    S3   CSS 2006       
## 2433                        Caribbean small states    S3   CSS 2009       
## 2434                        Caribbean small states    S3   CSS 1981       
## 2435                        Caribbean small states    S3   CSS 1968       
## 2436                        Caribbean small states    S3   CSS 1979       
## 2437                        Caribbean small states    S3   CSS 2001       
## 2438                        Caribbean small states    S3   CSS 1987       
## 2439                        Caribbean small states    S3   CSS 1988       
## 2440                        Caribbean small states    S3   CSS 2008       
## 2441                        Caribbean small states    S3   CSS 1990       
## 2442                        Caribbean small states    S3   CSS 1980       
## 2443                        Caribbean small states    S3   CSS 1992       
## 2444                        Caribbean small states    S3   CSS 1989       
## 2445                        Caribbean small states    S3   CSS 1994       
## 2446                        Caribbean small states    S3   CSS 1995       
## 2447                        Caribbean small states    S3   CSS 2010       
## 2448                        Caribbean small states    S3   CSS 1993       
## 2449                        Caribbean small states    S3   CSS 2012       
## 2450                        Caribbean small states    S3   CSS 1986       
## 2451                        Caribbean small states    S3   CSS 2000       
## 2452                        Caribbean small states    S3   CSS 1961       
## 2453                        Caribbean small states    S3   CSS 1976       
## 2454                        Caribbean small states    S3   CSS 1977       
## 2455                        Caribbean small states    S3   CSS 2016       
## 2456                        Caribbean small states    S3   CSS 2017       
## 2457                        Caribbean small states    S3   CSS 2018       
## 2458                        Caribbean small states    S3   CSS 2019       
## 2459                        Caribbean small states    S3   CSS 1969       
## 2460                        Caribbean small states    S3   CSS 1970       
## 2461                        Caribbean small states    S3   CSS 2011       
## 2462                        Caribbean small states    S3   CSS 1985       
## 2463                        Caribbean small states    S3   CSS 1973       
## 2464                        Caribbean small states    S3   CSS 1974       
## 2465                        Caribbean small states    S3   CSS 1975       
## 2466                        Caribbean small states    S3   CSS 2013       
## 2467                        Caribbean small states    S3   CSS 2014       
## 2468                        Caribbean small states    S3   CSS 2020       
## 2469                        Caribbean small states    S3   CSS 1991       
## 2470                        Caribbean small states    S3   CSS 1971       
## 2471                        Caribbean small states    S3   CSS 1972       
## 2472                        Caribbean small states    S3   CSS 1984       
## 2473                        Caribbean small states    S3   CSS 2021       
## 2474                        Caribbean small states    S3   CSS 1960       
## 2475                        Caribbean small states    S3   CSS 1982       
## 2476                        Caribbean small states    S3   CSS 1983       
## 2477                        Caribbean small states    S3   CSS 1999       
## 2478                        Caribbean small states    S3   CSS 1997       
## 2479                        Caribbean small states    S3   CSS 1998       
## 2480                        Caribbean small states    S3   CSS 1996       
## 2481                                Cayman Islands    KY   CYM 1989       
## 2482                                Cayman Islands    KY   CYM 1986       
## 2483                                Cayman Islands    KY   CYM 1988       
## 2484                                Cayman Islands    KY   CYM 1984       
## 2485                                Cayman Islands    KY   CYM 1985       
## 2486                                Cayman Islands    KY   CYM 1987       
## 2487                                Cayman Islands    KY   CYM 1972       
## 2488                                Cayman Islands    KY   CYM 1973       
## 2489                                Cayman Islands    KY   CYM 1967       
## 2490                                Cayman Islands    KY   CYM 1975       
## 2491                                Cayman Islands    KY   CYM 1964       
## 2492                                Cayman Islands    KY   CYM 1965       
## 2493                                Cayman Islands    KY   CYM 1974       
## 2494                                Cayman Islands    KY   CYM 1963       
## 2495                                Cayman Islands    KY   CYM 1998       
## 2496                                Cayman Islands    KY   CYM 1999       
## 2497                                Cayman Islands    KY   CYM 1966       
## 2498                                Cayman Islands    KY   CYM 1982       
## 2499                                Cayman Islands    KY   CYM 2002       
## 2500                                Cayman Islands    KY   CYM 1990       
## 2501                                Cayman Islands    KY   CYM 2000       
## 2502                                Cayman Islands    KY   CYM 2001       
## 2503                                Cayman Islands    KY   CYM 1993       
## 2504                                Cayman Islands    KY   CYM 1994       
## 2505                                Cayman Islands    KY   CYM 1983       
## 2506                                Cayman Islands    KY   CYM 1981       
## 2507                                Cayman Islands    KY   CYM 1997       
## 2508                                Cayman Islands    KY   CYM 2011       
## 2509                                Cayman Islands    KY   CYM 2012       
## 2510                                Cayman Islands    KY   CYM 1968       
## 2511                                Cayman Islands    KY   CYM 1969       
## 2512                                Cayman Islands    KY   CYM 1970       
## 2513                                Cayman Islands    KY   CYM 2003       
## 2514                                Cayman Islands    KY   CYM 1991       
## 2515                                Cayman Islands    KY   CYM 1992       
## 2516                                Cayman Islands    KY   CYM 1962       
## 2517                                Cayman Islands    KY   CYM 2007       
## 2518                                Cayman Islands    KY   CYM 2008       
## 2519                                Cayman Islands    KY   CYM 2009       
## 2520                                Cayman Islands    KY   CYM 2010       
## 2521                                Cayman Islands    KY   CYM 2014       
## 2522                                Cayman Islands    KY   CYM 1971       
## 2523                                Cayman Islands    KY   CYM 1960       
## 2524                                Cayman Islands    KY   CYM 2013       
## 2525                                Cayman Islands    KY   CYM 1977       
## 2526                                Cayman Islands    KY   CYM 1978       
## 2527                                Cayman Islands    KY   CYM 1979       
## 2528                                Cayman Islands    KY   CYM 1961       
## 2529                                Cayman Islands    KY   CYM 1996       
## 2530                                Cayman Islands    KY   CYM 2005       
## 2531                                Cayman Islands    KY   CYM 2015       
## 2532                                Cayman Islands    KY   CYM 1980       
## 2533                                Cayman Islands    KY   CYM 2004       
## 2534                                Cayman Islands    KY   CYM 2021       
## 2535                                Cayman Islands    KY   CYM 2006       
## 2536                                Cayman Islands    KY   CYM 2016       
## 2537                                Cayman Islands    KY   CYM 1995       
## 2538                                Cayman Islands    KY   CYM 2020       
## 2539                                Cayman Islands    KY   CYM 1976       
## 2540                                Cayman Islands    KY   CYM 2019       
## 2541                                Cayman Islands    KY   CYM 2017       
## 2542                                Cayman Islands    KY   CYM 2018       
## 2543                      Central African Republic    CF   CAF 2005       
## 2544                      Central African Republic    CF   CAF 2006       
## 2545                      Central African Republic    CF   CAF 2004       
## 2546                      Central African Republic    CF   CAF 2003       
## 2547                      Central African Republic    CF   CAF 1963       
## 2548                      Central African Republic    CF   CAF 1964       
## 2549                      Central African Republic    CF   CAF 2007       
## 2550                      Central African Republic    CF   CAF 2008       
## 2551                      Central African Republic    CF   CAF 2017       
## 2552                      Central African Republic    CF   CAF 1977       
## 2553                      Central African Republic    CF   CAF 1978       
## 2554                      Central African Republic    CF   CAF 1965       
## 2555                      Central African Republic    CF   CAF 1966       
## 2556                      Central African Republic    CF   CAF 1967       
## 2557                      Central African Republic    CF   CAF 2009       
## 2558                      Central African Republic    CF   CAF 2010       
## 2559                      Central African Republic    CF   CAF 2002       
## 2560                      Central African Republic    CF   CAF 1989       
## 2561                      Central African Republic    CF   CAF 1990       
## 2562                      Central African Republic    CF   CAF 1991       
## 2563                      Central African Republic    CF   CAF 1979       
## 2564                      Central African Republic    CF   CAF 1980       
## 2565                      Central African Republic    CF   CAF 1981       
## 2566                      Central African Republic    CF   CAF 1982       
## 2567                      Central African Republic    CF   CAF 1996       
## 2568                      Central African Republic    CF   CAF 2011       
## 2569                      Central African Republic    CF   CAF 2012       
## 2570                      Central African Republic    CF   CAF 2013       
## 2571                      Central African Republic    CF   CAF 1987       
## 2572                      Central African Republic    CF   CAF 1988       
## 2573                      Central African Republic    CF   CAF 1961       
## 2574                      Central African Republic    CF   CAF 1962       
## 2575                      Central African Republic    CF   CAF 1976       
## 2576                      Central African Republic    CF   CAF 2016       
## 2577                      Central African Republic    CF   CAF 1992       
## 2578                      Central African Republic    CF   CAF 2018       
## 2579                      Central African Republic    CF   CAF 2019       
## 2580                      Central African Republic    CF   CAF 1968       
## 2581                      Central African Republic    CF   CAF 1969       
## 2582                      Central African Republic    CF   CAF 1970       
## 2583                      Central African Republic    CF   CAF 1986       
## 2584                      Central African Republic    CF   CAF 1972       
## 2585                      Central African Republic    CF   CAF 1973       
## 2586                      Central African Republic    CF   CAF 1974       
## 2587                      Central African Republic    CF   CAF 1975       
## 2588                      Central African Republic    CF   CAF 2015       
## 2589                      Central African Republic    CF   CAF 2020       
## 2590                      Central African Republic    CF   CAF 2021       
## 2591                      Central African Republic    CF   CAF 1993       
## 2592                      Central African Republic    CF   CAF 1994       
## 2593                      Central African Republic    CF   CAF 1985       
## 2594                      Central African Republic    CF   CAF 2000       
## 2595                      Central African Republic    CF   CAF 1983       
## 2596                      Central African Republic    CF   CAF 1971       
## 2597                      Central African Republic    CF   CAF 1984       
## 2598                      Central African Republic    CF   CAF 1995       
## 2599                      Central African Republic    CF   CAF 2001       
## 2600                      Central African Republic    CF   CAF 1960       
## 2601                      Central African Republic    CF   CAF 2014       
## 2602                      Central African Republic    CF   CAF 1999       
## 2603                      Central African Republic    CF   CAF 1998       
## 2604                      Central African Republic    CF   CAF 1997       
## 2605                Central Europe and the Baltics    B8   CEB 1980       
## 2606                Central Europe and the Baltics    B8   CEB 1981       
## 2607                Central Europe and the Baltics    B8   CEB 1990       
## 2608                Central Europe and the Baltics    B8   CEB 1982       
## 2609                Central Europe and the Baltics    B8   CEB 1979       
## 2610                Central Europe and the Baltics    B8   CEB 1989       
## 2611                Central Europe and the Baltics    B8   CEB 1972       
## 2612                Central Europe and the Baltics    B8   CEB 1964       
## 2613                Central Europe and the Baltics    B8   CEB 1983       
## 2614                Central Europe and the Baltics    B8   CEB 1966       
## 2615                Central Europe and the Baltics    B8   CEB 1963       
## 2616                Central Europe and the Baltics    B8   CEB 2019       
## 2617                Central Europe and the Baltics    B8   CEB 2020       
## 2618                Central Europe and the Baltics    B8   CEB 2021       
## 2619                Central Europe and the Baltics    B8   CEB 1967       
## 2620                Central Europe and the Baltics    B8   CEB 1993       
## 2621                Central Europe and the Baltics    B8   CEB 1994       
## 2622                Central Europe and the Baltics    B8   CEB 1960       
## 2623                Central Europe and the Baltics    B8   CEB 1992       
## 2624                Central Europe and the Baltics    B8   CEB 1984       
## 2625                Central Europe and the Baltics    B8   CEB 1985       
## 2626                Central Europe and the Baltics    B8   CEB 1965       
## 2627                Central Europe and the Baltics    B8   CEB 2017       
## 2628                Central Europe and the Baltics    B8   CEB 2018       
## 2629                Central Europe and the Baltics    B8   CEB 2002       
## 2630                Central Europe and the Baltics    B8   CEB 2003       
## 2631                Central Europe and the Baltics    B8   CEB 1991       
## 2632                Central Europe and the Baltics    B8   CEB 1969       
## 2633                Central Europe and the Baltics    B8   CEB 1970       
## 2634                Central Europe and the Baltics    B8   CEB 1971       
## 2635                Central Europe and the Baltics    B8   CEB 2008       
## 2636                Central Europe and the Baltics    B8   CEB 1961       
## 2637                Central Europe and the Baltics    B8   CEB 1962       
## 2638                Central Europe and the Baltics    B8   CEB 1998       
## 2639                Central Europe and the Baltics    B8   CEB 1999       
## 2640                Central Europe and the Baltics    B8   CEB 2000       
## 2641                Central Europe and the Baltics    B8   CEB 2001       
## 2642                Central Europe and the Baltics    B8   CEB 1978       
## 2643                Central Europe and the Baltics    B8   CEB 2016       
## 2644                Central Europe and the Baltics    B8   CEB 1968       
## 2645                Central Europe and the Baltics    B8   CEB 2004       
## 2646                Central Europe and the Baltics    B8   CEB 2005       
## 2647                Central Europe and the Baltics    B8   CEB 2006       
## 2648                Central Europe and the Baltics    B8   CEB 2007       
## 2649                Central Europe and the Baltics    B8   CEB 1995       
## 2650                Central Europe and the Baltics    B8   CEB 1973       
## 2651                Central Europe and the Baltics    B8   CEB 1974       
## 2652                Central Europe and the Baltics    B8   CEB 1975       
## 2653                Central Europe and the Baltics    B8   CEB 1976       
## 2654                Central Europe and the Baltics    B8   CEB 1977       
## 2655                Central Europe and the Baltics    B8   CEB 1988       
## 2656                Central Europe and the Baltics    B8   CEB 2015       
## 2657                Central Europe and the Baltics    B8   CEB 2011       
## 2658                Central Europe and the Baltics    B8   CEB 1986       
## 2659                Central Europe and the Baltics    B8   CEB 1996       
## 2660                Central Europe and the Baltics    B8   CEB 1997       
## 2661                Central Europe and the Baltics    B8   CEB 2010       
## 2662                Central Europe and the Baltics    B8   CEB 2009       
## 2663                Central Europe and the Baltics    B8   CEB 1987       
## 2664                Central Europe and the Baltics    B8   CEB 2014       
## 2665                Central Europe and the Baltics    B8   CEB 2012       
## 2666                Central Europe and the Baltics    B8   CEB 2013       
## 2667                                          Chad    TD   TCD 2003       
## 2668                                          Chad    TD   TCD 2005       
## 2669                                          Chad    TD   TCD 2008       
## 2670                                          Chad    TD   TCD 2009       
## 2671                                          Chad    TD   TCD 2006       
## 2672                                          Chad    TD   TCD 2007       
## 2673                                          Chad    TD   TCD 1973       
## 2674                                          Chad    TD   TCD 2014       
## 2675                                          Chad    TD   TCD 2004       
## 2676                                          Chad    TD   TCD 1960       
## 2677                                          Chad    TD   TCD 1961       
## 2678                                          Chad    TD   TCD 1962       
## 2679                                          Chad    TD   TCD 1963       
## 2680                                          Chad    TD   TCD 1964       
## 2681                                          Chad    TD   TCD 1972       
## 2682                                          Chad    TD   TCD 2013       
## 2683                                          Chad    TD   TCD 1989       
## 2684                                          Chad    TD   TCD 1974       
## 2685                                          Chad    TD   TCD 1975       
## 2686                                          Chad    TD   TCD 1976       
## 2687                                          Chad    TD   TCD 1977       
## 2688                                          Chad    TD   TCD 1994       
## 2689                                          Chad    TD   TCD 1995       
## 2690                                          Chad    TD   TCD 2010       
## 2691                                          Chad    TD   TCD 2011       
## 2692                                          Chad    TD   TCD 1985       
## 2693                                          Chad    TD   TCD 1986       
## 2694                                          Chad    TD   TCD 1987       
## 2695                                          Chad    TD   TCD 1988       
## 2696                                          Chad    TD   TCD 2002       
## 2697                                          Chad    TD   TCD 1971       
## 2698                                          Chad    TD   TCD 1990       
## 2699                                          Chad    TD   TCD 2015       
## 2700                                          Chad    TD   TCD 2016       
## 2701                                          Chad    TD   TCD 2017       
## 2702                                          Chad    TD   TCD 2018       
## 2703                                          Chad    TD   TCD 1978       
## 2704                                          Chad    TD   TCD 1984       
## 2705                                          Chad    TD   TCD 1966       
## 2706                                          Chad    TD   TCD 1967       
## 2707                                          Chad    TD   TCD 1968       
## 2708                                          Chad    TD   TCD 1969       
## 2709                                          Chad    TD   TCD 1970       
## 2710                                          Chad    TD   TCD 2012       
## 2711                                          Chad    TD   TCD 1981       
## 2712                                          Chad    TD   TCD 1991       
## 2713                                          Chad    TD   TCD 1992       
## 2714                                          Chad    TD   TCD 1993       
## 2715                                          Chad    TD   TCD 1997       
## 2716                                          Chad    TD   TCD 1982       
## 2717                                          Chad    TD   TCD 1965       
## 2718                                          Chad    TD   TCD 1980       
## 2719                                          Chad    TD   TCD 2019       
## 2720                                          Chad    TD   TCD 1998       
## 2721                                          Chad    TD   TCD 1983       
## 2722                                          Chad    TD   TCD 2001       
## 2723                                          Chad    TD   TCD 2020       
## 2724                                          Chad    TD   TCD 1999       
## 2725                                          Chad    TD   TCD 1979       
## 2726                                          Chad    TD   TCD 2021       
## 2727                                          Chad    TD   TCD 2000       
## 2728                                          Chad    TD   TCD 1996       
## 2729                               Channel Islands    JG   CHI 1978       
## 2730                               Channel Islands    JG   CHI 1982       
## 2731                               Channel Islands    JG   CHI 1983       
## 2732                               Channel Islands    JG   CHI 1977       
## 2733                               Channel Islands    JG   CHI 1990       
## 2734                               Channel Islands    JG   CHI 1980       
## 2735                               Channel Islands    JG   CHI 1981       
## 2736                               Channel Islands    JG   CHI 1968       
## 2737                               Channel Islands    JG   CHI 1979       
## 2738                               Channel Islands    JG   CHI 2020       
## 2739                               Channel Islands    JG   CHI 1963       
## 2740                               Channel Islands    JG   CHI 1964       
## 2741                               Channel Islands    JG   CHI 1969       
## 2742                               Channel Islands    JG   CHI 1994       
## 2743                               Channel Islands    JG   CHI 2021       
## 2744                               Channel Islands    JG   CHI 1992       
## 2745                               Channel Islands    JG   CHI 2019       
## 2746                               Channel Islands    JG   CHI 1985       
## 2747                               Channel Islands    JG   CHI 1986       
## 2748                               Channel Islands    JG   CHI 1987       
## 2749                               Channel Islands    JG   CHI 1993       
## 2750                               Channel Islands    JG   CHI 1989       
## 2751                               Channel Islands    JG   CHI 2003       
## 2752                               Channel Islands    JG   CHI 1991       
## 2753                               Channel Islands    JG   CHI 1976       
## 2754                               Channel Islands    JG   CHI 1966       
## 2755                               Channel Islands    JG   CHI 1967       
## 2756                               Channel Islands    JG   CHI 2008       
## 2757                               Channel Islands    JG   CHI 1965       
## 2758                               Channel Islands    JG   CHI 1984       
## 2759                               Channel Islands    JG   CHI 1960       
## 2760                               Channel Islands    JG   CHI 1961       
## 2761                               Channel Islands    JG   CHI 1962       
## 2762                               Channel Islands    JG   CHI 2001       
## 2763                               Channel Islands    JG   CHI 2002       
## 2764                               Channel Islands    JG   CHI 2018       
## 2765                               Channel Islands    JG   CHI 2004       
## 2766                               Channel Islands    JG   CHI 1995       
## 2767                               Channel Islands    JG   CHI 2005       
## 2768                               Channel Islands    JG   CHI 2006       
## 2769                               Channel Islands    JG   CHI 2007       
## 2770                               Channel Islands    JG   CHI 1973       
## 2771                               Channel Islands    JG   CHI 1970       
## 2772                               Channel Islands    JG   CHI 1971       
## 2773                               Channel Islands    JG   CHI 1972       
## 2774                               Channel Islands    JG   CHI 1998       
## 2775                               Channel Islands    JG   CHI 1974       
## 2776                               Channel Islands    JG   CHI 1975       
## 2777                               Channel Islands    JG   CHI 2017       
## 2778                               Channel Islands    JG   CHI 2012       
## 2779                               Channel Islands    JG   CHI 1999       
## 2780                               Channel Islands    JG   CHI 1996       
## 2781                               Channel Islands    JG   CHI 1997       
## 2782                               Channel Islands    JG   CHI 2016       
## 2783                               Channel Islands    JG   CHI 2013       
## 2784                               Channel Islands    JG   CHI 2000       
## 2785                               Channel Islands    JG   CHI 1988       
## 2786                               Channel Islands    JG   CHI 2011       
## 2787                               Channel Islands    JG   CHI 2014       
## 2788                               Channel Islands    JG   CHI 2015       
## 2789                               Channel Islands    JG   CHI 2009       
## 2790                               Channel Islands    JG   CHI 2010       
## 2791                                         Chile    CL   CHL 1999       
## 2792                                         Chile    CL   CHL 2000       
## 2793                                         Chile    CL   CHL 2004       
## 2794                                         Chile    CL   CHL 1998       
## 2795                                         Chile    CL   CHL 2011       
## 2796                                         Chile    CL   CHL 2001       
## 2797                                         Chile    CL   CHL 2002       
## 2798                                         Chile    CL   CHL 2003       
## 2799                                         Chile    CL   CHL 1962       
## 2800                                         Chile    CL   CHL 1973       
## 2801                                         Chile    CL   CHL 1960       
## 2802                                         Chile    CL   CHL 1972       
## 2803                                         Chile    CL   CHL 2010       
## 2804                                         Chile    CL   CHL 1963       
## 2805                                         Chile    CL   CHL 1964       
## 2806                                         Chile    CL   CHL 1961       
## 2807                                         Chile    CL   CHL 1975       
## 2808                                         Chile    CL   CHL 1984       
## 2809                                         Chile    CL   CHL 1985       
## 2810                                         Chile    CL   CHL 1974       
## 2811                                         Chile    CL   CHL 2005       
## 2812                                         Chile    CL   CHL 1976       
## 2813                                         Chile    CL   CHL 1989       
## 2814                                         Chile    CL   CHL 1990       
## 2815                                         Chile    CL   CHL 1982       
## 2816                                         Chile    CL   CHL 1983       
## 2817                                         Chile    CL   CHL 1997       
## 2818                                         Chile    CL   CHL 1971       
## 2819                                         Chile    CL   CHL 2015       
## 2820                                         Chile    CL   CHL 2012       
## 2821                                         Chile    CL   CHL 2013       
## 2822                                         Chile    CL   CHL 2014       
## 2823                                         Chile    CL   CHL 2008       
## 2824                                         Chile    CL   CHL 2016       
## 2825                                         Chile    CL   CHL 2006       
## 2826                                         Chile    CL   CHL 2007       
## 2827                                         Chile    CL   CHL 2009       
## 2828                                         Chile    CL   CHL 1968       
## 2829                                         Chile    CL   CHL 1969       
## 2830                                         Chile    CL   CHL 1970       
## 2831                                         Chile    CL   CHL 1988       
## 2832                                         Chile    CL   CHL 1967       
## 2833                                         Chile    CL   CHL 1986       
## 2834                                         Chile    CL   CHL 1987       
## 2835                                         Chile    CL   CHL 1966       
## 2836                                         Chile    CL   CHL 1978       
## 2837                                         Chile    CL   CHL 1980       
## 2838                                         Chile    CL   CHL 1965       
## 2839                                         Chile    CL   CHL 1996       
## 2840                                         Chile    CL   CHL 2021       
## 2841                                         Chile    CL   CHL 1979       
## 2842                                         Chile    CL   CHL 1981       
## 2843                                         Chile    CL   CHL 1977       
## 2844                                         Chile    CL   CHL 2020       
## 2845                                         Chile    CL   CHL 2017       
## 2846                                         Chile    CL   CHL 1994       
## 2847                                         Chile    CL   CHL 1995       
## 2848                                         Chile    CL   CHL 1993       
## 2849                                         Chile    CL   CHL 2018       
## 2850                                         Chile    CL   CHL 2019       
## 2851                                         Chile    CL   CHL 1991       
## 2852                                         Chile    CL   CHL 1992       
## 2853                                         China    CN   CHN 1983       
## 2854                                         China    CN   CHN 1990       
## 2855                                         China    CN   CHN 1962       
## 2856                                         China    CN   CHN 1982       
## 2857                                         China    CN   CHN 1967       
## 2858                                         China    CN   CHN 1979       
## 2859                                         China    CN   CHN 1978       
## 2860                                         China    CN   CHN 1977       
## 2861                                         China    CN   CHN 1961       
## 2862                                         China    CN   CHN 1968       
## 2863                                         China    CN   CHN 1980       
## 2864                                         China    CN   CHN 1981       
## 2865                                         China    CN   CHN 2019       
## 2866                                         China    CN   CHN 2016       
## 2867                                         China    CN   CHN 2017       
## 2868                                         China    CN   CHN 2018       
## 2869                                         China    CN   CHN 1960       
## 2870                                         China    CN   CHN 2020       
## 2871                                         China    CN   CHN 2021       
## 2872                                         China    CN   CHN 1995       
## 2873                                         China    CN   CHN 1991       
## 2874                                         China    CN   CHN 1976       
## 2875                                         China    CN   CHN 1989       
## 2876                                         China    CN   CHN 2003       
## 2877                                         China    CN   CHN 1966       
## 2878                                         China    CN   CHN 1992       
## 2879                                         China    CN   CHN 1993       
## 2880                                         China    CN   CHN 1994       
## 2881                                         China    CN   CHN 1986       
## 2882                                         China    CN   CHN 1987       
## 2883                                         China    CN   CHN 2001       
## 2884                                         China    CN   CHN 2002       
## 2885                                         China    CN   CHN 1975       
## 2886                                         China    CN   CHN 2004       
## 2887                                         China    CN   CHN 1963       
## 2888                                         China    CN   CHN 1964       
## 2889                                         China    CN   CHN 1965       
## 2890                                         China    CN   CHN 2007       
## 2891                                         China    CN   CHN 2008       
## 2892                                         China    CN   CHN 1984       
## 2893                                         China    CN   CHN 1985       
## 2894                                         China    CN   CHN 1971       
## 2895                                         China    CN   CHN 1972       
## 2896                                         China    CN   CHN 1973       
## 2897                                         China    CN   CHN 1974       
## 2898                                         China    CN   CHN 2014       
## 2899                                         China    CN   CHN 2015       
## 2900                                         China    CN   CHN 1999       
## 2901                                         China    CN   CHN 2005       
## 2902                                         China    CN   CHN 2006       
## 2903                                         China    CN   CHN 1998       
## 2904                                         China    CN   CHN 1970       
## 2905                                         China    CN   CHN 1996       
## 2906                                         China    CN   CHN 1997       
## 2907                                         China    CN   CHN 1969       
## 2908                                         China    CN   CHN 2000       
## 2909                                         China    CN   CHN 1988       
## 2910                                         China    CN   CHN 2013       
## 2911                                         China    CN   CHN 2011       
## 2912                                         China    CN   CHN 2012       
## 2913                                         China    CN   CHN 2010       
## 2914                                         China    CN   CHN 2009       
## 2915                                      Colombia    CO   COL 1997       
## 2916                                      Colombia    CO   COL 2002       
## 2917                                      Colombia    CO   COL 1996       
## 2918                                      Colombia    CO   COL 1970       
## 2919                                      Colombia    CO   COL 2001       
## 2920                                      Colombia    CO   COL 2000       
## 2921                                      Colombia    CO   COL 1960       
## 2922                                      Colombia    CO   COL 1998       
## 2923                                      Colombia    CO   COL 1969       
## 2924                                      Colombia    CO   COL 2009       
## 2925                                      Colombia    CO   COL 2010       
## 2926                                      Colombia    CO   COL 1961       
## 2927                                      Colombia    CO   COL 1999       
## 2928                                      Colombia    CO   COL 1972       
## 2929                                      Colombia    CO   COL 1973       
## 2930                                      Colombia    CO   COL 1983       
## 2931                                      Colombia    CO   COL 1971       
## 2932                                      Colombia    CO   COL 2003       
## 2933                                      Colombia    CO   COL 2004       
## 2934                                      Colombia    CO   COL 1974       
## 2935                                      Colombia    CO   COL 1988       
## 2936                                      Colombia    CO   COL 1980       
## 2937                                      Colombia    CO   COL 1981       
## 2938                                      Colombia    CO   COL 1982       
## 2939                                      Colombia    CO   COL 1968       
## 2940                                      Colombia    CO   COL 2008       
## 2941                                      Colombia    CO   COL 1984       
## 2942                                      Colombia    CO   COL 2011       
## 2943                                      Colombia    CO   COL 2012       
## 2944                                      Colombia    CO   COL 2013       
## 2945                                      Colombia    CO   COL 2014       
## 2946                                      Colombia    CO   COL 1962       
## 2947                                      Colombia    CO   COL 2005       
## 2948                                      Colombia    CO   COL 2006       
## 2949                                      Colombia    CO   COL 1965       
## 2950                                      Colombia    CO   COL 1966       
## 2951                                      Colombia    CO   COL 1967       
## 2952                                      Colombia    CO   COL 2021       
## 2953                                      Colombia    CO   COL 1987       
## 2954                                      Colombia    CO   COL 1978       
## 2955                                      Colombia    CO   COL 1985       
## 2956                                      Colombia    CO   COL 1986       
## 2957                                      Colombia    CO   COL 1964       
## 2958                                      Colombia    CO   COL 1977       
## 2959                                      Colombia    CO   COL 1975       
## 2960                                      Colombia    CO   COL 1963       
## 2961                                      Colombia    CO   COL 1995       
## 2962                                      Colombia    CO   COL 2007       
## 2963                                      Colombia    CO   COL 1979       
## 2964                                      Colombia    CO   COL 2020       
## 2965                                      Colombia    CO   COL 1976       
## 2966                                      Colombia    CO   COL 2015       
## 2967                                      Colombia    CO   COL 1992       
## 2968                                      Colombia    CO   COL 1989       
## 2969                                      Colombia    CO   COL 1994       
## 2970                                      Colombia    CO   COL 2019       
## 2971                                      Colombia    CO   COL 2016       
## 2972                                      Colombia    CO   COL 1993       
## 2973                                      Colombia    CO   COL 2018       
## 2974                                      Colombia    CO   COL 2017       
## 2975                                      Colombia    CO   COL 1991       
## 2976                                      Colombia    CO   COL 1990       
## 2977                                       Comoros    KM   COM 1972       
## 2978                                       Comoros    KM   COM 1983       
## 2979                                       Comoros    KM   COM 1976       
## 2980                                       Comoros    KM   COM 1965       
## 2981                                       Comoros    KM   COM 1971       
## 2982                                       Comoros    KM   COM 1982       
## 2983                                       Comoros    KM   COM 1960       
## 2984                                       Comoros    KM   COM 1973       
## 2985                                       Comoros    KM   COM 1974       
## 2986                                       Comoros    KM   COM 1975       
## 2987                                       Comoros    KM   COM 2014       
## 2988                                       Comoros    KM   COM 2011       
## 2989                                       Comoros    KM   COM 2012       
## 2990                                       Comoros    KM   COM 2013       
## 2991                                       Comoros    KM   COM 1970       
## 2992                                       Comoros    KM   COM 2015       
## 2993                                       Comoros    KM   COM 2016       
## 2994                                       Comoros    KM   COM 1996       
## 2995                                       Comoros    KM   COM 1984       
## 2996                                       Comoros    KM   COM 2010       
## 2997                                       Comoros    KM   COM 1995       
## 2998                                       Comoros    KM   COM 1987       
## 2999                                       Comoros    KM   COM 2017       
## 3000                                       Comoros    KM   COM 1985       
## 3001                                       Comoros    KM   COM 1986       
## 3002                                       Comoros    KM   COM 2020       
## 3003                                       Comoros    KM   COM 2021       
## 3004                                       Comoros    KM   COM 1993       
## 3005                                       Comoros    KM   COM 1994       
## 3006                                       Comoros    KM   COM 1969       
## 3007                                       Comoros    KM   COM 2009       
## 3008                                       Comoros    KM   COM 1961       
## 3009                                       Comoros    KM   COM 1962       
## 3010                                       Comoros    KM   COM 1963       
## 3011                                       Comoros    KM   COM 1964       
## 3012                                       Comoros    KM   COM 2001       
## 3013                                       Comoros    KM   COM 2018       
## 3014                                       Comoros    KM   COM 2019       
## 3015                                       Comoros    KM   COM 2004       
## 3016                                       Comoros    KM   COM 1966       
## 3017                                       Comoros    KM   COM 1967       
## 3018                                       Comoros    KM   COM 1968       
## 3019                                       Comoros    KM   COM 1981       
## 3020                                       Comoros    KM   COM 2008       
## 3021                                       Comoros    KM   COM 2000       
## 3022                                       Comoros    KM   COM 1997       
## 3023                                       Comoros    KM   COM 1998       
## 3024                                       Comoros    KM   COM 1999       
## 3025                                       Comoros    KM   COM 1978       
## 3026                                       Comoros    KM   COM 1988       
## 3027                                       Comoros    KM   COM 1989       
## 3028                                       Comoros    KM   COM 1977       
## 3029                                       Comoros    KM   COM 1990       
## 3030                                       Comoros    KM   COM 1979       
## 3031                                       Comoros    KM   COM 1980       
## 3032                                       Comoros    KM   COM 2007       
## 3033                                       Comoros    KM   COM 1991       
## 3034                                       Comoros    KM   COM 1992       
## 3035                                       Comoros    KM   COM 2006       
## 3036                                       Comoros    KM   COM 2002       
## 3037                                       Comoros    KM   COM 2003       
## 3038                                       Comoros    KM   COM 2005       
## 3039                              Congo, Dem. Rep.    CD   COD 1995       
## 3040                              Congo, Dem. Rep.    CD   COD 1967       
## 3041                              Congo, Dem. Rep.    CD   COD 1998       
## 3042                              Congo, Dem. Rep.    CD   COD 2007       
## 3043                              Congo, Dem. Rep.    CD   COD 1996       
## 3044                              Congo, Dem. Rep.    CD   COD 1997       
## 3045                              Congo, Dem. Rep.    CD   COD 1966       
## 3046                              Congo, Dem. Rep.    CD   COD 1999       
## 3047                              Congo, Dem. Rep.    CD   COD 2000       
## 3048                              Congo, Dem. Rep.    CD   COD 2001       
## 3049                              Congo, Dem. Rep.    CD   COD 1969       
## 3050                              Congo, Dem. Rep.    CD   COD 2006       
## 3051                              Congo, Dem. Rep.    CD   COD 1981       
## 3052                              Congo, Dem. Rep.    CD   COD 1968       
## 3053                              Congo, Dem. Rep.    CD   COD 1987       
## 3054                              Congo, Dem. Rep.    CD   COD 1970       
## 3055                              Congo, Dem. Rep.    CD   COD 1971       
## 3056                              Congo, Dem. Rep.    CD   COD 1986       
## 3057                              Congo, Dem. Rep.    CD   COD 1978       
## 3058                              Congo, Dem. Rep.    CD   COD 1979       
## 3059                              Congo, Dem. Rep.    CD   COD 1980       
## 3060                              Congo, Dem. Rep.    CD   COD 1994       
## 3061                              Congo, Dem. Rep.    CD   COD 1963       
## 3062                              Congo, Dem. Rep.    CD   COD 1964       
## 3063                              Congo, Dem. Rep.    CD   COD 1965       
## 3064                              Congo, Dem. Rep.    CD   COD 2009       
## 3065                              Congo, Dem. Rep.    CD   COD 2010       
## 3066                              Congo, Dem. Rep.    CD   COD 2011       
## 3067                              Congo, Dem. Rep.    CD   COD 1972       
## 3068                              Congo, Dem. Rep.    CD   COD 2002       
## 3069                              Congo, Dem. Rep.    CD   COD 2003       
## 3070                              Congo, Dem. Rep.    CD   COD 2004       
## 3071                              Congo, Dem. Rep.    CD   COD 1960       
## 3072                              Congo, Dem. Rep.    CD   COD 1961       
## 3073                              Congo, Dem. Rep.    CD   COD 1962       
## 3074                              Congo, Dem. Rep.    CD   COD 2019       
## 3075                              Congo, Dem. Rep.    CD   COD 1982       
## 3076                              Congo, Dem. Rep.    CD   COD 1983       
## 3077                              Congo, Dem. Rep.    CD   COD 1984       
## 3078                              Congo, Dem. Rep.    CD   COD 1985       
## 3079                              Congo, Dem. Rep.    CD   COD 2021       
## 3080                              Congo, Dem. Rep.    CD   COD 1976       
## 3081                              Congo, Dem. Rep.    CD   COD 1973       
## 3082                              Congo, Dem. Rep.    CD   COD 1974       
## 3083                              Congo, Dem. Rep.    CD   COD 1975       
## 3084                              Congo, Dem. Rep.    CD   COD 1990       
## 3085                              Congo, Dem. Rep.    CD   COD 1977       
## 3086                              Congo, Dem. Rep.    CD   COD 2018       
## 3087                              Congo, Dem. Rep.    CD   COD 2005       
## 3088                              Congo, Dem. Rep.    CD   COD 2013       
## 3089                              Congo, Dem. Rep.    CD   COD 1991       
## 3090                              Congo, Dem. Rep.    CD   COD 2008       
## 3091                              Congo, Dem. Rep.    CD   COD 2020       
## 3092                              Congo, Dem. Rep.    CD   COD 2017       
## 3093                              Congo, Dem. Rep.    CD   COD 2014       
## 3094                              Congo, Dem. Rep.    CD   COD 1988       
## 3095                              Congo, Dem. Rep.    CD   COD 1989       
## 3096                              Congo, Dem. Rep.    CD   COD 1992       
## 3097                              Congo, Dem. Rep.    CD   COD 1993       
## 3098                              Congo, Dem. Rep.    CD   COD 2015       
## 3099                              Congo, Dem. Rep.    CD   COD 2012       
## 3100                              Congo, Dem. Rep.    CD   COD 2016       
## 3101                                   Congo, Rep.    CG   COG 1976       
## 3102                                   Congo, Rep.    CG   COG 1972       
## 3103                                   Congo, Rep.    CG   COG 1971       
## 3104                                   Congo, Rep.    CG   COG 1962       
## 3105                                   Congo, Rep.    CG   COG 1975       
## 3106                                   Congo, Rep.    CG   COG 2011       
## 3107                                   Congo, Rep.    CG   COG 2012       
## 3108                                   Congo, Rep.    CG   COG 1970       
## 3109                                   Congo, Rep.    CG   COG 1961       
## 3110                                   Congo, Rep.    CG   COG 2016       
## 3111                                   Congo, Rep.    CG   COG 1973       
## 3112                                   Congo, Rep.    CG   COG 1974       
## 3113                                   Congo, Rep.    CG   COG 1969       
## 3114                                   Congo, Rep.    CG   COG 1982       
## 3115                                   Congo, Rep.    CG   COG 1983       
## 3116                                   Congo, Rep.    CG   COG 2013       
## 3117                                   Congo, Rep.    CG   COG 2014       
## 3118                                   Congo, Rep.    CG   COG 2015       
## 3119                                   Congo, Rep.    CG   COG 1987       
## 3120                                   Congo, Rep.    CG   COG 2017       
## 3121                                   Congo, Rep.    CG   COG 2018       
## 3122                                   Congo, Rep.    CG   COG 2019       
## 3123                                   Congo, Rep.    CG   COG 2020       
## 3124                                   Congo, Rep.    CG   COG 2021       
## 3125                                   Congo, Rep.    CG   COG 1980       
## 3126                                   Congo, Rep.    CG   COG 1994       
## 3127                                   Congo, Rep.    CG   COG 1995       
## 3128                                   Congo, Rep.    CG   COG 1996       
## 3129                                   Congo, Rep.    CG   COG 1997       
## 3130                                   Congo, Rep.    CG   COG 1985       
## 3131                                   Congo, Rep.    CG   COG 1986       
## 3132                                   Congo, Rep.    CG   COG 1960       
## 3133                                   Congo, Rep.    CG   COG 2001       
## 3134                                   Congo, Rep.    CG   COG 1963       
## 3135                                   Congo, Rep.    CG   COG 1964       
## 3136                                   Congo, Rep.    CG   COG 2005       
## 3137                                   Congo, Rep.    CG   COG 1965       
## 3138                                   Congo, Rep.    CG   COG 1966       
## 3139                                   Congo, Rep.    CG   COG 1967       
## 3140                                   Congo, Rep.    CG   COG 1968       
## 3141                                   Congo, Rep.    CG   COG 2010       
## 3142                                   Congo, Rep.    CG   COG 2000       
## 3143                                   Congo, Rep.    CG   COG 1984       
## 3144                                   Congo, Rep.    CG   COG 1998       
## 3145                                   Congo, Rep.    CG   COG 1999       
## 3146                                   Congo, Rep.    CG   COG 1978       
## 3147                                   Congo, Rep.    CG   COG 1988       
## 3148                                   Congo, Rep.    CG   COG 1989       
## 3149                                   Congo, Rep.    CG   COG 1977       
## 3150                                   Congo, Rep.    CG   COG 2009       
## 3151                                   Congo, Rep.    CG   COG 1979       
## 3152                                   Congo, Rep.    CG   COG 1993       
## 3153                                   Congo, Rep.    CG   COG 1981       
## 3154                                   Congo, Rep.    CG   COG 1990       
## 3155                                   Congo, Rep.    CG   COG 1991       
## 3156                                   Congo, Rep.    CG   COG 1992       
## 3157                                   Congo, Rep.    CG   COG 2007       
## 3158                                   Congo, Rep.    CG   COG 2008       
## 3159                                   Congo, Rep.    CG   COG 2002       
## 3160                                   Congo, Rep.    CG   COG 2003       
## 3161                                   Congo, Rep.    CG   COG 2006       
## 3162                                   Congo, Rep.    CG   COG 2004       
## 3163                                    Costa Rica    CR   CRI 2003       
## 3164                                    Costa Rica    CR   CRI 1991       
## 3165                                    Costa Rica    CR   CRI 1992       
## 3166                                    Costa Rica    CR   CRI 1990       
## 3167                                    Costa Rica    CR   CRI 1994       
## 3168                                    Costa Rica    CR   CRI 1995       
## 3169                                    Costa Rica    CR   CRI 1996       
## 3170                                    Costa Rica    CR   CRI 1993       
## 3171                                    Costa Rica    CR   CRI 2002       
## 3172                                    Costa Rica    CR   CRI 1976       
## 3173                                    Costa Rica    CR   CRI 1977       
## 3174                                    Costa Rica    CR   CRI 1966       
## 3175                                    Costa Rica    CR   CRI 1967       
## 3176                                    Costa Rica    CR   CRI 1968       
## 3177                                    Costa Rica    CR   CRI 1981       
## 3178                                    Costa Rica    CR   CRI 1982       
## 3179                                    Costa Rica    CR   CRI 1974       
## 3180                                    Costa Rica    CR   CRI 1975       
## 3181                                    Costa Rica    CR   CRI 1989       
## 3182                                    Costa Rica    CR   CRI 1963       
## 3183                                    Costa Rica    CR   CRI 1964       
## 3184                                    Costa Rica    CR   CRI 1965       
## 3185                                    Costa Rica    CR   CRI 2005       
## 3186                                    Costa Rica    CR   CRI 2006       
## 3187                                    Costa Rica    CR   CRI 2007       
## 3188                                    Costa Rica    CR   CRI 2008       
## 3189                                    Costa Rica    CR   CRI 1997       
## 3190                                    Costa Rica    CR   CRI 1998       
## 3191                                    Costa Rica    CR   CRI 2000       
## 3192                                    Costa Rica    CR   CRI 1960       
## 3193                                    Costa Rica    CR   CRI 1961       
## 3194                                    Costa Rica    CR   CRI 1962       
## 3195                                    Costa Rica    CR   CRI 2015       
## 3196                                    Costa Rica    CR   CRI 2016       
## 3197                                    Costa Rica    CR   CRI 1978       
## 3198                                    Costa Rica    CR   CRI 1979       
## 3199                                    Costa Rica    CR   CRI 1980       
## 3200                                    Costa Rica    CR   CRI 2021       
## 3201                                    Costa Rica    CR   CRI 2020       
## 3202                                    Costa Rica    CR   CRI 1969       
## 3203                                    Costa Rica    CR   CRI 1970       
## 3204                                    Costa Rica    CR   CRI 1999       
## 3205                                    Costa Rica    CR   CRI 1972       
## 3206                                    Costa Rica    CR   CRI 1973       
## 3207                                    Costa Rica    CR   CRI 2014       
## 3208                                    Costa Rica    CR   CRI 2001       
## 3209                                    Costa Rica    CR   CRI 2018       
## 3210                                    Costa Rica    CR   CRI 2019       
## 3211                                    Costa Rica    CR   CRI 2004       
## 3212                                    Costa Rica    CR   CRI 2017       
## 3213                                    Costa Rica    CR   CRI 1971       
## 3214                                    Costa Rica    CR   CRI 1986       
## 3215                                    Costa Rica    CR   CRI 1983       
## 3216                                    Costa Rica    CR   CRI 1984       
## 3217                                    Costa Rica    CR   CRI 2009       
## 3218                                    Costa Rica    CR   CRI 2010       
## 3219                                    Costa Rica    CR   CRI 1987       
## 3220                                    Costa Rica    CR   CRI 1988       
## 3221                                    Costa Rica    CR   CRI 2013       
## 3222                                    Costa Rica    CR   CRI 2011       
## 3223                                    Costa Rica    CR   CRI 2012       
## 3224                                    Costa Rica    CR   CRI 1985       
## 3225                                 Cote d'Ivoire    CI   CIV 1971       
## 3226                                 Cote d'Ivoire    CI   CIV 1970       
## 3227                                 Cote d'Ivoire    CI   CIV 2007       
## 3228                                 Cote d'Ivoire    CI   CIV 2008       
## 3229                                 Cote d'Ivoire    CI   CIV 1969       
## 3230                                 Cote d'Ivoire    CI   CIV 1974       
## 3231                                 Cote d'Ivoire    CI   CIV 1975       
## 3232                                 Cote d'Ivoire    CI   CIV 1972       
## 3233                                 Cote d'Ivoire    CI   CIV 1973       
## 3234                                 Cote d'Ivoire    CI   CIV 1968       
## 3235                                 Cote d'Ivoire    CI   CIV 2020       
## 3236                                 Cote d'Ivoire    CI   CIV 2013       
## 3237                                 Cote d'Ivoire    CI   CIV 2009       
## 3238                                 Cote d'Ivoire    CI   CIV 2010       
## 3239                                 Cote d'Ivoire    CI   CIV 2011       
## 3240                                 Cote d'Ivoire    CI   CIV 2021       
## 3241                                 Cote d'Ivoire    CI   CIV 1987       
## 3242                                 Cote d'Ivoire    CI   CIV 2014       
## 3243                                 Cote d'Ivoire    CI   CIV 2015       
## 3244                                 Cote d'Ivoire    CI   CIV 2012       
## 3245                                 Cote d'Ivoire    CI   CIV 2017       
## 3246                                 Cote d'Ivoire    CI   CIV 2018       
## 3247                                 Cote d'Ivoire    CI   CIV 1993       
## 3248                                 Cote d'Ivoire    CI   CIV 1994       
## 3249                                 Cote d'Ivoire    CI   CIV 1995       
## 3250                                 Cote d'Ivoire    CI   CIV 1996       
## 3251                                 Cote d'Ivoire    CI   CIV 1984       
## 3252                                 Cote d'Ivoire    CI   CIV 1985       
## 3253                                 Cote d'Ivoire    CI   CIV 1986       
## 3254                                 Cote d'Ivoire    CI   CIV 1960       
## 3255                                 Cote d'Ivoire    CI   CIV 1961       
## 3256                                 Cote d'Ivoire    CI   CIV 1962       
## 3257                                 Cote d'Ivoire    CI   CIV 2016       
## 3258                                 Cote d'Ivoire    CI   CIV 1963       
## 3259                                 Cote d'Ivoire    CI   CIV 1964       
## 3260                                 Cote d'Ivoire    CI   CIV 1965       
## 3261                                 Cote d'Ivoire    CI   CIV 1966       
## 3262                                 Cote d'Ivoire    CI   CIV 1967       
## 3263                                 Cote d'Ivoire    CI   CIV 1982       
## 3264                                 Cote d'Ivoire    CI   CIV 1983       
## 3265                                 Cote d'Ivoire    CI   CIV 1997       
## 3266                                 Cote d'Ivoire    CI   CIV 1998       
## 3267                                 Cote d'Ivoire    CI   CIV 1999       
## 3268                                 Cote d'Ivoire    CI   CIV 2000       
## 3269                                 Cote d'Ivoire    CI   CIV 1988       
## 3270                                 Cote d'Ivoire    CI   CIV 1976       
## 3271                                 Cote d'Ivoire    CI   CIV 1977       
## 3272                                 Cote d'Ivoire    CI   CIV 1978       
## 3273                                 Cote d'Ivoire    CI   CIV 1979       
## 3274                                 Cote d'Ivoire    CI   CIV 2019       
## 3275                                 Cote d'Ivoire    CI   CIV 1981       
## 3276                                 Cote d'Ivoire    CI   CIV 2006       
## 3277                                 Cote d'Ivoire    CI   CIV 1991       
## 3278                                 Cote d'Ivoire    CI   CIV 1992       
## 3279                                 Cote d'Ivoire    CI   CIV 1989       
## 3280                                 Cote d'Ivoire    CI   CIV 1990       
## 3281                                 Cote d'Ivoire    CI   CIV 1980       
## 3282                                 Cote d'Ivoire    CI   CIV 2002       
## 3283                                 Cote d'Ivoire    CI   CIV 2004       
## 3284                                 Cote d'Ivoire    CI   CIV 2005       
## 3285                                 Cote d'Ivoire    CI   CIV 2003       
## 3286                                 Cote d'Ivoire    CI   CIV 2001       
## 3287                                       Croatia    HR   HRV 1988       
## 3288                                       Croatia    HR   HRV 1989       
## 3289                                       Croatia    HR   HRV 1992       
## 3290                                       Croatia    HR   HRV 1993       
## 3291                                       Croatia    HR   HRV 1990       
## 3292                                       Croatia    HR   HRV 1991       
## 3293                                       Croatia    HR   HRV 1987       
## 3294                                       Croatia    HR   HRV 1974       
## 3295                                       Croatia    HR   HRV 1962       
## 3296                                       Croatia    HR   HRV 1963       
## 3297                                       Croatia    HR   HRV 1964       
## 3298                                       Croatia    HR   HRV 1965       
## 3299                                       Croatia    HR   HRV 1979       
## 3300                                       Croatia    HR   HRV 1980       
## 3301                                       Croatia    HR   HRV 1981       
## 3302                                       Croatia    HR   HRV 1973       
## 3303                                       Croatia    HR   HRV 2002       
## 3304                                       Croatia    HR   HRV 1971       
## 3305                                       Croatia    HR   HRV 1961       
## 3306                                       Croatia    HR   HRV 2003       
## 3307                                       Croatia    HR   HRV 2004       
## 3308                                       Croatia    HR   HRV 1960       
## 3309                                       Croatia    HR   HRV 2006       
## 3310                                       Croatia    HR   HRV 1994       
## 3311                                       Croatia    HR   HRV 1995       
## 3312                                       Croatia    HR   HRV 2005       
## 3313                                       Croatia    HR   HRV 1997       
## 3314                                       Croatia    HR   HRV 1972       
## 3315                                       Croatia    HR   HRV 2001       
## 3316                                       Croatia    HR   HRV 2013       
## 3317                                       Croatia    HR   HRV 2014       
## 3318                                       Croatia    HR   HRV 1975       
## 3319                                       Croatia    HR   HRV 1976       
## 3320                                       Croatia    HR   HRV 1977       
## 3321                                       Croatia    HR   HRV 1978       
## 3322                                       Croatia    HR   HRV 2019       
## 3323                                       Croatia    HR   HRV 1966       
## 3324                                       Croatia    HR   HRV 1967       
## 3325                                       Croatia    HR   HRV 1996       
## 3326                                       Croatia    HR   HRV 1969       
## 3327                                       Croatia    HR   HRV 1970       
## 3328                                       Croatia    HR   HRV 2012       
## 3329                                       Croatia    HR   HRV 1986       
## 3330                                       Croatia    HR   HRV 1999       
## 3331                                       Croatia    HR   HRV 2000       
## 3332                                       Croatia    HR   HRV 2020       
## 3333                                       Croatia    HR   HRV 2015       
## 3334                                       Croatia    HR   HRV 2016       
## 3335                                       Croatia    HR   HRV 2017       
## 3336                                       Croatia    HR   HRV 1984       
## 3337                                       Croatia    HR   HRV 2021       
## 3338                                       Croatia    HR   HRV 1968       
## 3339                                       Croatia    HR   HRV 1983       
## 3340                                       Croatia    HR   HRV 2009       
## 3341                                       Croatia    HR   HRV 1985       
## 3342                                       Croatia    HR   HRV 1998       
## 3343                                       Croatia    HR   HRV 2008       
## 3344                                       Croatia    HR   HRV 2018       
## 3345                                       Croatia    HR   HRV 2007       
## 3346                                       Croatia    HR   HRV 2010       
## 3347                                       Croatia    HR   HRV 2011       
## 3348                                       Croatia    HR   HRV 1982       
## 3349                                          Cuba    CU   CUB 1967       
## 3350                                          Cuba    CU   CUB 1965       
## 3351                                          Cuba    CU   CUB 1966       
## 3352                                          Cuba    CU   CUB 1969       
## 3353                                          Cuba    CU   CUB 1970       
## 3354                                          Cuba    CU   CUB 1968       
## 3355                                          Cuba    CU   CUB 1964       
## 3356                                          Cuba    CU   CUB 2004       
## 3357                                          Cuba    CU   CUB 2006       
## 3358                                          Cuba    CU   CUB 2019       
## 3359                                          Cuba    CU   CUB 2007       
## 3360                                          Cuba    CU   CUB 2008       
## 3361                                          Cuba    CU   CUB 2005       
## 3362                                          Cuba    CU   CUB 2010       
## 3363                                          Cuba    CU   CUB 2011       
## 3364                                          Cuba    CU   CUB 2012       
## 3365                                          Cuba    CU   CUB 2009       
## 3366                                          Cuba    CU   CUB 2014       
## 3367                                          Cuba    CU   CUB 2015       
## 3368                                          Cuba    CU   CUB 1987       
## 3369                                          Cuba    CU   CUB 1988       
## 3370                                          Cuba    CU   CUB 1989       
## 3371                                          Cuba    CU   CUB 1990       
## 3372                                          Cuba    CU   CUB 2021       
## 3373                                          Cuba    CU   CUB 1979       
## 3374                                          Cuba    CU   CUB 1980       
## 3375                                          Cuba    CU   CUB 1981       
## 3376                                          Cuba    CU   CUB 1995       
## 3377                                          Cuba    CU   CUB 1996       
## 3378                                          Cuba    CU   CUB 2013       
## 3379                                          Cuba    CU   CUB 1998       
## 3380                                          Cuba    CU   CUB 1960       
## 3381                                          Cuba    CU   CUB 1961       
## 3382                                          Cuba    CU   CUB 1962       
## 3383                                          Cuba    CU   CUB 1963       
## 3384                                          Cuba    CU   CUB 2003       
## 3385                                          Cuba    CU   CUB 1977       
## 3386                                          Cuba    CU   CUB 2020       
## 3387                                          Cuba    CU   CUB 1992       
## 3388                                          Cuba    CU   CUB 1993       
## 3389                                          Cuba    CU   CUB 1994       
## 3390                                          Cuba    CU   CUB 1982       
## 3391                                          Cuba    CU   CUB 1983       
## 3392                                          Cuba    CU   CUB 1971       
## 3393                                          Cuba    CU   CUB 1972       
## 3394                                          Cuba    CU   CUB 1973       
## 3395                                          Cuba    CU   CUB 2016       
## 3396                                          Cuba    CU   CUB 2017       
## 3397                                          Cuba    CU   CUB 2018       
## 3398                                          Cuba    CU   CUB 1976       
## 3399                                          Cuba    CU   CUB 1991       
## 3400                                          Cuba    CU   CUB 1978       
## 3401                                          Cuba    CU   CUB 1984       
## 3402                                          Cuba    CU   CUB 1985       
## 3403                                          Cuba    CU   CUB 1986       
## 3404                                          Cuba    CU   CUB 2000       
## 3405                                          Cuba    CU   CUB 2001       
## 3406                                          Cuba    CU   CUB 2002       
## 3407                                          Cuba    CU   CUB 1997       
## 3408                                          Cuba    CU   CUB 1999       
## 3409                                          Cuba    CU   CUB 1974       
## 3410                                          Cuba    CU   CUB 1975       
## 3411                                       Curacao    CW   CUW 1990       
## 3412                                       Curacao    CW   CUW 1993       
## 3413                                       Curacao    CW   CUW 1989       
## 3414                                       Curacao    CW   CUW 1991       
## 3415                                       Curacao    CW   CUW 1992       
## 3416                                       Curacao    CW   CUW 1988       
## 3417                                       Curacao    CW   CUW 1979       
## 3418                                       Curacao    CW   CUW 1962       
## 3419                                       Curacao    CW   CUW 1987       
## 3420                                       Curacao    CW   CUW 1978       
## 3421                                       Curacao    CW   CUW 1970       
## 3422                                       Curacao    CW   CUW 1980       
## 3423                                       Curacao    CW   CUW 1963       
## 3424                                       Curacao    CW   CUW 1973       
## 3425                                       Curacao    CW   CUW 1999       
## 3426                                       Curacao    CW   CUW 1961       
## 3427                                       Curacao    CW   CUW 1960       
## 3428                                       Curacao    CW   CUW 2001       
## 3429                                       Curacao    CW   CUW 2002       
## 3430                                       Curacao    CW   CUW 2003       
## 3431                                       Curacao    CW   CUW 1964       
## 3432                                       Curacao    CW   CUW 1994       
## 3433                                       Curacao    CW   CUW 1995       
## 3434                                       Curacao    CW   CUW 1996       
## 3435                                       Curacao    CW   CUW 1971       
## 3436                                       Curacao    CW   CUW 1972       
## 3437                                       Curacao    CW   CUW 1986       
## 3438                                       Curacao    CW   CUW 2011       
## 3439                                       Curacao    CW   CUW 1974       
## 3440                                       Curacao    CW   CUW 1975       
## 3441                                       Curacao    CW   CUW 1976       
## 3442                                       Curacao    CW   CUW 1977       
## 3443                                       Curacao    CW   CUW 2014       
## 3444                                       Curacao    CW   CUW 2015       
## 3445                                       Curacao    CW   CUW 1965       
## 3446                                       Curacao    CW   CUW 1966       
## 3447                                       Curacao    CW   CUW 1967       
## 3448                                       Curacao    CW   CUW 1968       
## 3449                                       Curacao    CW   CUW 1969       
## 3450                                       Curacao    CW   CUW 2010       
## 3451                                       Curacao    CW   CUW 2021       
## 3452                                       Curacao    CW   CUW 1998       
## 3453                                       Curacao    CW   CUW 2013       
## 3454                                       Curacao    CW   CUW 2000       
## 3455                                       Curacao    CW   CUW 1981       
## 3456                                       Curacao    CW   CUW 2012       
## 3457                                       Curacao    CW   CUW 1983       
## 3458                                       Curacao    CW   CUW 2016       
## 3459                                       Curacao    CW   CUW 1985       
## 3460                                       Curacao    CW   CUW 1982       
## 3461                                       Curacao    CW   CUW 2006       
## 3462                                       Curacao    CW   CUW 1984       
## 3463                                       Curacao    CW   CUW 2004       
## 3464                                       Curacao    CW   CUW 1997       
## 3465                                       Curacao    CW   CUW 2020       
## 3466                                       Curacao    CW   CUW 2007       
## 3467                                       Curacao    CW   CUW 2008       
## 3468                                       Curacao    CW   CUW 2005       
## 3469                                       Curacao    CW   CUW 2019       
## 3470                                       Curacao    CW   CUW 2017       
## 3471                                       Curacao    CW   CUW 2009       
## 3472                                       Curacao    CW   CUW 2018       
## 3473                                        Cyprus    CY   CYP 1965       
## 3474                                        Cyprus    CY   CYP 1963       
## 3475                                        Cyprus    CY   CYP 2003       
## 3476                                        Cyprus    CY   CYP 1964       
## 3477                                        Cyprus    CY   CYP 1962       
## 3478                                        Cyprus    CY   CYP 1967       
## 3479                                        Cyprus    CY   CYP 2016       
## 3480                                        Cyprus    CY   CYP 2005       
## 3481                                        Cyprus    CY   CYP 1966       
## 3482                                        Cyprus    CY   CYP 2002       
## 3483                                        Cyprus    CY   CYP 2007       
## 3484                                        Cyprus    CY   CYP 2004       
## 3485                                        Cyprus    CY   CYP 2019       
## 3486                                        Cyprus    CY   CYP 2006       
## 3487                                        Cyprus    CY   CYP 2011       
## 3488                                        Cyprus    CY   CYP 2008       
## 3489                                        Cyprus    CY   CYP 2009       
## 3490                                        Cyprus    CY   CYP 1961       
## 3491                                        Cyprus    CY   CYP 1986       
## 3492                                        Cyprus    CY   CYP 1987       
## 3493                                        Cyprus    CY   CYP 1988       
## 3494                                        Cyprus    CY   CYP 1989       
## 3495                                        Cyprus    CY   CYP 2020       
## 3496                                        Cyprus    CY   CYP 2021       
## 3497                                        Cyprus    CY   CYP 1992       
## 3498                                        Cyprus    CY   CYP 1993       
## 3499                                        Cyprus    CY   CYP 2010       
## 3500                                        Cyprus    CY   CYP 1996       
## 3501                                        Cyprus    CY   CYP 2012       
## 3502                                        Cyprus    CY   CYP 2013       
## 3503                                        Cyprus    CY   CYP 1985       
## 3504                                        Cyprus    CY   CYP 1960       
## 3505                                        Cyprus    CY   CYP 2001       
## 3506                                        Cyprus    CY   CYP 1974       
## 3507                                        Cyprus    CY   CYP 2017       
## 3508                                        Cyprus    CY   CYP 2018       
## 3509                                        Cyprus    CY   CYP 1977       
## 3510                                        Cyprus    CY   CYP 1978       
## 3511                                        Cyprus    CY   CYP 1979       
## 3512                                        Cyprus    CY   CYP 1980       
## 3513                                        Cyprus    CY   CYP 1968       
## 3514                                        Cyprus    CY   CYP 1969       
## 3515                                        Cyprus    CY   CYP 1970       
## 3516                                        Cyprus    CY   CYP 1971       
## 3517                                        Cyprus    CY   CYP 2014       
## 3518                                        Cyprus    CY   CYP 2015       
## 3519                                        Cyprus    CY   CYP 1973       
## 3520                                        Cyprus    CY   CYP 1983       
## 3521                                        Cyprus    CY   CYP 1975       
## 3522                                        Cyprus    CY   CYP 1990       
## 3523                                        Cyprus    CY   CYP 1991       
## 3524                                        Cyprus    CY   CYP 1994       
## 3525                                        Cyprus    CY   CYP 1984       
## 3526                                        Cyprus    CY   CYP 1981       
## 3527                                        Cyprus    CY   CYP 1982       
## 3528                                        Cyprus    CY   CYP 1972       
## 3529                                        Cyprus    CY   CYP 1997       
## 3530                                        Cyprus    CY   CYP 1999       
## 3531                                        Cyprus    CY   CYP 2000       
## 3532                                        Cyprus    CY   CYP 1998       
## 3533                                        Cyprus    CY   CYP 1976       
## 3534                                        Cyprus    CY   CYP 1995       
## 3535                                       Czechia    CZ   CZE 1967       
## 3536                                       Czechia    CZ   CZE 1968       
## 3537                                       Czechia    CZ   CZE 1969       
## 3538                                       Czechia    CZ   CZE 1970       
## 3539                                       Czechia    CZ   CZE 1971       
## 3540                                       Czechia    CZ   CZE 1972       
## 3541                                       Czechia    CZ   CZE 1973       
## 3542                                       Czechia    CZ   CZE 1974       
## 3543                                       Czechia    CZ   CZE 1975       
## 3544                                       Czechia    CZ   CZE 1976       
## 3545                                       Czechia    CZ   CZE 1977       
## 3546                                       Czechia    CZ   CZE 1978       
## 3547                                       Czechia    CZ   CZE 1979       
## 3548                                       Czechia    CZ   CZE 1980       
## 3549                                       Czechia    CZ   CZE 1981       
## 3550                                       Czechia    CZ   CZE 1982       
## 3551                                       Czechia    CZ   CZE 1983       
## 3552                                       Czechia    CZ   CZE 1984       
## 3553                                       Czechia    CZ   CZE 1985       
## 3554                                       Czechia    CZ   CZE 1986       
## 3555                                       Czechia    CZ   CZE 1987       
## 3556                                       Czechia    CZ   CZE 1988       
## 3557                                       Czechia    CZ   CZE 1989       
## 3558                                       Czechia    CZ   CZE 1990       
## 3559                                       Czechia    CZ   CZE 1991       
## 3560                                       Czechia    CZ   CZE 1992       
## 3561                                       Czechia    CZ   CZE 1993       
## 3562                                       Czechia    CZ   CZE 1995       
## 3563                                       Czechia    CZ   CZE 1996       
## 3564                                       Czechia    CZ   CZE 1960       
## 3565                                       Czechia    CZ   CZE 1961       
## 3566                                       Czechia    CZ   CZE 1962       
## 3567                                       Czechia    CZ   CZE 1963       
## 3568                                       Czechia    CZ   CZE 1964       
## 3569                                       Czechia    CZ   CZE 1965       
## 3570                                       Czechia    CZ   CZE 1966       
## 3571                                       Czechia    CZ   CZE 1994       
## 3572                                       Czechia    CZ   CZE 1997       
## 3573                                       Czechia    CZ   CZE 1998       
## 3574                                       Czechia    CZ   CZE 1999       
## 3575                                       Czechia    CZ   CZE 2000       
## 3576                                       Czechia    CZ   CZE 2001       
## 3577                                       Czechia    CZ   CZE 2002       
## 3578                                       Czechia    CZ   CZE 2003       
## 3579                                       Czechia    CZ   CZE 2004       
## 3580                                       Czechia    CZ   CZE 2005       
## 3581                                       Czechia    CZ   CZE 2006       
## 3582                                       Czechia    CZ   CZE 2007       
## 3583                                       Czechia    CZ   CZE 2008       
## 3584                                       Czechia    CZ   CZE 2009       
## 3585                                       Czechia    CZ   CZE 2010       
## 3586                                       Czechia    CZ   CZE 2011       
## 3587                                       Czechia    CZ   CZE 2012       
## 3588                                       Czechia    CZ   CZE 2013       
## 3589                                       Czechia    CZ   CZE 2014       
## 3590                                       Czechia    CZ   CZE 2015       
## 3591                                       Czechia    CZ   CZE 2016       
## 3592                                       Czechia    CZ   CZE 2017       
## 3593                                       Czechia    CZ   CZE 2018       
## 3594                                       Czechia    CZ   CZE 2019       
## 3595                                       Czechia    CZ   CZE 2020       
## 3596                                       Czechia    CZ   CZE 2021       
## 3597                                       Denmark    DK   DNK 1962       
## 3598                                       Denmark    DK   DNK 1967       
## 3599                                       Denmark    DK   DNK 1966       
## 3600                                       Denmark    DK   DNK 1987       
## 3601                                       Denmark    DK   DNK 1963       
## 3602                                       Denmark    DK   DNK 1961       
## 3603                                       Denmark    DK   DNK 1991       
## 3604                                       Denmark    DK   DNK 1992       
## 3605                                       Denmark    DK   DNK 1993       
## 3606                                       Denmark    DK   DNK 1965       
## 3607                                       Denmark    DK   DNK 1986       
## 3608                                       Denmark    DK   DNK 2000       
## 3609                                       Denmark    DK   DNK 1984       
## 3610                                       Denmark    DK   DNK 1964       
## 3611                                       Denmark    DK   DNK 2003       
## 3612                                       Denmark    DK   DNK 2004       
## 3613                                       Denmark    DK   DNK 1988       
## 3614                                       Denmark    DK   DNK 2006       
## 3615                                       Denmark    DK   DNK 2007       
## 3616                                       Denmark    DK   DNK 2008       
## 3617                                       Denmark    DK   DNK 2005       
## 3618                                       Denmark    DK   DNK 2010       
## 3619                                       Denmark    DK   DNK 1985       
## 3620                                       Denmark    DK   DNK 1960       
## 3621                                       Denmark    DK   DNK 2013       
## 3622                                       Denmark    DK   DNK 2001       
## 3623                                       Denmark    DK   DNK 2002       
## 3624                                       Denmark    DK   DNK 2017       
## 3625                                       Denmark    DK   DNK 2018       
## 3626                                       Denmark    DK   DNK 2019       
## 3627                                       Denmark    DK   DNK 2020       
## 3628                                       Denmark    DK   DNK 2021       
## 3629                                       Denmark    DK   DNK 1981       
## 3630                                       Denmark    DK   DNK 2009       
## 3631                                       Denmark    DK   DNK 1983       
## 3632                                       Denmark    DK   DNK 1996       
## 3633                                       Denmark    DK   DNK 1997       
## 3634                                       Denmark    DK   DNK 1998       
## 3635                                       Denmark    DK   DNK 1999       
## 3636                                       Denmark    DK   DNK 2014       
## 3637                                       Denmark    DK   DNK 1989       
## 3638                                       Denmark    DK   DNK 1990       
## 3639                                       Denmark    DK   DNK 1977       
## 3640                                       Denmark    DK   DNK 1978       
## 3641                                       Denmark    DK   DNK 1979       
## 3642                                       Denmark    DK   DNK 1980       
## 3643                                       Denmark    DK   DNK 1982       
## 3644                                       Denmark    DK   DNK 1995       
## 3645                                       Denmark    DK   DNK 1970       
## 3646                                       Denmark    DK   DNK 2011       
## 3647                                       Denmark    DK   DNK 2012       
## 3648                                       Denmark    DK   DNK 1973       
## 3649                                       Denmark    DK   DNK 1969       
## 3650                                       Denmark    DK   DNK 2015       
## 3651                                       Denmark    DK   DNK 2016       
## 3652                                       Denmark    DK   DNK 1976       
## 3653                                       Denmark    DK   DNK 1972       
## 3654                                       Denmark    DK   DNK 1994       
## 3655                                       Denmark    DK   DNK 1974       
## 3656                                       Denmark    DK   DNK 1968       
## 3657                                       Denmark    DK   DNK 1971       
## 3658                                       Denmark    DK   DNK 1975       
## 3659                                      Djibouti    DJ   DJI 1968       
## 3660                                      Djibouti    DJ   DJI 1973       
## 3661                                      Djibouti    DJ   DJI 1974       
## 3662                                      Djibouti    DJ   DJI 1972       
## 3663                                      Djibouti    DJ   DJI 1981       
## 3664                                      Djibouti    DJ   DJI 1965       
## 3665                                      Djibouti    DJ   DJI 1971       
## 3666                                      Djibouti    DJ   DJI 1985       
## 3667                                      Djibouti    DJ   DJI 1986       
## 3668                                      Djibouti    DJ   DJI 1987       
## 3669                                      Djibouti    DJ   DJI 1960       
## 3670                                      Djibouti    DJ   DJI 1961       
## 3671                                      Djibouti    DJ   DJI 1964       
## 3672                                      Djibouti    DJ   DJI 1963       
## 3673                                      Djibouti    DJ   DJI 1966       
## 3674                                      Djibouti    DJ   DJI 1967       
## 3675                                      Djibouti    DJ   DJI 2005       
## 3676                                      Djibouti    DJ   DJI 1982       
## 3677                                      Djibouti    DJ   DJI 1983       
## 3678                                      Djibouti    DJ   DJI 1984       
## 3679                                      Djibouti    DJ   DJI 2009       
## 3680                                      Djibouti    DJ   DJI 2010       
## 3681                                      Djibouti    DJ   DJI 2011       
## 3682                                      Djibouti    DJ   DJI 2012       
## 3683                                      Djibouti    DJ   DJI 1975       
## 3684                                      Djibouti    DJ   DJI 1962       
## 3685                                      Djibouti    DJ   DJI 1977       
## 3686                                      Djibouti    DJ   DJI 2003       
## 3687                                      Djibouti    DJ   DJI 2004       
## 3688                                      Djibouti    DJ   DJI 1980       
## 3689                                      Djibouti    DJ   DJI 2006       
## 3690                                      Djibouti    DJ   DJI 1969       
## 3691                                      Djibouti    DJ   DJI 1970       
## 3692                                      Djibouti    DJ   DJI 2020       
## 3693                                      Djibouti    DJ   DJI 2021       
## 3694                                      Djibouti    DJ   DJI 1997       
## 3695                                      Djibouti    DJ   DJI 1998       
## 3696                                      Djibouti    DJ   DJI 1988       
## 3697                                      Djibouti    DJ   DJI 1989       
## 3698                                      Djibouti    DJ   DJI 1990       
## 3699                                      Djibouti    DJ   DJI 1978       
## 3700                                      Djibouti    DJ   DJI 1979       
## 3701                                      Djibouti    DJ   DJI 1994       
## 3702                                      Djibouti    DJ   DJI 2017       
## 3703                                      Djibouti    DJ   DJI 2018       
## 3704                                      Djibouti    DJ   DJI 2019       
## 3705                                      Djibouti    DJ   DJI 1995       
## 3706                                      Djibouti    DJ   DJI 1996       
## 3707                                      Djibouti    DJ   DJI 2001       
## 3708                                      Djibouti    DJ   DJI 2002       
## 3709                                      Djibouti    DJ   DJI 1999       
## 3710                                      Djibouti    DJ   DJI 2000       
## 3711                                      Djibouti    DJ   DJI 2016       
## 3712                                      Djibouti    DJ   DJI 1993       
## 3713                                      Djibouti    DJ   DJI 2014       
## 3714                                      Djibouti    DJ   DJI 2015       
## 3715                                      Djibouti    DJ   DJI 2008       
## 3716                                      Djibouti    DJ   DJI 1976       
## 3717                                      Djibouti    DJ   DJI 2013       
## 3718                                      Djibouti    DJ   DJI 2007       
## 3719                                      Djibouti    DJ   DJI 1991       
## 3720                                      Djibouti    DJ   DJI 1992       
## 3721                                      Dominica    DM   DMA 1980       
## 3722                                      Dominica    DM   DMA 1985       
## 3723                                      Dominica    DM   DMA 1960       
## 3724                                      Dominica    DM   DMA 1961       
## 3725                                      Dominica    DM   DMA 1984       
## 3726                                      Dominica    DM   DMA 2021       
## 3727                                      Dominica    DM   DMA 1986       
## 3728                                      Dominica    DM   DMA 1983       
## 3729                                      Dominica    DM   DMA 1979       
## 3730                                      Dominica    DM   DMA 1996       
## 3731                                      Dominica    DM   DMA 1997       
## 3732                                      Dominica    DM   DMA 1998       
## 3733                                      Dominica    DM   DMA 1999       
## 3734                                      Dominica    DM   DMA 2000       
## 3735                                      Dominica    DM   DMA 2001       
## 3736                                      Dominica    DM   DMA 2002       
## 3737                                      Dominica    DM   DMA 2003       
## 3738                                      Dominica    DM   DMA 2004       
## 3739                                      Dominica    DM   DMA 2005       
## 3740                                      Dominica    DM   DMA 1977       
## 3741                                      Dominica    DM   DMA 1978       
## 3742                                      Dominica    DM   DMA 1995       
## 3743                                      Dominica    DM   DMA 2009       
## 3744                                      Dominica    DM   DMA 2010       
## 3745                                      Dominica    DM   DMA 2013       
## 3746                                      Dominica    DM   DMA 2014       
## 3747                                      Dominica    DM   DMA 2015       
## 3748                                      Dominica    DM   DMA 2016       
## 3749                                      Dominica    DM   DMA 2017       
## 3750                                      Dominica    DM   DMA 2018       
## 3751                                      Dominica    DM   DMA 2019       
## 3752                                      Dominica    DM   DMA 2020       
## 3753                                      Dominica    DM   DMA 1976       
## 3754                                      Dominica    DM   DMA 1990       
## 3755                                      Dominica    DM   DMA 1991       
## 3756                                      Dominica    DM   DMA 1992       
## 3757                                      Dominica    DM   DMA 1993       
## 3758                                      Dominica    DM   DMA 1981       
## 3759                                      Dominica    DM   DMA 1982       
## 3760                                      Dominica    DM   DMA 2012       
## 3761                                      Dominica    DM   DMA 1970       
## 3762                                      Dominica    DM   DMA 1971       
## 3763                                      Dominica    DM   DMA 1972       
## 3764                                      Dominica    DM   DMA 1973       
## 3765                                      Dominica    DM   DMA 1988       
## 3766                                      Dominica    DM   DMA 1989       
## 3767                                      Dominica    DM   DMA 2006       
## 3768                                      Dominica    DM   DMA 2007       
## 3769                                      Dominica    DM   DMA 2008       
## 3770                                      Dominica    DM   DMA 1966       
## 3771                                      Dominica    DM   DMA 1994       
## 3772                                      Dominica    DM   DMA 2011       
## 3773                                      Dominica    DM   DMA 1968       
## 3774                                      Dominica    DM   DMA 1969       
## 3775                                      Dominica    DM   DMA 1962       
## 3776                                      Dominica    DM   DMA 1967       
## 3777                                      Dominica    DM   DMA 1963       
## 3778                                      Dominica    DM   DMA 1974       
## 3779                                      Dominica    DM   DMA 1965       
## 3780                                      Dominica    DM   DMA 1975       
## 3781                                      Dominica    DM   DMA 1987       
## 3782                                      Dominica    DM   DMA 1964       
## 3783                            Dominican Republic    DO   DOM 1971       
## 3784                            Dominican Republic    DO   DOM 1972       
## 3785                            Dominican Republic    DO   DOM 1973       
## 3786                            Dominican Republic    DO   DOM 1969       
## 3787                            Dominican Republic    DO   DOM 1970       
## 3788                            Dominican Republic    DO   DOM 1963       
## 3789                            Dominican Republic    DO   DOM 1981       
## 3790                            Dominican Republic    DO   DOM 1986       
## 3791                            Dominican Republic    DO   DOM 1987       
## 3792                            Dominican Republic    DO   DOM 1984       
## 3793                            Dominican Republic    DO   DOM 1985       
## 3794                            Dominican Republic    DO   DOM 1964       
## 3795                            Dominican Republic    DO   DOM 1965       
## 3796                            Dominican Republic    DO   DOM 1966       
## 3797                            Dominican Republic    DO   DOM 1962       
## 3798                            Dominican Republic    DO   DOM 1967       
## 3799                            Dominican Republic    DO   DOM 1982       
## 3800                            Dominican Republic    DO   DOM 1983       
## 3801                            Dominican Republic    DO   DOM 2003       
## 3802                            Dominican Republic    DO   DOM 2007       
## 3803                            Dominican Republic    DO   DOM 2008       
## 3804                            Dominican Republic    DO   DOM 2009       
## 3805                            Dominican Republic    DO   DOM 2006       
## 3806                            Dominican Republic    DO   DOM 1975       
## 3807                            Dominican Republic    DO   DOM 1960       
## 3808                            Dominican Republic    DO   DOM 1961       
## 3809                            Dominican Republic    DO   DOM 2002       
## 3810                            Dominican Republic    DO   DOM 1979       
## 3811                            Dominican Republic    DO   DOM 1980       
## 3812                            Dominican Republic    DO   DOM 1968       
## 3813                            Dominican Republic    DO   DOM 2005       
## 3814                            Dominican Republic    DO   DOM 2018       
## 3815                            Dominican Republic    DO   DOM 2019       
## 3816                            Dominican Republic    DO   DOM 2020       
## 3817                            Dominican Republic    DO   DOM 2021       
## 3818                            Dominican Republic    DO   DOM 1997       
## 3819                            Dominican Republic    DO   DOM 1988       
## 3820                            Dominican Republic    DO   DOM 1976       
## 3821                            Dominican Republic    DO   DOM 1977       
## 3822                            Dominican Republic    DO   DOM 1978       
## 3823                            Dominican Republic    DO   DOM 1990       
## 3824                            Dominican Republic    DO   DOM 1991       
## 3825                            Dominican Republic    DO   DOM 2016       
## 3826                            Dominican Republic    DO   DOM 2017       
## 3827                            Dominican Republic    DO   DOM 1993       
## 3828                            Dominican Republic    DO   DOM 1994       
## 3829                            Dominican Republic    DO   DOM 1995       
## 3830                            Dominican Republic    DO   DOM 1996       
## 3831                            Dominican Republic    DO   DOM 2001       
## 3832                            Dominican Republic    DO   DOM 1998       
## 3833                            Dominican Republic    DO   DOM 1999       
## 3834                            Dominican Republic    DO   DOM 2000       
## 3835                            Dominican Republic    DO   DOM 2011       
## 3836                            Dominican Republic    DO   DOM 2013       
## 3837                            Dominican Republic    DO   DOM 2014       
## 3838                            Dominican Republic    DO   DOM 2015       
## 3839                            Dominican Republic    DO   DOM 2004       
## 3840                            Dominican Republic    DO   DOM 1974       
## 3841                            Dominican Republic    DO   DOM 2010       
## 3842                            Dominican Republic    DO   DOM 2012       
## 3843                            Dominican Republic    DO   DOM 1992       
## 3844                            Dominican Republic    DO   DOM 1989       
## 3845                    Early-demographic dividend    V2   EAR 1960       
## 3846                    Early-demographic dividend    V2   EAR 1980       
## 3847                    Early-demographic dividend    V2   EAR 1984       
## 3848                    Early-demographic dividend    V2   EAR 1985       
## 3849                    Early-demographic dividend    V2   EAR 1982       
## 3850                    Early-demographic dividend    V2   EAR 1983       
## 3851                    Early-demographic dividend    V2   EAR 1979       
## 3852                    Early-demographic dividend    V2   EAR 1996       
## 3853                    Early-demographic dividend    V2   EAR 2021       
## 3854                    Early-demographic dividend    V2   EAR 1998       
## 3855                    Early-demographic dividend    V2   EAR 1999       
## 3856                    Early-demographic dividend    V2   EAR 2000       
## 3857                    Early-demographic dividend    V2   EAR 2001       
## 3858                    Early-demographic dividend    V2   EAR 2002       
## 3859                    Early-demographic dividend    V2   EAR 2003       
## 3860                    Early-demographic dividend    V2   EAR 2004       
## 3861                    Early-demographic dividend    V2   EAR 2005       
## 3862                    Early-demographic dividend    V2   EAR 2006       
## 3863                    Early-demographic dividend    V2   EAR 1978       
## 3864                    Early-demographic dividend    V2   EAR 2008       
## 3865                    Early-demographic dividend    V2   EAR 2009       
## 3866                    Early-demographic dividend    V2   EAR 1997       
## 3867                    Early-demographic dividend    V2   EAR 2012       
## 3868                    Early-demographic dividend    V2   EAR 2013       
## 3869                    Early-demographic dividend    V2   EAR 2014       
## 3870                    Early-demographic dividend    V2   EAR 2015       
## 3871                    Early-demographic dividend    V2   EAR 2016       
## 3872                    Early-demographic dividend    V2   EAR 2017       
## 3873                    Early-demographic dividend    V2   EAR 2018       
## 3874                    Early-demographic dividend    V2   EAR 2019       
## 3875                    Early-demographic dividend    V2   EAR 2020       
## 3876                    Early-demographic dividend    V2   EAR 1977       
## 3877                    Early-demographic dividend    V2   EAR 1993       
## 3878                    Early-demographic dividend    V2   EAR 1994       
## 3879                    Early-demographic dividend    V2   EAR 1995       
## 3880                    Early-demographic dividend    V2   EAR 1981       
## 3881                    Early-demographic dividend    V2   EAR 2011       
## 3882                    Early-demographic dividend    V2   EAR 1969       
## 3883                    Early-demographic dividend    V2   EAR 1970       
## 3884                    Early-demographic dividend    V2   EAR 1971       
## 3885                    Early-demographic dividend    V2   EAR 1972       
## 3886                    Early-demographic dividend    V2   EAR 1989       
## 3887                    Early-demographic dividend    V2   EAR 1990       
## 3888                    Early-demographic dividend    V2   EAR 1991       
## 3889                    Early-demographic dividend    V2   EAR 1992       
## 3890                    Early-demographic dividend    V2   EAR 2007       
## 3891                    Early-demographic dividend    V2   EAR 1965       
## 3892                    Early-demographic dividend    V2   EAR 1966       
## 3893                    Early-demographic dividend    V2   EAR 2010       
## 3894                    Early-demographic dividend    V2   EAR 1967       
## 3895                    Early-demographic dividend    V2   EAR 1968       
## 3896                    Early-demographic dividend    V2   EAR 1961       
## 3897                    Early-demographic dividend    V2   EAR 1962       
## 3898                    Early-demographic dividend    V2   EAR 1963       
## 3899                    Early-demographic dividend    V2   EAR 1973       
## 3900                    Early-demographic dividend    V2   EAR 1964       
## 3901                    Early-demographic dividend    V2   EAR 1974       
## 3902                    Early-demographic dividend    V2   EAR 1975       
## 3903                    Early-demographic dividend    V2   EAR 1976       
## 3904                    Early-demographic dividend    V2   EAR 1988       
## 3905                    Early-demographic dividend    V2   EAR 1986       
## 3906                    Early-demographic dividend    V2   EAR 1987       
## 3907                           East Asia & Pacific    Z4   EAS 1968       
## 3908                           East Asia & Pacific    Z4   EAS 1967       
## 3909                           East Asia & Pacific    Z4   EAS 1963       
## 3910                           East Asia & Pacific    Z4   EAS 1969       
## 3911                           East Asia & Pacific    Z4   EAS 1961       
## 3912                           East Asia & Pacific    Z4   EAS 1966       
## 3913                           East Asia & Pacific    Z4   EAS 1980       
## 3914                           East Asia & Pacific    Z4   EAS 1977       
## 3915                           East Asia & Pacific    Z4   EAS 1965       
## 3916                           East Asia & Pacific    Z4   EAS 1983       
## 3917                           East Asia & Pacific    Z4   EAS 1962       
## 3918                           East Asia & Pacific    Z4   EAS 1981       
## 3919                           East Asia & Pacific    Z4   EAS 1982       
## 3920                           East Asia & Pacific    Z4   EAS 1960       
## 3921                           East Asia & Pacific    Z4   EAS 1979       
## 3922                           East Asia & Pacific    Z4   EAS 2001       
## 3923                           East Asia & Pacific    Z4   EAS 2002       
## 3924                           East Asia & Pacific    Z4   EAS 1978       
## 3925                           East Asia & Pacific    Z4   EAS 2009       
## 3926                           East Asia & Pacific    Z4   EAS 2006       
## 3927                           East Asia & Pacific    Z4   EAS 2007       
## 3928                           East Asia & Pacific    Z4   EAS 2008       
## 3929                           East Asia & Pacific    Z4   EAS 1973       
## 3930                           East Asia & Pacific    Z4   EAS 2000       
## 3931                           East Asia & Pacific    Z4   EAS 1975       
## 3932                           East Asia & Pacific    Z4   EAS 1976       
## 3933                           East Asia & Pacific    Z4   EAS 1964       
## 3934                           East Asia & Pacific    Z4   EAS 2005       
## 3935                           East Asia & Pacific    Z4   EAS 2018       
## 3936                           East Asia & Pacific    Z4   EAS 2019       
## 3937                           East Asia & Pacific    Z4   EAS 2020       
## 3938                           East Asia & Pacific    Z4   EAS 2021       
## 3939                           East Asia & Pacific    Z4   EAS 1995       
## 3940                           East Asia & Pacific    Z4   EAS 1984       
## 3941                           East Asia & Pacific    Z4   EAS 1985       
## 3942                           East Asia & Pacific    Z4   EAS 1986       
## 3943                           East Asia & Pacific    Z4   EAS 1974       
## 3944                           East Asia & Pacific    Z4   EAS 1988       
## 3945                           East Asia & Pacific    Z4   EAS 1989       
## 3946                           East Asia & Pacific    Z4   EAS 2016       
## 3947                           East Asia & Pacific    Z4   EAS 2017       
## 3948                           East Asia & Pacific    Z4   EAS 1991       
## 3949                           East Asia & Pacific    Z4   EAS 1992       
## 3950                           East Asia & Pacific    Z4   EAS 1993       
## 3951                           East Asia & Pacific    Z4   EAS 1994       
## 3952                           East Asia & Pacific    Z4   EAS 1999       
## 3953                           East Asia & Pacific    Z4   EAS 1996       
## 3954                           East Asia & Pacific    Z4   EAS 1997       
## 3955                           East Asia & Pacific    Z4   EAS 1998       
## 3956                           East Asia & Pacific    Z4   EAS 1972       
## 3957                           East Asia & Pacific    Z4   EAS 2013       
## 3958                           East Asia & Pacific    Z4   EAS 2014       
## 3959                           East Asia & Pacific    Z4   EAS 2015       
## 3960                           East Asia & Pacific    Z4   EAS 2003       
## 3961                           East Asia & Pacific    Z4   EAS 2004       
## 3962                           East Asia & Pacific    Z4   EAS 1971       
## 3963                           East Asia & Pacific    Z4   EAS 2012       
## 3964                           East Asia & Pacific    Z4   EAS 1970       
## 3965                           East Asia & Pacific    Z4   EAS 1987       
## 3966                           East Asia & Pacific    Z4   EAS 2010       
## 3967                           East Asia & Pacific    Z4   EAS 1990       
## 3968                           East Asia & Pacific    Z4   EAS 2011       
## 3969   East Asia & Pacific (excluding high income)    4E   EAP 1960       
## 3970   East Asia & Pacific (excluding high income)    4E   EAP 1980       
## 3971   East Asia & Pacific (excluding high income)    4E   EAP 1984       
## 3972   East Asia & Pacific (excluding high income)    4E   EAP 1983       
## 3973   East Asia & Pacific (excluding high income)    4E   EAP 2021       
## 3974   East Asia & Pacific (excluding high income)    4E   EAP 1985       
## 3975   East Asia & Pacific (excluding high income)    4E   EAP 1995       
## 3976   East Asia & Pacific (excluding high income)    4E   EAP 1996       
## 3977   East Asia & Pacific (excluding high income)    4E   EAP 1993       
## 3978   East Asia & Pacific (excluding high income)    4E   EAP 2019       
## 3979   East Asia & Pacific (excluding high income)    4E   EAP 1999       
## 3980   East Asia & Pacific (excluding high income)    4E   EAP 2000       
## 3981   East Asia & Pacific (excluding high income)    4E   EAP 1997       
## 3982   East Asia & Pacific (excluding high income)    4E   EAP 1998       
## 3983   East Asia & Pacific (excluding high income)    4E   EAP 2003       
## 3984   East Asia & Pacific (excluding high income)    4E   EAP 2020       
## 3985   East Asia & Pacific (excluding high income)    4E   EAP 2005       
## 3986   East Asia & Pacific (excluding high income)    4E   EAP 2006       
## 3987   East Asia & Pacific (excluding high income)    4E   EAP 1994       
## 3988   East Asia & Pacific (excluding high income)    4E   EAP 2009       
## 3989   East Asia & Pacific (excluding high income)    4E   EAP 2010       
## 3990   East Asia & Pacific (excluding high income)    4E   EAP 2011       
## 3991   East Asia & Pacific (excluding high income)    4E   EAP 2012       
## 3992   East Asia & Pacific (excluding high income)    4E   EAP 2013       
## 3993   East Asia & Pacific (excluding high income)    4E   EAP 2014       
## 3994   East Asia & Pacific (excluding high income)    4E   EAP 2001       
## 3995   East Asia & Pacific (excluding high income)    4E   EAP 2002       
## 3996   East Asia & Pacific (excluding high income)    4E   EAP 2017       
## 3997   East Asia & Pacific (excluding high income)    4E   EAP 2018       
## 3998   East Asia & Pacific (excluding high income)    4E   EAP 1978       
## 3999   East Asia & Pacific (excluding high income)    4E   EAP 1979       
## 4000   East Asia & Pacific (excluding high income)    4E   EAP 1992       
## 4001   East Asia & Pacific (excluding high income)    4E   EAP 1981       
## 4002   East Asia & Pacific (excluding high income)    4E   EAP 1982       
## 4003   East Asia & Pacific (excluding high income)    4E   EAP 1969       
## 4004   East Asia & Pacific (excluding high income)    4E   EAP 1970       
## 4005   East Asia & Pacific (excluding high income)    4E   EAP 1971       
## 4006   East Asia & Pacific (excluding high income)    4E   EAP 1972       
## 4007   East Asia & Pacific (excluding high income)    4E   EAP 2015       
## 4008   East Asia & Pacific (excluding high income)    4E   EAP 2016       
## 4009   East Asia & Pacific (excluding high income)    4E   EAP 1988       
## 4010   East Asia & Pacific (excluding high income)    4E   EAP 1989       
## 4011   East Asia & Pacific (excluding high income)    4E   EAP 1990       
## 4012   East Asia & Pacific (excluding high income)    4E   EAP 1991       
## 4013   East Asia & Pacific (excluding high income)    4E   EAP 1966       
## 4014   East Asia & Pacific (excluding high income)    4E   EAP 2007       
## 4015   East Asia & Pacific (excluding high income)    4E   EAP 2008       
## 4016   East Asia & Pacific (excluding high income)    4E   EAP 1968       
## 4017   East Asia & Pacific (excluding high income)    4E   EAP 1961       
## 4018   East Asia & Pacific (excluding high income)    4E   EAP 1962       
## 4019   East Asia & Pacific (excluding high income)    4E   EAP 1963       
## 4020   East Asia & Pacific (excluding high income)    4E   EAP 1973       
## 4021   East Asia & Pacific (excluding high income)    4E   EAP 1965       
## 4022   East Asia & Pacific (excluding high income)    4E   EAP 1974       
## 4023   East Asia & Pacific (excluding high income)    4E   EAP 1975       
## 4024   East Asia & Pacific (excluding high income)    4E   EAP 2004       
## 4025   East Asia & Pacific (excluding high income)    4E   EAP 1977       
## 4026   East Asia & Pacific (excluding high income)    4E   EAP 1964       
## 4027   East Asia & Pacific (excluding high income)    4E   EAP 1967       
## 4028   East Asia & Pacific (excluding high income)    4E   EAP 1987       
## 4029   East Asia & Pacific (excluding high income)    4E   EAP 1976       
## 4030   East Asia & Pacific (excluding high income)    4E   EAP 1986       
## 4031    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1966       
## 4032    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1965       
## 4033    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1974       
## 4034    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1964       
## 4035    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1960       
## 4036    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1978       
## 4037    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1963       
## 4038    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1977       
## 4039    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1998       
## 4040    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1979       
## 4041    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1980       
## 4042    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1976       
## 4043    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2002       
## 4044    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1999       
## 4045    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1975       
## 4046    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2005       
## 4047    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1967       
## 4048    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2003       
## 4049    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2004       
## 4050    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1970       
## 4051    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1997       
## 4052    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1972       
## 4053    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1973       
## 4054    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1961       
## 4055    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1962       
## 4056    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2012       
## 4057    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2013       
## 4058    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2014       
## 4059    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2015       
## 4060    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2016       
## 4061    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1981       
## 4062    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1982       
## 4063    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1983       
## 4064    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1971       
## 4065    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1986       
## 4066    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1987       
## 4067    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2010       
## 4068    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2011       
## 4069    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1988       
## 4070    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1989       
## 4071    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1990       
## 4072    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1991       
## 4073    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1992       
## 4074    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1993       
## 4075    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1994       
## 4076    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1995       
## 4077    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1996       
## 4078    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2007       
## 4079    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2008       
## 4080    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2009       
## 4081    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2021       
## 4082    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2000       
## 4083    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2001       
## 4084    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1968       
## 4085    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1969       
## 4086    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2006       
## 4087    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2018       
## 4088    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1984       
## 4089    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 1985       
## 4090    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2020       
## 4091    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2017       
## 4092    East Asia & Pacific (IDA & IBRD countries)    T4   TEA 2019       
## 4093                                       Ecuador    EC   ECU 1976       
## 4094                                       Ecuador    EC   ECU 1977       
## 4095                                       Ecuador    EC   ECU 1979       
## 4096                                       Ecuador    EC   ECU 1990       
## 4097                                       Ecuador    EC   ECU 1991       
## 4098                                       Ecuador    EC   ECU 1978       
## 4099                                       Ecuador    EC   ECU 1989       
## 4100                                       Ecuador    EC   ECU 1994       
## 4101                                       Ecuador    EC   ECU 1995       
## 4102                                       Ecuador    EC   ECU 1992       
## 4103                                       Ecuador    EC   ECU 1993       
## 4104                                       Ecuador    EC   ECU 2017       
## 4105                                       Ecuador    EC   ECU 2018       
## 4106                                       Ecuador    EC   ECU 1996       
## 4107                                       Ecuador    EC   ECU 2020       
## 4108                                       Ecuador    EC   ECU 2002       
## 4109                                       Ecuador    EC   ECU 2006       
## 4110                                       Ecuador    EC   ECU 2007       
## 4111                                       Ecuador    EC   ECU 2008       
## 4112                                       Ecuador    EC   ECU 2009       
## 4113                                       Ecuador    EC   ECU 2010       
## 4114                                       Ecuador    EC   ECU 2011       
## 4115                                       Ecuador    EC   ECU 2012       
## 4116                                       Ecuador    EC   ECU 2013       
## 4117                                       Ecuador    EC   ECU 2014       
## 4118                                       Ecuador    EC   ECU 2015       
## 4119                                       Ecuador    EC   ECU 2019       
## 4120                                       Ecuador    EC   ECU 1988       
## 4121                                       Ecuador    EC   ECU 1973       
## 4122                                       Ecuador    EC   ECU 2021       
## 4123                                       Ecuador    EC   ECU 1975       
## 4124                                       Ecuador    EC   ECU 2004       
## 4125                                       Ecuador    EC   ECU 2005       
## 4126                                       Ecuador    EC   ECU 1964       
## 4127                                       Ecuador    EC   ECU 1965       
## 4128                                       Ecuador    EC   ECU 1966       
## 4129                                       Ecuador    EC   ECU 1980       
## 4130                                       Ecuador    EC   ECU 1982       
## 4131                                       Ecuador    EC   ECU 1983       
## 4132                                       Ecuador    EC   ECU 2016       
## 4133                                       Ecuador    EC   ECU 1972       
## 4134                                       Ecuador    EC   ECU 1986       
## 4135                                       Ecuador    EC   ECU 1987       
## 4136                                       Ecuador    EC   ECU 2003       
## 4137                                       Ecuador    EC   ECU 1961       
## 4138                                       Ecuador    EC   ECU 1962       
## 4139                                       Ecuador    EC   ECU 1963       
## 4140                                       Ecuador    EC   ECU 1998       
## 4141                                       Ecuador    EC   ECU 1984       
## 4142                                       Ecuador    EC   ECU 1967       
## 4143                                       Ecuador    EC   ECU 1997       
## 4144                                       Ecuador    EC   ECU 1960       
## 4145                                       Ecuador    EC   ECU 1974       
## 4146                                       Ecuador    EC   ECU 1985       
## 4147                                       Ecuador    EC   ECU 2001       
## 4148                                       Ecuador    EC   ECU 1968       
## 4149                                       Ecuador    EC   ECU 1969       
## 4150                                       Ecuador    EC   ECU 1970       
## 4151                                       Ecuador    EC   ECU 1971       
## 4152                                       Ecuador    EC   ECU 2000       
## 4153                                       Ecuador    EC   ECU 1981       
## 4154                                       Ecuador    EC   ECU 1999       
## 4155                              Egypt, Arab Rep.    EG   EGY 1965       
## 4156                              Egypt, Arab Rep.    EG   EGY 1962       
## 4157                              Egypt, Arab Rep.    EG   EGY 1977       
## 4158                              Egypt, Arab Rep.    EG   EGY 1961       
## 4159                              Egypt, Arab Rep.    EG   EGY 1979       
## 4160                              Egypt, Arab Rep.    EG   EGY 1964       
## 4161                              Egypt, Arab Rep.    EG   EGY 1996       
## 4162                              Egypt, Arab Rep.    EG   EGY 1978       
## 4163                              Egypt, Arab Rep.    EG   EGY 1974       
## 4164                              Egypt, Arab Rep.    EG   EGY 1963       
## 4165                              Egypt, Arab Rep.    EG   EGY 1976       
## 4166                              Egypt, Arab Rep.    EG   EGY 1973       
## 4167                              Egypt, Arab Rep.    EG   EGY 2001       
## 4168                              Egypt, Arab Rep.    EG   EGY 1975       
## 4169                              Egypt, Arab Rep.    EG   EGY 1966       
## 4170                              Egypt, Arab Rep.    EG   EGY 2000       
## 4171                              Egypt, Arab Rep.    EG   EGY 1968       
## 4172                              Egypt, Arab Rep.    EG   EGY 2002       
## 4173                              Egypt, Arab Rep.    EG   EGY 1995       
## 4174                              Egypt, Arab Rep.    EG   EGY 1971       
## 4175                              Egypt, Arab Rep.    EG   EGY 1972       
## 4176                              Egypt, Arab Rep.    EG   EGY 1960       
## 4177                              Egypt, Arab Rep.    EG   EGY 1998       
## 4178                              Egypt, Arab Rep.    EG   EGY 1999       
## 4179                              Egypt, Arab Rep.    EG   EGY 2012       
## 4180                              Egypt, Arab Rep.    EG   EGY 2013       
## 4181                              Egypt, Arab Rep.    EG   EGY 2014       
## 4182                              Egypt, Arab Rep.    EG   EGY 2015       
## 4183                              Egypt, Arab Rep.    EG   EGY 1980       
## 4184                              Egypt, Arab Rep.    EG   EGY 1981       
## 4185                              Egypt, Arab Rep.    EG   EGY 1969       
## 4186                              Egypt, Arab Rep.    EG   EGY 1970       
## 4187                              Egypt, Arab Rep.    EG   EGY 1983       
## 4188                              Egypt, Arab Rep.    EG   EGY 1984       
## 4189                              Egypt, Arab Rep.    EG   EGY 2009       
## 4190                              Egypt, Arab Rep.    EG   EGY 2010       
## 4191                              Egypt, Arab Rep.    EG   EGY 2011       
## 4192                              Egypt, Arab Rep.    EG   EGY 1987       
## 4193                              Egypt, Arab Rep.    EG   EGY 1988       
## 4194                              Egypt, Arab Rep.    EG   EGY 1989       
## 4195                              Egypt, Arab Rep.    EG   EGY 1990       
## 4196                              Egypt, Arab Rep.    EG   EGY 1991       
## 4197                              Egypt, Arab Rep.    EG   EGY 1992       
## 4198                              Egypt, Arab Rep.    EG   EGY 1993       
## 4199                              Egypt, Arab Rep.    EG   EGY 1994       
## 4200                              Egypt, Arab Rep.    EG   EGY 2006       
## 4201                              Egypt, Arab Rep.    EG   EGY 2007       
## 4202                              Egypt, Arab Rep.    EG   EGY 2008       
## 4203                              Egypt, Arab Rep.    EG   EGY 2021       
## 4204                              Egypt, Arab Rep.    EG   EGY 1997       
## 4205                              Egypt, Arab Rep.    EG   EGY 1986       
## 4206                              Egypt, Arab Rep.    EG   EGY 1967       
## 4207                              Egypt, Arab Rep.    EG   EGY 2004       
## 4208                              Egypt, Arab Rep.    EG   EGY 2005       
## 4209                              Egypt, Arab Rep.    EG   EGY 2003       
## 4210                              Egypt, Arab Rep.    EG   EGY 1982       
## 4211                              Egypt, Arab Rep.    EG   EGY 2020       
## 4212                              Egypt, Arab Rep.    EG   EGY 2016       
## 4213                              Egypt, Arab Rep.    EG   EGY 2018       
## 4214                              Egypt, Arab Rep.    EG   EGY 2019       
## 4215                              Egypt, Arab Rep.    EG   EGY 1985       
## 4216                              Egypt, Arab Rep.    EG   EGY 2017       
## 4217                                   El Salvador    SV   SLV 2020       
## 4218                                   El Salvador    SV   SLV 2021       
## 4219                                   El Salvador    SV   SLV 2019       
## 4220                                   El Salvador    SV   SLV 1991       
## 4221                                   El Salvador    SV   SLV 1978       
## 4222                                   El Salvador    SV   SLV 1994       
## 4223                                   El Salvador    SV   SLV 1995       
## 4224                                   El Salvador    SV   SLV 2017       
## 4225                                   El Salvador    SV   SLV 1993       
## 4226                                   El Salvador    SV   SLV 2014       
## 4227                                   El Salvador    SV   SLV 2015       
## 4228                                   El Salvador    SV   SLV 1992       
## 4229                                   El Salvador    SV   SLV 1988       
## 4230                                   El Salvador    SV   SLV 1989       
## 4231                                   El Salvador    SV   SLV 1990       
## 4232                                   El Salvador    SV   SLV 2005       
## 4233                                   El Salvador    SV   SLV 2006       
## 4234                                   El Salvador    SV   SLV 2007       
## 4235                                   El Salvador    SV   SLV 2008       
## 4236                                   El Salvador    SV   SLV 2009       
## 4237                                   El Salvador    SV   SLV 2010       
## 4238                                   El Salvador    SV   SLV 2011       
## 4239                                   El Salvador    SV   SLV 2012       
## 4240                                   El Salvador    SV   SLV 2013       
## 4241                                   El Salvador    SV   SLV 2016       
## 4242                                   El Salvador    SV   SLV 1972       
## 4243                                   El Salvador    SV   SLV 1973       
## 4244                                   El Salvador    SV   SLV 2018       
## 4245                                   El Salvador    SV   SLV 1975       
## 4246                                   El Salvador    SV   SLV 1976       
## 4247                                   El Salvador    SV   SLV 1977       
## 4248                                   El Salvador    SV   SLV 1964       
## 4249                                   El Salvador    SV   SLV 1965       
## 4250                                   El Salvador    SV   SLV 1979       
## 4251                                   El Salvador    SV   SLV 1982       
## 4252                                   El Salvador    SV   SLV 1983       
## 4253                                   El Salvador    SV   SLV 1984       
## 4254                                   El Salvador    SV   SLV 1971       
## 4255                                   El Salvador    SV   SLV 1986       
## 4256                                   El Salvador    SV   SLV 1987       
## 4257                                   El Salvador    SV   SLV 2002       
## 4258                                   El Salvador    SV   SLV 2003       
## 4259                                   El Salvador    SV   SLV 2004       
## 4260                                   El Salvador    SV   SLV 1963       
## 4261                                   El Salvador    SV   SLV 1997       
## 4262                                   El Salvador    SV   SLV 1998       
## 4263                                   El Salvador    SV   SLV 1966       
## 4264                                   El Salvador    SV   SLV 1996       
## 4265                                   El Salvador    SV   SLV 2001       
## 4266                                   El Salvador    SV   SLV 1968       
## 4267                                   El Salvador    SV   SLV 1985       
## 4268                                   El Salvador    SV   SLV 2000       
## 4269                                   El Salvador    SV   SLV 1962       
## 4270                                   El Salvador    SV   SLV 1974       
## 4271                                   El Salvador    SV   SLV 1961       
## 4272                                   El Salvador    SV   SLV 1967       
## 4273                                   El Salvador    SV   SLV 1969       
## 4274                                   El Salvador    SV   SLV 1970       
## 4275                                   El Salvador    SV   SLV 1999       
## 4276                                   El Salvador    SV   SLV 1980       
## 4277                                   El Salvador    SV   SLV 1960       
## 4278                                   El Salvador    SV   SLV 1981       
## 4279                             Equatorial Guinea    GQ   GNQ 1961       
## 4280                             Equatorial Guinea    GQ   GNQ 1969       
## 4281                             Equatorial Guinea    GQ   GNQ 1973       
## 4282                             Equatorial Guinea    GQ   GNQ 1960       
## 4283                             Equatorial Guinea    GQ   GNQ 1993       
## 4284                             Equatorial Guinea    GQ   GNQ 1974       
## 4285                             Equatorial Guinea    GQ   GNQ 1971       
## 4286                             Equatorial Guinea    GQ   GNQ 1972       
## 4287                             Equatorial Guinea    GQ   GNQ 1994       
## 4288                             Equatorial Guinea    GQ   GNQ 1975       
## 4289                             Equatorial Guinea    GQ   GNQ 2001       
## 4290                             Equatorial Guinea    GQ   GNQ 1962       
## 4291                             Equatorial Guinea    GQ   GNQ 1999       
## 4292                             Equatorial Guinea    GQ   GNQ 2000       
## 4293                             Equatorial Guinea    GQ   GNQ 1965       
## 4294                             Equatorial Guinea    GQ   GNQ 1992       
## 4295                             Equatorial Guinea    GQ   GNQ 1967       
## 4296                             Equatorial Guinea    GQ   GNQ 1968       
## 4297                             Equatorial Guinea    GQ   GNQ 1970       
## 4298                             Equatorial Guinea    GQ   GNQ 1997       
## 4299                             Equatorial Guinea    GQ   GNQ 1998       
## 4300                             Equatorial Guinea    GQ   GNQ 2011       
## 4301                             Equatorial Guinea    GQ   GNQ 2012       
## 4302                             Equatorial Guinea    GQ   GNQ 2013       
## 4303                             Equatorial Guinea    GQ   GNQ 2014       
## 4304                             Equatorial Guinea    GQ   GNQ 1976       
## 4305                             Equatorial Guinea    GQ   GNQ 1977       
## 4306                             Equatorial Guinea    GQ   GNQ 1978       
## 4307                             Equatorial Guinea    GQ   GNQ 1966       
## 4308                             Equatorial Guinea    GQ   GNQ 1980       
## 4309                             Equatorial Guinea    GQ   GNQ 1981       
## 4310                             Equatorial Guinea    GQ   GNQ 2008       
## 4311                             Equatorial Guinea    GQ   GNQ 2009       
## 4312                             Equatorial Guinea    GQ   GNQ 2010       
## 4313                             Equatorial Guinea    GQ   GNQ 1984       
## 4314                             Equatorial Guinea    GQ   GNQ 1985       
## 4315                             Equatorial Guinea    GQ   GNQ 1986       
## 4316                             Equatorial Guinea    GQ   GNQ 1987       
## 4317                             Equatorial Guinea    GQ   GNQ 1988       
## 4318                             Equatorial Guinea    GQ   GNQ 1989       
## 4319                             Equatorial Guinea    GQ   GNQ 1990       
## 4320                             Equatorial Guinea    GQ   GNQ 1991       
## 4321                             Equatorial Guinea    GQ   GNQ 2005       
## 4322                             Equatorial Guinea    GQ   GNQ 2006       
## 4323                             Equatorial Guinea    GQ   GNQ 2007       
## 4324                             Equatorial Guinea    GQ   GNQ 2020       
## 4325                             Equatorial Guinea    GQ   GNQ 1995       
## 4326                             Equatorial Guinea    GQ   GNQ 1996       
## 4327                             Equatorial Guinea    GQ   GNQ 1963       
## 4328                             Equatorial Guinea    GQ   GNQ 1964       
## 4329                             Equatorial Guinea    GQ   GNQ 2004       
## 4330                             Equatorial Guinea    GQ   GNQ 2002       
## 4331                             Equatorial Guinea    GQ   GNQ 1979       
## 4332                             Equatorial Guinea    GQ   GNQ 2019       
## 4333                             Equatorial Guinea    GQ   GNQ 2015       
## 4334                             Equatorial Guinea    GQ   GNQ 2017       
## 4335                             Equatorial Guinea    GQ   GNQ 1983       
## 4336                             Equatorial Guinea    GQ   GNQ 2021       
## 4337                             Equatorial Guinea    GQ   GNQ 2018       
## 4338                             Equatorial Guinea    GQ   GNQ 1982       
## 4339                             Equatorial Guinea    GQ   GNQ 2003       
## 4340                             Equatorial Guinea    GQ   GNQ 2016       
## 4341                                       Eritrea    ER   ERI 2016       
## 4342                                       Eritrea    ER   ERI 2017       
## 4343                                       Eritrea    ER   ERI 2015       
## 4344                                       Eritrea    ER   ERI 1986       
## 4345                                       Eritrea    ER   ERI 2012       
## 4346                                       Eritrea    ER   ERI 1988       
## 4347                                       Eritrea    ER   ERI 1989       
## 4348                                       Eritrea    ER   ERI 1990       
## 4349                                       Eritrea    ER   ERI 1987       
## 4350                                       Eritrea    ER   ERI 1983       
## 4351                                       Eritrea    ER   ERI 2009       
## 4352                                       Eritrea    ER   ERI 2010       
## 4353                                       Eritrea    ER   ERI 2000       
## 4354                                       Eritrea    ER   ERI 2001       
## 4355                                       Eritrea    ER   ERI 1984       
## 4356                                       Eritrea    ER   ERI 2003       
## 4357                                       Eritrea    ER   ERI 2004       
## 4358                                       Eritrea    ER   ERI 2005       
## 4359                                       Eritrea    ER   ERI 2002       
## 4360                                       Eritrea    ER   ERI 2007       
## 4361                                       Eritrea    ER   ERI 2008       
## 4362                                       Eritrea    ER   ERI 2011       
## 4363                                       Eritrea    ER   ERI 1971       
## 4364                                       Eritrea    ER   ERI 1972       
## 4365                                       Eritrea    ER   ERI 1985       
## 4366                                       Eritrea    ER   ERI 2014       
## 4367                                       Eritrea    ER   ERI 1975       
## 4368                                       Eritrea    ER   ERI 1976       
## 4369                                       Eritrea    ER   ERI 1977       
## 4370                                       Eritrea    ER   ERI 2018       
## 4371                                       Eritrea    ER   ERI 2019       
## 4372                                       Eritrea    ER   ERI 2006       
## 4373                                       Eritrea    ER   ERI 2021       
## 4374                                       Eritrea    ER   ERI 1979       
## 4375                                       Eritrea    ER   ERI 1970       
## 4376                                       Eritrea    ER   ERI 1981       
## 4377                                       Eritrea    ER   ERI 1982       
## 4378                                       Eritrea    ER   ERI 2013       
## 4379                                       Eritrea    ER   ERI 1998       
## 4380                                       Eritrea    ER   ERI 1999       
## 4381                                       Eritrea    ER   ERI 1962       
## 4382                                       Eritrea    ER   ERI 1963       
## 4383                                       Eritrea    ER   ERI 1964       
## 4384                                       Eritrea    ER   ERI 1965       
## 4385                                       Eritrea    ER   ERI 1991       
## 4386                                       Eritrea    ER   ERI 1992       
## 4387                                       Eritrea    ER   ERI 1993       
## 4388                                       Eritrea    ER   ERI 1980       
## 4389                                       Eritrea    ER   ERI 1995       
## 4390                                       Eritrea    ER   ERI 1996       
## 4391                                       Eritrea    ER   ERI 1967       
## 4392                                       Eritrea    ER   ERI 1973       
## 4393                                       Eritrea    ER   ERI 1974       
## 4394                                       Eritrea    ER   ERI 1961       
## 4395                                       Eritrea    ER   ERI 1968       
## 4396                                       Eritrea    ER   ERI 1969       
## 4397                                       Eritrea    ER   ERI 1966       
## 4398                                       Eritrea    ER   ERI 2020       
## 4399                                       Eritrea    ER   ERI 1997       
## 4400                                       Eritrea    ER   ERI 1994       
## 4401                                       Eritrea    ER   ERI 1978       
## 4402                                       Eritrea    ER   ERI 1960       
## 4403                                       Estonia    EE   EST 1964       
## 4404                                       Estonia    EE   EST 1968       
## 4405                                       Estonia    EE   EST 1990       
## 4406                                       Estonia    EE   EST 1969       
## 4407                                       Estonia    EE   EST 1967       
## 4408                                       Estonia    EE   EST 1991       
## 4409                                       Estonia    EE   EST 1970       
## 4410                                       Estonia    EE   EST 1997       
## 4411                                       Estonia    EE   EST 1998       
## 4412                                       Estonia    EE   EST 1995       
## 4413                                       Estonia    EE   EST 1996       
## 4414                                       Estonia    EE   EST 1960       
## 4415                                       Estonia    EE   EST 1989       
## 4416                                       Estonia    EE   EST 1962       
## 4417                                       Estonia    EE   EST 1963       
## 4418                                       Estonia    EE   EST 1965       
## 4419                                       Estonia    EE   EST 1966       
## 4420                                       Estonia    EE   EST 1994       
## 4421                                       Estonia    EE   EST 2006       
## 4422                                       Estonia    EE   EST 2007       
## 4423                                       Estonia    EE   EST 2008       
## 4424                                       Estonia    EE   EST 2009       
## 4425                                       Estonia    EE   EST 1971       
## 4426                                       Estonia    EE   EST 1972       
## 4427                                       Estonia    EE   EST 1973       
## 4428                                       Estonia    EE   EST 1961       
## 4429                                       Estonia    EE   EST 1978       
## 4430                                       Estonia    EE   EST 1979       
## 4431                                       Estonia    EE   EST 2003       
## 4432                                       Estonia    EE   EST 2004       
## 4433                                       Estonia    EE   EST 2005       
## 4434                                       Estonia    EE   EST 1981       
## 4435                                       Estonia    EE   EST 1982       
## 4436                                       Estonia    EE   EST 1983       
## 4437                                       Estonia    EE   EST 1984       
## 4438                                       Estonia    EE   EST 1985       
## 4439                                       Estonia    EE   EST 1986       
## 4440                                       Estonia    EE   EST 1987       
## 4441                                       Estonia    EE   EST 1988       
## 4442                                       Estonia    EE   EST 2000       
## 4443                                       Estonia    EE   EST 2001       
## 4444                                       Estonia    EE   EST 2002       
## 4445                                       Estonia    EE   EST 1976       
## 4446                                       Estonia    EE   EST 1992       
## 4447                                       Estonia    EE   EST 1993       
## 4448                                       Estonia    EE   EST 2017       
## 4449                                       Estonia    EE   EST 2018       
## 4450                                       Estonia    EE   EST 2019       
## 4451                                       Estonia    EE   EST 2020       
## 4452                                       Estonia    EE   EST 2021       
## 4453                                       Estonia    EE   EST 1975       
## 4454                                       Estonia    EE   EST 1999       
## 4455                                       Estonia    EE   EST 2011       
## 4456                                       Estonia    EE   EST 1974       
## 4457                                       Estonia    EE   EST 2016       
## 4458                                       Estonia    EE   EST 2013       
## 4459                                       Estonia    EE   EST 1977       
## 4460                                       Estonia    EE   EST 1980       
## 4461                                       Estonia    EE   EST 2015       
## 4462                                       Estonia    EE   EST 2012       
## 4463                                       Estonia    EE   EST 2010       
## 4464                                       Estonia    EE   EST 2014       
## 4465                                      Eswatini    SZ   SWZ 2020       
## 4466                                      Eswatini    SZ   SWZ 2016       
## 4467                                      Eswatini    SZ   SWZ 2017       
## 4468                                      Eswatini    SZ   SWZ 2018       
## 4469                                      Eswatini    SZ   SWZ 2019       
## 4470                                      Eswatini    SZ   SWZ 1989       
## 4471                                      Eswatini    SZ   SWZ 2012       
## 4472                                      Eswatini    SZ   SWZ 2009       
## 4473                                      Eswatini    SZ   SWZ 2010       
## 4474                                      Eswatini    SZ   SWZ 2015       
## 4475                                      Eswatini    SZ   SWZ 1985       
## 4476                                      Eswatini    SZ   SWZ 1986       
## 4477                                      Eswatini    SZ   SWZ 1987       
## 4478                                      Eswatini    SZ   SWZ 1988       
## 4479                                      Eswatini    SZ   SWZ 2004       
## 4480                                      Eswatini    SZ   SWZ 2005       
## 4481                                      Eswatini    SZ   SWZ 2006       
## 4482                                      Eswatini    SZ   SWZ 2007       
## 4483                                      Eswatini    SZ   SWZ 2011       
## 4484                                      Eswatini    SZ   SWZ 1981       
## 4485                                      Eswatini    SZ   SWZ 1982       
## 4486                                      Eswatini    SZ   SWZ 1983       
## 4487                                      Eswatini    SZ   SWZ 1984       
## 4488                                      Eswatini    SZ   SWZ 1969       
## 4489                                      Eswatini    SZ   SWZ 1970       
## 4490                                      Eswatini    SZ   SWZ 1971       
## 4491                                      Eswatini    SZ   SWZ 1972       
## 4492                                      Eswatini    SZ   SWZ 1973       
## 4493                                      Eswatini    SZ   SWZ 1974       
## 4494                                      Eswatini    SZ   SWZ 2021       
## 4495                                      Eswatini    SZ   SWZ 1976       
## 4496                                      Eswatini    SZ   SWZ 2008       
## 4497                                      Eswatini    SZ   SWZ 1965       
## 4498                                      Eswatini    SZ   SWZ 1966       
## 4499                                      Eswatini    SZ   SWZ 2013       
## 4500                                      Eswatini    SZ   SWZ 2014       
## 4501                                      Eswatini    SZ   SWZ 1999       
## 4502                                      Eswatini    SZ   SWZ 2000       
## 4503                                      Eswatini    SZ   SWZ 2001       
## 4504                                      Eswatini    SZ   SWZ 2002       
## 4505                                      Eswatini    SZ   SWZ 2003       
## 4506                                      Eswatini    SZ   SWZ 1960       
## 4507                                      Eswatini    SZ   SWZ 1990       
## 4508                                      Eswatini    SZ   SWZ 1991       
## 4509                                      Eswatini    SZ   SWZ 1977       
## 4510                                      Eswatini    SZ   SWZ 1978       
## 4511                                      Eswatini    SZ   SWZ 1979       
## 4512                                      Eswatini    SZ   SWZ 1980       
## 4513                                      Eswatini    SZ   SWZ 1967       
## 4514                                      Eswatini    SZ   SWZ 1968       
## 4515                                      Eswatini    SZ   SWZ 1997       
## 4516                                      Eswatini    SZ   SWZ 1998       
## 4517                                      Eswatini    SZ   SWZ 1962       
## 4518                                      Eswatini    SZ   SWZ 1963       
## 4519                                      Eswatini    SZ   SWZ 1964       
## 4520                                      Eswatini    SZ   SWZ 1961       
## 4521                                      Eswatini    SZ   SWZ 1994       
## 4522                                      Eswatini    SZ   SWZ 1995       
## 4523                                      Eswatini    SZ   SWZ 1996       
## 4524                                      Eswatini    SZ   SWZ 1993       
## 4525                                      Eswatini    SZ   SWZ 1975       
## 4526                                      Eswatini    SZ   SWZ 1992       
## 4527                                      Ethiopia    ET   ETH 1969       
## 4528                                      Ethiopia    ET   ETH 1971       
## 4529                                      Ethiopia    ET   ETH 1968       
## 4530                                      Ethiopia    ET   ETH 1970       
## 4531                                      Ethiopia    ET   ETH 1992       
## 4532                                      Ethiopia    ET   ETH 1967       
## 4533                                      Ethiopia    ET   ETH 1994       
## 4534                                      Ethiopia    ET   ETH 1991       
## 4535                                      Ethiopia    ET   ETH 1960       
## 4536                                      Ethiopia    ET   ETH 1993       
## 4537                                      Ethiopia    ET   ETH 1987       
## 4538                                      Ethiopia    ET   ETH 1988       
## 4539                                      Ethiopia    ET   ETH 1965       
## 4540                                      Ethiopia    ET   ETH 1966       
## 4541                                      Ethiopia    ET   ETH 1989       
## 4542                                      Ethiopia    ET   ETH 1990       
## 4543                                      Ethiopia    ET   ETH 2003       
## 4544                                      Ethiopia    ET   ETH 2004       
## 4545                                      Ethiopia    ET   ETH 2005       
## 4546                                      Ethiopia    ET   ETH 2006       
## 4547                                      Ethiopia    ET   ETH 1972       
## 4548                                      Ethiopia    ET   ETH 1973       
## 4549                                      Ethiopia    ET   ETH 1961       
## 4550                                      Ethiopia    ET   ETH 1962       
## 4551                                      Ethiopia    ET   ETH 1963       
## 4552                                      Ethiopia    ET   ETH 1964       
## 4553                                      Ethiopia    ET   ETH 2000       
## 4554                                      Ethiopia    ET   ETH 2001       
## 4555                                      Ethiopia    ET   ETH 2002       
## 4556                                      Ethiopia    ET   ETH 1979       
## 4557                                      Ethiopia    ET   ETH 1980       
## 4558                                      Ethiopia    ET   ETH 1981       
## 4559                                      Ethiopia    ET   ETH 1982       
## 4560                                      Ethiopia    ET   ETH 1983       
## 4561                                      Ethiopia    ET   ETH 1984       
## 4562                                      Ethiopia    ET   ETH 1985       
## 4563                                      Ethiopia    ET   ETH 1986       
## 4564                                      Ethiopia    ET   ETH 1997       
## 4565                                      Ethiopia    ET   ETH 1998       
## 4566                                      Ethiopia    ET   ETH 1999       
## 4567                                      Ethiopia    ET   ETH 1976       
## 4568                                      Ethiopia    ET   ETH 1977       
## 4569                                      Ethiopia    ET   ETH 1978       
## 4570                                      Ethiopia    ET   ETH 2015       
## 4571                                      Ethiopia    ET   ETH 2016       
## 4572                                      Ethiopia    ET   ETH 2017       
## 4573                                      Ethiopia    ET   ETH 2018       
## 4574                                      Ethiopia    ET   ETH 2019       
## 4575                                      Ethiopia    ET   ETH 1995       
## 4576                                      Ethiopia    ET   ETH 1996       
## 4577                                      Ethiopia    ET   ETH 2009       
## 4578                                      Ethiopia    ET   ETH 1974       
## 4579                                      Ethiopia    ET   ETH 1975       
## 4580                                      Ethiopia    ET   ETH 2011       
## 4581                                      Ethiopia    ET   ETH 2012       
## 4582                                      Ethiopia    ET   ETH 2013       
## 4583                                      Ethiopia    ET   ETH 2014       
## 4584                                      Ethiopia    ET   ETH 2007       
## 4585                                      Ethiopia    ET   ETH 2008       
## 4586                                      Ethiopia    ET   ETH 2021       
## 4587                                      Ethiopia    ET   ETH 2010       
## 4588                                      Ethiopia    ET   ETH 2020       
## 4589                                     Euro area    XC   EMU 2015       
## 4590                                     Euro area    XC   EMU 2014       
## 4591                                     Euro area    XC   EMU 2006       
## 4592                                     Euro area    XC   EMU 2012       
## 4593                                     Euro area    XC   EMU 2013       
## 4594                                     Euro area    XC   EMU 2005       
## 4595                                     Euro area    XC   EMU 2010       
## 4596                                     Euro area    XC   EMU 2011       
## 4597                                     Euro area    XC   EMU 2008       
## 4598                                     Euro area    XC   EMU 2009       
## 4599                                     Euro area    XC   EMU 1985       
## 4600                                     Euro area    XC   EMU 1986       
## 4601                                     Euro area    XC   EMU 1983       
## 4602                                     Euro area    XC   EMU 1984       
## 4603                                     Euro area    XC   EMU 2003       
## 4604                                     Euro area    XC   EMU 2004       
## 4605                                     Euro area    XC   EMU 2007       
## 4606                                     Euro area    XC   EMU 2021       
## 4607                                     Euro area    XC   EMU 1980       
## 4608                                     Euro area    XC   EMU 1981       
## 4609                                     Euro area    XC   EMU 1982       
## 4610                                     Euro area    XC   EMU 1967       
## 4611                                     Euro area    XC   EMU 1968       
## 4612                                     Euro area    XC   EMU 1969       
## 4613                                     Euro area    XC   EMU 1970       
## 4614                                     Euro area    XC   EMU 1971       
## 4615                                     Euro area    XC   EMU 2016       
## 4616                                     Euro area    XC   EMU 2017       
## 4617                                     Euro area    XC   EMU 2018       
## 4618                                     Euro area    XC   EMU 1962       
## 4619                                     Euro area    XC   EMU 1963       
## 4620                                     Euro area    XC   EMU 1964       
## 4621                                     Euro area    XC   EMU 1965       
## 4622                                     Euro area    XC   EMU 1966       
## 4623                                     Euro area    XC   EMU 1996       
## 4624                                     Euro area    XC   EMU 1997       
## 4625                                     Euro area    XC   EMU 1998       
## 4626                                     Euro area    XC   EMU 1999       
## 4627                                     Euro area    XC   EMU 2000       
## 4628                                     Euro area    XC   EMU 1987       
## 4629                                     Euro area    XC   EMU 1988       
## 4630                                     Euro area    XC   EMU 1989       
## 4631                                     Euro area    XC   EMU 2019       
## 4632                                     Euro area    XC   EMU 2020       
## 4633                                     Euro area    XC   EMU 1979       
## 4634                                     Euro area    XC   EMU 1978       
## 4635                                     Euro area    XC   EMU 1993       
## 4636                                     Euro area    XC   EMU 1994       
## 4637                                     Euro area    XC   EMU 1995       
## 4638                                     Euro area    XC   EMU 2002       
## 4639                                     Euro area    XC   EMU 1960       
## 4640                                     Euro area    XC   EMU 1961       
## 4641                                     Euro area    XC   EMU 2001       
## 4642                                     Euro area    XC   EMU 1977       
## 4643                                     Euro area    XC   EMU 1992       
## 4644                                     Euro area    XC   EMU 1974       
## 4645                                     Euro area    XC   EMU 1976       
## 4646                                     Euro area    XC   EMU 1990       
## 4647                                     Euro area    XC   EMU 1973       
## 4648                                     Euro area    XC   EMU 1975       
## 4649                                     Euro area    XC   EMU 1972       
## 4650                                     Euro area    XC   EMU 1991       
## 4651                         Europe & Central Asia    Z7   ECS 1966       
## 4652                         Europe & Central Asia    Z7   ECS 1961       
## 4653                         Europe & Central Asia    Z7   ECS 1962       
## 4654                         Europe & Central Asia    Z7   ECS 1964       
## 4655                         Europe & Central Asia    Z7   ECS 1965       
## 4656                         Europe & Central Asia    Z7   ECS 1992       
## 4657                         Europe & Central Asia    Z7   ECS 1993       
## 4658                         Europe & Central Asia    Z7   ECS 1963       
## 4659                         Europe & Central Asia    Z7   ECS 1991       
## 4660                         Europe & Central Asia    Z7   ECS 1960       
## 4661                         Europe & Central Asia    Z7   ECS 1986       
## 4662                         Europe & Central Asia    Z7   ECS 1994       
## 4663                         Europe & Central Asia    Z7   ECS 1990       
## 4664                         Europe & Central Asia    Z7   ECS 2003       
## 4665                         Europe & Central Asia    Z7   ECS 2004       
## 4666                         Europe & Central Asia    Z7   ECS 1989       
## 4667                         Europe & Central Asia    Z7   ECS 2006       
## 4668                         Europe & Central Asia    Z7   ECS 1967       
## 4669                         Europe & Central Asia    Z7   ECS 1968       
## 4670                         Europe & Central Asia    Z7   ECS 2005       
## 4671                         Europe & Central Asia    Z7   ECS 1983       
## 4672                         Europe & Central Asia    Z7   ECS 1984       
## 4673                         Europe & Central Asia    Z7   ECS 1985       
## 4674                         Europe & Central Asia    Z7   ECS 2000       
## 4675                         Europe & Central Asia    Z7   ECS 2001       
## 4676                         Europe & Central Asia    Z7   ECS 2002       
## 4677                         Europe & Central Asia    Z7   ECS 1975       
## 4678                         Europe & Central Asia    Z7   ECS 1976       
## 4679                         Europe & Central Asia    Z7   ECS 1977       
## 4680                         Europe & Central Asia    Z7   ECS 1978       
## 4681                         Europe & Central Asia    Z7   ECS 1979       
## 4682                         Europe & Central Asia    Z7   ECS 1980       
## 4683                         Europe & Central Asia    Z7   ECS 1969       
## 4684                         Europe & Central Asia    Z7   ECS 1982       
## 4685                         Europe & Central Asia    Z7   ECS 1997       
## 4686                         Europe & Central Asia    Z7   ECS 1998       
## 4687                         Europe & Central Asia    Z7   ECS 1999       
## 4688                         Europe & Central Asia    Z7   ECS 1972       
## 4689                         Europe & Central Asia    Z7   ECS 1973       
## 4690                         Europe & Central Asia    Z7   ECS 1987       
## 4691                         Europe & Central Asia    Z7   ECS 1988       
## 4692                         Europe & Central Asia    Z7   ECS 2016       
## 4693                         Europe & Central Asia    Z7   ECS 2017       
## 4694                         Europe & Central Asia    Z7   ECS 2018       
## 4695                         Europe & Central Asia    Z7   ECS 2019       
## 4696                         Europe & Central Asia    Z7   ECS 1981       
## 4697                         Europe & Central Asia    Z7   ECS 1996       
## 4698                         Europe & Central Asia    Z7   ECS 2009       
## 4699                         Europe & Central Asia    Z7   ECS 1970       
## 4700                         Europe & Central Asia    Z7   ECS 1971       
## 4701                         Europe & Central Asia    Z7   ECS 2011       
## 4702                         Europe & Central Asia    Z7   ECS 2012       
## 4703                         Europe & Central Asia    Z7   ECS 1974       
## 4704                         Europe & Central Asia    Z7   ECS 2015       
## 4705                         Europe & Central Asia    Z7   ECS 2007       
## 4706                         Europe & Central Asia    Z7   ECS 2008       
## 4707                         Europe & Central Asia    Z7   ECS 2021       
## 4708                         Europe & Central Asia    Z7   ECS 2013       
## 4709                         Europe & Central Asia    Z7   ECS 2010       
## 4710                         Europe & Central Asia    Z7   ECS 2020       
## 4711                         Europe & Central Asia    Z7   ECS 1995       
## 4712                         Europe & Central Asia    Z7   ECS 2014       
## 4713 Europe & Central Asia (excluding high income)    7E   ECA 2012       
## 4714 Europe & Central Asia (excluding high income)    7E   ECA 2011       
## 4715 Europe & Central Asia (excluding high income)    7E   ECA 2003       
## 4716 Europe & Central Asia (excluding high income)    7E   ECA 2013       
## 4717 Europe & Central Asia (excluding high income)    7E   ECA 2010       
## 4718 Europe & Central Asia (excluding high income)    7E   ECA 2006       
## 4719 Europe & Central Asia (excluding high income)    7E   ECA 2007       
## 4720 Europe & Central Asia (excluding high income)    7E   ECA 2004       
## 4721 Europe & Central Asia (excluding high income)    7E   ECA 1984       
## 4722 Europe & Central Asia (excluding high income)    7E   ECA 1981       
## 4723 Europe & Central Asia (excluding high income)    7E   ECA 1982       
## 4724 Europe & Central Asia (excluding high income)    7E   ECA 1983       
## 4725 Europe & Central Asia (excluding high income)    7E   ECA 2002       
## 4726 Europe & Central Asia (excluding high income)    7E   ECA 2005       
## 4727 Europe & Central Asia (excluding high income)    7E   ECA 2019       
## 4728 Europe & Central Asia (excluding high income)    7E   ECA 2001       
## 4729 Europe & Central Asia (excluding high income)    7E   ECA 2021       
## 4730 Europe & Central Asia (excluding high income)    7E   ECA 1980       
## 4731 Europe & Central Asia (excluding high income)    7E   ECA 2009       
## 4732 Europe & Central Asia (excluding high income)    7E   ECA 2020       
## 4733 Europe & Central Asia (excluding high income)    7E   ECA 1969       
## 4734 Europe & Central Asia (excluding high income)    7E   ECA 1970       
## 4735 Europe & Central Asia (excluding high income)    7E   ECA 1971       
## 4736 Europe & Central Asia (excluding high income)    7E   ECA 1968       
## 4737 Europe & Central Asia (excluding high income)    7E   ECA 2015       
## 4738 Europe & Central Asia (excluding high income)    7E   ECA 2016       
## 4739 Europe & Central Asia (excluding high income)    7E   ECA 1962       
## 4740 Europe & Central Asia (excluding high income)    7E   ECA 1963       
## 4741 Europe & Central Asia (excluding high income)    7E   ECA 1964       
## 4742 Europe & Central Asia (excluding high income)    7E   ECA 1965       
## 4743 Europe & Central Asia (excluding high income)    7E   ECA 2008       
## 4744 Europe & Central Asia (excluding high income)    7E   ECA 1994       
## 4745 Europe & Central Asia (excluding high income)    7E   ECA 1995       
## 4746 Europe & Central Asia (excluding high income)    7E   ECA 1996       
## 4747 Europe & Central Asia (excluding high income)    7E   ECA 1997       
## 4748 Europe & Central Asia (excluding high income)    7E   ECA 1998       
## 4749 Europe & Central Asia (excluding high income)    7E   ECA 1985       
## 4750 Europe & Central Asia (excluding high income)    7E   ECA 1986       
## 4751 Europe & Central Asia (excluding high income)    7E   ECA 1987       
## 4752 Europe & Central Asia (excluding high income)    7E   ECA 2017       
## 4753 Europe & Central Asia (excluding high income)    7E   ECA 2018       
## 4754 Europe & Central Asia (excluding high income)    7E   ECA 1977       
## 4755 Europe & Central Asia (excluding high income)    7E   ECA 1978       
## 4756 Europe & Central Asia (excluding high income)    7E   ECA 1979       
## 4757 Europe & Central Asia (excluding high income)    7E   ECA 1966       
## 4758 Europe & Central Asia (excluding high income)    7E   ECA 1967       
## 4759 Europe & Central Asia (excluding high income)    7E   ECA 2000       
## 4760 Europe & Central Asia (excluding high income)    7E   ECA 1960       
## 4761 Europe & Central Asia (excluding high income)    7E   ECA 1961       
## 4762 Europe & Central Asia (excluding high income)    7E   ECA 1999       
## 4763 Europe & Central Asia (excluding high income)    7E   ECA 1975       
## 4764 Europe & Central Asia (excluding high income)    7E   ECA 1976       
## 4765 Europe & Central Asia (excluding high income)    7E   ECA 1991       
## 4766 Europe & Central Asia (excluding high income)    7E   ECA 1974       
## 4767 Europe & Central Asia (excluding high income)    7E   ECA 1993       
## 4768 Europe & Central Asia (excluding high income)    7E   ECA 2014       
## 4769 Europe & Central Asia (excluding high income)    7E   ECA 1972       
## 4770 Europe & Central Asia (excluding high income)    7E   ECA 1992       
## 4771 Europe & Central Asia (excluding high income)    7E   ECA 1988       
## 4772 Europe & Central Asia (excluding high income)    7E   ECA 1989       
## 4773 Europe & Central Asia (excluding high income)    7E   ECA 1990       
## 4774 Europe & Central Asia (excluding high income)    7E   ECA 1973       
## 4775  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1962       
## 4776  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1963       
## 4777  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1964       
## 4778  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1987       
## 4779  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1988       
## 4780  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1985       
## 4781  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1986       
## 4782  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1982       
## 4783  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1960       
## 4784  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1961       
## 4785  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1996       
## 4786  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1997       
## 4787  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1998       
## 4788  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1999       
## 4789  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1965       
## 4790  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1966       
## 4791  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1967       
## 4792  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1979       
## 4793  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1980       
## 4794  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1981       
## 4795  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1993       
## 4796  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1994       
## 4797  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1995       
## 4798  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2006       
## 4799  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1972       
## 4800  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1973       
## 4801  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1974       
## 4802  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1975       
## 4803  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1976       
## 4804  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1977       
## 4805  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1978       
## 4806  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2014       
## 4807  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2015       
## 4808  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2016       
## 4809  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2017       
## 4810  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2018       
## 4811  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1983       
## 4812  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1984       
## 4813  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2021       
## 4814  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2008       
## 4815  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2009       
## 4816  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2010       
## 4817  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2011       
## 4818  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1989       
## 4819  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1990       
## 4820  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1991       
## 4821  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1992       
## 4822  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1970       
## 4823  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1971       
## 4824  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2005       
## 4825  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2019       
## 4826  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2007       
## 4827  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2012       
## 4828  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2000       
## 4829  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1968       
## 4830  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 1969       
## 4831  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2002       
## 4832  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2003       
## 4833  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2004       
## 4834  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2020       
## 4835  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2013       
## 4836  Europe & Central Asia (IDA & IBRD countries)    T7   TEC 2001       
## 4837                                European Union    EU   EUU 2012       
## 4838                                European Union    EU   EUU 2010       
## 4839                                European Union    EU   EUU 2020       
## 4840                                European Union    EU   EUU 1977       
## 4841                                European Union    EU   EUU 2011       
## 4842                                European Union    EU   EUU 1979       
## 4843                                European Union    EU   EUU 2009       
## 4844                                European Union    EU   EUU 1981       
## 4845                                European Union    EU   EUU 1978       
## 4846                                European Union    EU   EUU 2001       
## 4847                                European Union    EU   EUU 1980       
## 4848                                European Union    EU   EUU 2017       
## 4849                                European Union    EU   EUU 2018       
## 4850                                European Union    EU   EUU 2019       
## 4851                                European Union    EU   EUU 1990       
## 4852                                European Union    EU   EUU 2021       
## 4853                                European Union    EU   EUU 2008       
## 4854                                European Union    EU   EUU 1960       
## 4855                                European Union    EU   EUU 1961       
## 4856                                European Union    EU   EUU 1962       
## 4857                                European Union    EU   EUU 1963       
## 4858                                European Union    EU   EUU 2013       
## 4859                                European Union    EU   EUU 2014       
## 4860                                European Union    EU   EUU 2002       
## 4861                                European Union    EU   EUU 2003       
## 4862                                European Union    EU   EUU 2004       
## 4863                                European Union    EU   EUU 2005       
## 4864                                European Union    EU   EUU 1974       
## 4865                                European Union    EU   EUU 1975       
## 4866                                European Union    EU   EUU 1976       
## 4867                                European Union    EU   EUU 1992       
## 4868                                European Union    EU   EUU 1993       
## 4869                                European Union    EU   EUU 1994       
## 4870                                European Union    EU   EUU 1995       
## 4871                                European Union    EU   EUU 1996       
## 4872                                European Union    EU   EUU 1982       
## 4873                                European Union    EU   EUU 2015       
## 4874                                European Union    EU   EUU 2016       
## 4875                                European Union    EU   EUU 1972       
## 4876                                European Union    EU   EUU 1973       
## 4877                                European Union    EU   EUU 1987       
## 4878                                European Union    EU   EUU 1988       
## 4879                                European Union    EU   EUU 1991       
## 4880                                European Union    EU   EUU 1989       
## 4881                                European Union    EU   EUU 1997       
## 4882                                European Union    EU   EUU 1998       
## 4883                                European Union    EU   EUU 1999       
## 4884                                European Union    EU   EUU 2000       
## 4885                                European Union    EU   EUU 1968       
## 4886                                European Union    EU   EUU 1969       
## 4887                                European Union    EU   EUU 2006       
## 4888                                European Union    EU   EUU 2007       
## 4889                                European Union    EU   EUU 1967       
## 4890                                European Union    EU   EUU 1964       
## 4891                                European Union    EU   EUU 1965       
## 4892                                European Union    EU   EUU 1966       
## 4893                                European Union    EU   EUU 1971       
## 4894                                European Union    EU   EUU 1985       
## 4895                                European Union    EU   EUU 1986       
## 4896                                European Union    EU   EUU 1970       
## 4897                                European Union    EU   EUU 1983       
## 4898                                European Union    EU   EUU 1984       
## 4899                                 Faroe Islands    FO   FRO 1963       
## 4900                                 Faroe Islands    FO   FRO 1964       
## 4901                                 Faroe Islands    FO   FRO 1961       
## 4902                                 Faroe Islands    FO   FRO 1962       
## 4903                                 Faroe Islands    FO   FRO 1983       
## 4904                                 Faroe Islands    FO   FRO 1984       
## 4905                                 Faroe Islands    FO   FRO 1960       
## 4906                                 Faroe Islands    FO   FRO 1982       
## 4907                                 Faroe Islands    FO   FRO 1994       
## 4908                                 Faroe Islands    FO   FRO 1995       
## 4909                                 Faroe Islands    FO   FRO 1985       
## 4910                                 Faroe Islands    FO   FRO 1981       
## 4911                                 Faroe Islands    FO   FRO 1998       
## 4912                                 Faroe Islands    FO   FRO 1965       
## 4913                                 Faroe Islands    FO   FRO 1996       
## 4914                                 Faroe Islands    FO   FRO 1997       
## 4915                                 Faroe Islands    FO   FRO 1978       
## 4916                                 Faroe Islands    FO   FRO 1979       
## 4917                                 Faroe Islands    FO   FRO 1967       
## 4918                                 Faroe Islands    FO   FRO 1968       
## 4919                                 Faroe Islands    FO   FRO 1993       
## 4920                                 Faroe Islands    FO   FRO 1969       
## 4921                                 Faroe Islands    FO   FRO 1970       
## 4922                                 Faroe Islands    FO   FRO 1971       
## 4923                                 Faroe Islands    FO   FRO 1972       
## 4924                                 Faroe Islands    FO   FRO 1973       
## 4925                                 Faroe Islands    FO   FRO 1974       
## 4926                                 Faroe Islands    FO   FRO 1975       
## 4927                                 Faroe Islands    FO   FRO 1976       
## 4928                                 Faroe Islands    FO   FRO 1977       
## 4929                                 Faroe Islands    FO   FRO 2015       
## 4930                                 Faroe Islands    FO   FRO 2016       
## 4931                                 Faroe Islands    FO   FRO 2017       
## 4932                                 Faroe Islands    FO   FRO 2018       
## 4933                                 Faroe Islands    FO   FRO 1980       
## 4934                                 Faroe Islands    FO   FRO 2020       
## 4935                                 Faroe Islands    FO   FRO 2021       
## 4936                                 Faroe Islands    FO   FRO 2008       
## 4937                                 Faroe Islands    FO   FRO 2009       
## 4938                                 Faroe Islands    FO   FRO 2010       
## 4939                                 Faroe Islands    FO   FRO 1986       
## 4940                                 Faroe Islands    FO   FRO 1987       
## 4941                                 Faroe Islands    FO   FRO 1988       
## 4942                                 Faroe Islands    FO   FRO 1989       
## 4943                                 Faroe Islands    FO   FRO 1990       
## 4944                                 Faroe Islands    FO   FRO 1991       
## 4945                                 Faroe Islands    FO   FRO 1992       
## 4946                                 Faroe Islands    FO   FRO 2005       
## 4947                                 Faroe Islands    FO   FRO 2006       
## 4948                                 Faroe Islands    FO   FRO 2007       
## 4949                                 Faroe Islands    FO   FRO 1999       
## 4950                                 Faroe Islands    FO   FRO 2000       
## 4951                                 Faroe Islands    FO   FRO 2001       
## 4952                                 Faroe Islands    FO   FRO 2011       
## 4953                                 Faroe Islands    FO   FRO 1966       
## 4954                                 Faroe Islands    FO   FRO 2004       
## 4955                                 Faroe Islands    FO   FRO 2013       
## 4956                                 Faroe Islands    FO   FRO 2002       
## 4957                                 Faroe Islands    FO   FRO 2012       
## 4958                                 Faroe Islands    FO   FRO 2003       
## 4959                                 Faroe Islands    FO   FRO 2019       
## 4960                                 Faroe Islands    FO   FRO 2014       
## 4961                                          Fiji    FJ   FJI 2006       
## 4962                                          Fiji    FJ   FJI 2018       
## 4963                                          Fiji    FJ   FJI 2007       
## 4964                                          Fiji    FJ   FJI 2008       
## 4965                                          Fiji    FJ   FJI 1980       
## 4966                                          Fiji    FJ   FJI 2019       
## 4967                                          Fiji    FJ   FJI 2016       
## 4968                                          Fiji    FJ   FJI 2021       
## 4969                                          Fiji    FJ   FJI 1999       
## 4970                                          Fiji    FJ   FJI 2000       
## 4971                                          Fiji    FJ   FJI 2020       
## 4972                                          Fiji    FJ   FJI 2002       
## 4973                                          Fiji    FJ   FJI 2017       
## 4974                                          Fiji    FJ   FJI 2004       
## 4975                                          Fiji    FJ   FJI 2005       
## 4976                                          Fiji    FJ   FJI 1960       
## 4977                                          Fiji    FJ   FJI 1961       
## 4978                                          Fiji    FJ   FJI 1962       
## 4979                                          Fiji    FJ   FJI 2009       
## 4980                                          Fiji    FJ   FJI 2010       
## 4981                                          Fiji    FJ   FJI 2011       
## 4982                                          Fiji    FJ   FJI 2012       
## 4983                                          Fiji    FJ   FJI 2013       
## 4984                                          Fiji    FJ   FJI 2001       
## 4985                                          Fiji    FJ   FJI 2015       
## 4986                                          Fiji    FJ   FJI 1974       
## 4987                                          Fiji    FJ   FJI 1975       
## 4988                                          Fiji    FJ   FJI 1976       
## 4989                                          Fiji    FJ   FJI 1977       
## 4990                                          Fiji    FJ   FJI 1978       
## 4991                                          Fiji    FJ   FJI 1979       
## 4992                                          Fiji    FJ   FJI 1994       
## 4993                                          Fiji    FJ   FJI 1981       
## 4994                                          Fiji    FJ   FJI 1982       
## 4995                                          Fiji    FJ   FJI 1983       
## 4996                                          Fiji    FJ   FJI 1984       
## 4997                                          Fiji    FJ   FJI 2014       
## 4998                                          Fiji    FJ   FJI 1986       
## 4999                                          Fiji    FJ   FJI 1987       
## 5000                                          Fiji    FJ   FJI 1989       
## 5001                                          Fiji    FJ   FJI 1990       
## 5002                                          Fiji    FJ   FJI 1991       
## 5003                                          Fiji    FJ   FJI 1992       
## 5004                                          Fiji    FJ   FJI 1993       
## 5005                                          Fiji    FJ   FJI 1998       
## 5006                                          Fiji    FJ   FJI 1995       
## 5007                                          Fiji    FJ   FJI 1996       
## 5008                                          Fiji    FJ   FJI 1997       
## 5009                                          Fiji    FJ   FJI 2003       
## 5010                                          Fiji    FJ   FJI 1970       
## 5011                                          Fiji    FJ   FJI 1971       
## 5012                                          Fiji    FJ   FJI 1972       
## 5013                                          Fiji    FJ   FJI 1968       
## 5014                                          Fiji    FJ   FJI 1988       
## 5015                                          Fiji    FJ   FJI 1966       
## 5016                                          Fiji    FJ   FJI 1967       
## 5017                                          Fiji    FJ   FJI 1969       
## 5018                                          Fiji    FJ   FJI 1965       
## 5019                                          Fiji    FJ   FJI 1985       
## 5020                                          Fiji    FJ   FJI 1973       
## 5021                                          Fiji    FJ   FJI 1964       
## 5022                                          Fiji    FJ   FJI 1963       
## 5023                                       Finland    FI   FIN 1960       
## 5024                                       Finland    FI   FIN 1985       
## 5025                                       Finland    FI   FIN 1984       
## 5026                                       Finland    FI   FIN 1979       
## 5027                                       Finland    FI   FIN 1983       
## 5028                                       Finland    FI   FIN 1995       
## 5029                                       Finland    FI   FIN 1996       
## 5030                                       Finland    FI   FIN 1986       
## 5031                                       Finland    FI   FIN 1982       
## 5032                                       Finland    FI   FIN 1999       
## 5033                                       Finland    FI   FIN 1961       
## 5034                                       Finland    FI   FIN 1997       
## 5035                                       Finland    FI   FIN 1998       
## 5036                                       Finland    FI   FIN 1977       
## 5037                                       Finland    FI   FIN 1978       
## 5038                                       Finland    FI   FIN 1966       
## 5039                                       Finland    FI   FIN 1967       
## 5040                                       Finland    FI   FIN 1994       
## 5041                                       Finland    FI   FIN 1968       
## 5042                                       Finland    FI   FIN 1969       
## 5043                                       Finland    FI   FIN 1970       
## 5044                                       Finland    FI   FIN 1971       
## 5045                                       Finland    FI   FIN 1972       
## 5046                                       Finland    FI   FIN 1973       
## 5047                                       Finland    FI   FIN 1962       
## 5048                                       Finland    FI   FIN 1963       
## 5049                                       Finland    FI   FIN 1964       
## 5050                                       Finland    FI   FIN 2016       
## 5051                                       Finland    FI   FIN 2017       
## 5052                                       Finland    FI   FIN 2018       
## 5053                                       Finland    FI   FIN 2019       
## 5054                                       Finland    FI   FIN 1980       
## 5055                                       Finland    FI   FIN 1981       
## 5056                                       Finland    FI   FIN 2008       
## 5057                                       Finland    FI   FIN 2009       
## 5058                                       Finland    FI   FIN 2010       
## 5059                                       Finland    FI   FIN 2011       
## 5060                                       Finland    FI   FIN 1974       
## 5061                                       Finland    FI   FIN 1975       
## 5062                                       Finland    FI   FIN 1976       
## 5063                                       Finland    FI   FIN 1990       
## 5064                                       Finland    FI   FIN 1991       
## 5065                                       Finland    FI   FIN 1992       
## 5066                                       Finland    FI   FIN 1993       
## 5067                                       Finland    FI   FIN 2006       
## 5068                                       Finland    FI   FIN 2007       
## 5069                                       Finland    FI   FIN 2021       
## 5070                                       Finland    FI   FIN 2000       
## 5071                                       Finland    FI   FIN 2001       
## 5072                                       Finland    FI   FIN 2002       
## 5073                                       Finland    FI   FIN 2012       
## 5074                                       Finland    FI   FIN 1965       
## 5075                                       Finland    FI   FIN 2005       
## 5076                                       Finland    FI   FIN 2014       
## 5077                                       Finland    FI   FIN 2003       
## 5078                                       Finland    FI   FIN 1989       
## 5079                                       Finland    FI   FIN 2013       
## 5080                                       Finland    FI   FIN 2004       
## 5081                                       Finland    FI   FIN 2020       
## 5082                                       Finland    FI   FIN 1987       
## 5083                                       Finland    FI   FIN 2015       
## 5084                                       Finland    FI   FIN 1988       
## 5085      Fragile and conflict affected situations    F1   FCS 2003       
## 5086      Fragile and conflict affected situations    F1   FCS 2004       
## 5087      Fragile and conflict affected situations    F1   FCS 2002       
## 5088      Fragile and conflict affected situations    F1   FCS 2016       
## 5089      Fragile and conflict affected situations    F1   FCS 2005       
## 5090      Fragile and conflict affected situations    F1   FCS 2019       
## 5091      Fragile and conflict affected situations    F1   FCS 1997       
## 5092      Fragile and conflict affected situations    F1   FCS 2013       
## 5093      Fragile and conflict affected situations    F1   FCS 2018       
## 5094      Fragile and conflict affected situations    F1   FCS 1996       
## 5095      Fragile and conflict affected situations    F1   FCS 2015       
## 5096      Fragile and conflict affected situations    F1   FCS 2017       
## 5097      Fragile and conflict affected situations    F1   FCS 1999       
## 5098      Fragile and conflict affected situations    F1   FCS 2014       
## 5099      Fragile and conflict affected situations    F1   FCS 1963       
## 5100      Fragile and conflict affected situations    F1   FCS 1960       
## 5101      Fragile and conflict affected situations    F1   FCS 1961       
## 5102      Fragile and conflict affected situations    F1   FCS 1962       
## 5103      Fragile and conflict affected situations    F1   FCS 2009       
## 5104      Fragile and conflict affected situations    F1   FCS 2010       
## 5105      Fragile and conflict affected situations    F1   FCS 1998       
## 5106      Fragile and conflict affected situations    F1   FCS 2012       
## 5107      Fragile and conflict affected situations    F1   FCS 1971       
## 5108      Fragile and conflict affected situations    F1   FCS 1972       
## 5109      Fragile and conflict affected situations    F1   FCS 1973       
## 5110      Fragile and conflict affected situations    F1   FCS 1974       
## 5111      Fragile and conflict affected situations    F1   FCS 1975       
## 5112      Fragile and conflict affected situations    F1   FCS 1976       
## 5113      Fragile and conflict affected situations    F1   FCS 1977       
## 5114      Fragile and conflict affected situations    F1   FCS 2020       
## 5115      Fragile and conflict affected situations    F1   FCS 2021       
## 5116      Fragile and conflict affected situations    F1   FCS 1980       
## 5117      Fragile and conflict affected situations    F1   FCS 1981       
## 5118      Fragile and conflict affected situations    F1   FCS 2011       
## 5119      Fragile and conflict affected situations    F1   FCS 1983       
## 5120      Fragile and conflict affected situations    F1   FCS 1984       
## 5121      Fragile and conflict affected situations    F1   FCS 1986       
## 5122      Fragile and conflict affected situations    F1   FCS 1987       
## 5123      Fragile and conflict affected situations    F1   FCS 1988       
## 5124      Fragile and conflict affected situations    F1   FCS 1989       
## 5125      Fragile and conflict affected situations    F1   FCS 1990       
## 5126      Fragile and conflict affected situations    F1   FCS 1991       
## 5127      Fragile and conflict affected situations    F1   FCS 1992       
## 5128      Fragile and conflict affected situations    F1   FCS 1993       
## 5129      Fragile and conflict affected situations    F1   FCS 1994       
## 5130      Fragile and conflict affected situations    F1   FCS 1995       
## 5131      Fragile and conflict affected situations    F1   FCS 1967       
## 5132      Fragile and conflict affected situations    F1   FCS 1968       
## 5133      Fragile and conflict affected situations    F1   FCS 1969       
## 5134      Fragile and conflict affected situations    F1   FCS 2000       
## 5135      Fragile and conflict affected situations    F1   FCS 2001       
## 5136      Fragile and conflict affected situations    F1   FCS 2006       
## 5137      Fragile and conflict affected situations    F1   FCS 2007       
## 5138      Fragile and conflict affected situations    F1   FCS 2008       
## 5139      Fragile and conflict affected situations    F1   FCS 1966       
## 5140      Fragile and conflict affected situations    F1   FCS 1965       
## 5141      Fragile and conflict affected situations    F1   FCS 1982       
## 5142      Fragile and conflict affected situations    F1   FCS 1978       
## 5143      Fragile and conflict affected situations    F1   FCS 1970       
## 5144      Fragile and conflict affected situations    F1   FCS 1985       
## 5145      Fragile and conflict affected situations    F1   FCS 1979       
## 5146      Fragile and conflict affected situations    F1   FCS 1964       
## 5147                                        France    FR   FRA 1980       
## 5148                                        France    FR   FRA 1981       
## 5149                                        France    FR   FRA 1989       
## 5150                                        France    FR   FRA 1976       
## 5151                                        France    FR   FRA 1982       
## 5152                                        France    FR   FRA 1979       
## 5153                                        France    FR   FRA 1993       
## 5154                                        France    FR   FRA 1990       
## 5155                                        France    FR   FRA 1991       
## 5156                                        France    FR   FRA 1992       
## 5157                                        France    FR   FRA 1974       
## 5158                                        France    FR   FRA 1975       
## 5159                                        France    FR   FRA 1964       
## 5160                                        France    FR   FRA 1965       
## 5161                                        France    FR   FRA 1988       
## 5162                                        France    FR   FRA 2000       
## 5163                                        France    FR   FRA 1966       
## 5164                                        France    FR   FRA 1967       
## 5165                                        France    FR   FRA 1968       
## 5166                                        France    FR   FRA 1969       
## 5167                                        France    FR   FRA 1970       
## 5168                                        France    FR   FRA 1971       
## 5169                                        France    FR   FRA 1960       
## 5170                                        France    FR   FRA 1961       
## 5171                                        France    FR   FRA 2009       
## 5172                                        France    FR   FRA 2010       
## 5173                                        France    FR   FRA 2011       
## 5174                                        France    FR   FRA 2012       
## 5175                                        France    FR   FRA 1977       
## 5176                                        France    FR   FRA 1978       
## 5177                                        France    FR   FRA 2015       
## 5178                                        France    FR   FRA 2016       
## 5179                                        France    FR   FRA 2017       
## 5180                                        France    FR   FRA 2018       
## 5181                                        France    FR   FRA 2019       
## 5182                                        France    FR   FRA 1972       
## 5183                                        France    FR   FRA 1973       
## 5184                                        France    FR   FRA 1984       
## 5185                                        France    FR   FRA 1985       
## 5186                                        France    FR   FRA 1986       
## 5187                                        France    FR   FRA 1987       
## 5188                                        France    FR   FRA 1999       
## 5189                                        France    FR   FRA 2013       
## 5190                                        France    FR   FRA 2001       
## 5191                                        France    FR   FRA 2002       
## 5192                                        France    FR   FRA 2003       
## 5193                                        France    FR   FRA 2004       
## 5194                                        France    FR   FRA 2005       
## 5195                                        France    FR   FRA 2006       
## 5196                                        France    FR   FRA 1994       
## 5197                                        France    FR   FRA 1995       
## 5198                                        France    FR   FRA 1996       
## 5199                                        France    FR   FRA 1962       
## 5200                                        France    FR   FRA 1963       
## 5201                                        France    FR   FRA 1998       
## 5202                                        France    FR   FRA 2008       
## 5203                                        France    FR   FRA 2014       
## 5204                                        France    FR   FRA 2020       
## 5205                                        France    FR   FRA 2007       
## 5206                                        France    FR   FRA 2021       
## 5207                                        France    FR   FRA 1997       
## 5208                                        France    FR   FRA 1983       
## 5209                              French Polynesia    PF   PYF 2012       
## 5210                              French Polynesia    PF   PYF 2014       
## 5211                              French Polynesia    PF   PYF 2016       
## 5212                              French Polynesia    PF   PYF 2018       
## 5213                              French Polynesia    PF   PYF 2015       
## 5214                              French Polynesia    PF   PYF 2011       
## 5215                              French Polynesia    PF   PYF 2017       
## 5216                              French Polynesia    PF   PYF 1995       
## 5217                              French Polynesia    PF   PYF 2000       
## 5218                              French Polynesia    PF   PYF 2001       
## 5219                              French Polynesia    PF   PYF 1983       
## 5220                              French Polynesia    PF   PYF 2013       
## 5221                              French Polynesia    PF   PYF 2004       
## 5222                              French Polynesia    PF   PYF 2005       
## 5223                              French Polynesia    PF   PYF 2002       
## 5224                              French Polynesia    PF   PYF 2003       
## 5225                              French Polynesia    PF   PYF 2008       
## 5226                              French Polynesia    PF   PYF 1996       
## 5227                              French Polynesia    PF   PYF 1997       
## 5228                              French Polynesia    PF   PYF 1966       
## 5229                              French Polynesia    PF   PYF 1967       
## 5230                              French Polynesia    PF   PYF 1968       
## 5231                              French Polynesia    PF   PYF 1969       
## 5232                              French Polynesia    PF   PYF 1970       
## 5233                              French Polynesia    PF   PYF 1971       
## 5234                              French Polynesia    PF   PYF 1972       
## 5235                              French Polynesia    PF   PYF 1973       
## 5236                              French Polynesia    PF   PYF 2019       
## 5237                              French Polynesia    PF   PYF 1994       
## 5238                              French Polynesia    PF   PYF 2021       
## 5239                              French Polynesia    PF   PYF 2009       
## 5240                              French Polynesia    PF   PYF 2010       
## 5241                              French Polynesia    PF   PYF 1979       
## 5242                              French Polynesia    PF   PYF 1980       
## 5243                              French Polynesia    PF   PYF 1984       
## 5244                              French Polynesia    PF   PYF 1985       
## 5245                              French Polynesia    PF   PYF 1986       
## 5246                              French Polynesia    PF   PYF 1987       
## 5247                              French Polynesia    PF   PYF 1988       
## 5248                              French Polynesia    PF   PYF 1989       
## 5249                              French Polynesia    PF   PYF 1990       
## 5250                              French Polynesia    PF   PYF 2020       
## 5251                              French Polynesia    PF   PYF 1992       
## 5252                              French Polynesia    PF   PYF 1993       
## 5253                              French Polynesia    PF   PYF 1962       
## 5254                              French Polynesia    PF   PYF 1963       
## 5255                              French Polynesia    PF   PYF 1998       
## 5256                              French Polynesia    PF   PYF 1999       
## 5257                              French Polynesia    PF   PYF 1981       
## 5258                              French Polynesia    PF   PYF 1982       
## 5259                              French Polynesia    PF   PYF 1991       
## 5260                              French Polynesia    PF   PYF 2007       
## 5261                              French Polynesia    PF   PYF 1961       
## 5262                              French Polynesia    PF   PYF 1977       
## 5263                              French Polynesia    PF   PYF 1978       
## 5264                              French Polynesia    PF   PYF 1964       
## 5265                              French Polynesia    PF   PYF 1965       
## 5266                              French Polynesia    PF   PYF 1976       
## 5267                              French Polynesia    PF   PYF 1960       
## 5268                              French Polynesia    PF   PYF 1974       
## 5269                              French Polynesia    PF   PYF 1975       
## 5270                              French Polynesia    PF   PYF 2006       
## 5271                                         Gabon    GA   GAB 1977       
## 5272                                         Gabon    GA   GAB 1978       
## 5273                                         Gabon    GA   GAB 1979       
## 5274                                         Gabon    GA   GAB 1980       
## 5275                                         Gabon    GA   GAB 1976       
## 5276                                         Gabon    GA   GAB 1989       
## 5277                                         Gabon    GA   GAB 1990       
## 5278                                         Gabon    GA   GAB 1975       
## 5279                                         Gabon    GA   GAB 1992       
## 5280                                         Gabon    GA   GAB 1973       
## 5281                                         Gabon    GA   GAB 1961       
## 5282                                         Gabon    GA   GAB 1991       
## 5283                                         Gabon    GA   GAB 1972       
## 5284                                         Gabon    GA   GAB 1988       
## 5285                                         Gabon    GA   GAB 1964       
## 5286                                         Gabon    GA   GAB 1962       
## 5287                                         Gabon    GA   GAB 1987       
## 5288                                         Gabon    GA   GAB 1967       
## 5289                                         Gabon    GA   GAB 1968       
## 5290                                         Gabon    GA   GAB 1965       
## 5291                                         Gabon    GA   GAB 1966       
## 5292                                         Gabon    GA   GAB 1971       
## 5293                                         Gabon    GA   GAB 2009       
## 5294                                         Gabon    GA   GAB 2010       
## 5295                                         Gabon    GA   GAB 2011       
## 5296                                         Gabon    GA   GAB 2012       
## 5297                                         Gabon    GA   GAB 1974       
## 5298                                         Gabon    GA   GAB 2014       
## 5299                                         Gabon    GA   GAB 2015       
## 5300                                         Gabon    GA   GAB 2016       
## 5301                                         Gabon    GA   GAB 2017       
## 5302                                         Gabon    GA   GAB 2018       
## 5303                                         Gabon    GA   GAB 1969       
## 5304                                         Gabon    GA   GAB 1970       
## 5305                                         Gabon    GA   GAB 1982       
## 5306                                         Gabon    GA   GAB 1983       
## 5307                                         Gabon    GA   GAB 1984       
## 5308                                         Gabon    GA   GAB 1985       
## 5309                                         Gabon    GA   GAB 1986       
## 5310                                         Gabon    GA   GAB 1999       
## 5311                                         Gabon    GA   GAB 1963       
## 5312                                         Gabon    GA   GAB 2001       
## 5313                                         Gabon    GA   GAB 2002       
## 5314                                         Gabon    GA   GAB 2003       
## 5315                                         Gabon    GA   GAB 2004       
## 5316                                         Gabon    GA   GAB 2005       
## 5317                                         Gabon    GA   GAB 1993       
## 5318                                         Gabon    GA   GAB 1994       
## 5319                                         Gabon    GA   GAB 1995       
## 5320                                         Gabon    GA   GAB 1996       
## 5321                                         Gabon    GA   GAB 1960       
## 5322                                         Gabon    GA   GAB 1998       
## 5323                                         Gabon    GA   GAB 2007       
## 5324                                         Gabon    GA   GAB 2013       
## 5325                                         Gabon    GA   GAB 2000       
## 5326                                         Gabon    GA   GAB 2006       
## 5327                                         Gabon    GA   GAB 1997       
## 5328                                         Gabon    GA   GAB 2008       
## 5329                                         Gabon    GA   GAB 2020       
## 5330                                         Gabon    GA   GAB 2019       
## 5331                                         Gabon    GA   GAB 1981       
## 5332                                         Gabon    GA   GAB 2021       
## 5333                                   Gambia, The    GM   GMB 2008       
## 5334                                   Gambia, The    GM   GMB 2011       
## 5335                                   Gambia, The    GM   GMB 2012       
## 5336                                   Gambia, The    GM   GMB 2013       
## 5337                                   Gambia, The    GM   GMB 2014       
## 5338                                   Gambia, The    GM   GMB 1992       
## 5339                                   Gambia, The    GM   GMB 1997       
## 5340                                   Gambia, The    GM   GMB 1994       
## 5341                                   Gambia, The    GM   GMB 2009       
## 5342                                   Gambia, The    GM   GMB 2010       
## 5343                                   Gambia, The    GM   GMB 2001       
## 5344                                   Gambia, The    GM   GMB 1998       
## 5345                                   Gambia, The    GM   GMB 1999       
## 5346                                   Gambia, The    GM   GMB 2000       
## 5347                                   Gambia, The    GM   GMB 2005       
## 5348                                   Gambia, The    GM   GMB 1993       
## 5349                                   Gambia, The    GM   GMB 2007       
## 5350                                   Gambia, The    GM   GMB 1991       
## 5351                                   Gambia, The    GM   GMB 1996       
## 5352                                   Gambia, The    GM   GMB 1968       
## 5353                                   Gambia, The    GM   GMB 1969       
## 5354                                   Gambia, The    GM   GMB 1966       
## 5355                                   Gambia, The    GM   GMB 1971       
## 5356                                   Gambia, The    GM   GMB 1972       
## 5357                                   Gambia, The    GM   GMB 2015       
## 5358                                   Gambia, The    GM   GMB 1970       
## 5359                                   Gambia, The    GM   GMB 2004       
## 5360                                   Gambia, The    GM   GMB 2018       
## 5361                                   Gambia, The    GM   GMB 2006       
## 5362                                   Gambia, The    GM   GMB 2020       
## 5363                                   Gambia, The    GM   GMB 2021       
## 5364                                   Gambia, The    GM   GMB 1967       
## 5365                                   Gambia, The    GM   GMB 1982       
## 5366                                   Gambia, The    GM   GMB 1983       
## 5367                                   Gambia, The    GM   GMB 1984       
## 5368                                   Gambia, The    GM   GMB 1985       
## 5369                                   Gambia, The    GM   GMB 1986       
## 5370                                   Gambia, The    GM   GMB 1987       
## 5371                                   Gambia, The    GM   GMB 2016       
## 5372                                   Gambia, The    GM   GMB 2017       
## 5373                                   Gambia, The    GM   GMB 1990       
## 5374                                   Gambia, The    GM   GMB 1962       
## 5375                                   Gambia, The    GM   GMB 1963       
## 5376                                   Gambia, The    GM   GMB 1964       
## 5377                                   Gambia, The    GM   GMB 1995       
## 5378                                   Gambia, The    GM   GMB 1980       
## 5379                                   Gambia, The    GM   GMB 1981       
## 5380                                   Gambia, The    GM   GMB 1988       
## 5381                                   Gambia, The    GM   GMB 1989       
## 5382                                   Gambia, The    GM   GMB 1961       
## 5383                                   Gambia, The    GM   GMB 1976       
## 5384                                   Gambia, The    GM   GMB 1977       
## 5385                                   Gambia, The    GM   GMB 2019       
## 5386                                   Gambia, The    GM   GMB 1965       
## 5387                                   Gambia, The    GM   GMB 1975       
## 5388                                   Gambia, The    GM   GMB 1960       
## 5389                                   Gambia, The    GM   GMB 1973       
## 5390                                   Gambia, The    GM   GMB 1974       
## 5391                                   Gambia, The    GM   GMB 1979       
## 5392                                   Gambia, The    GM   GMB 2003       
## 5393                                   Gambia, The    GM   GMB 2002       
## 5394                                   Gambia, The    GM   GMB 1978       
## 5395                                       Georgia    GE   GEO 1977       
## 5396                                       Georgia    GE   GEO 1978       
## 5397                                       Georgia    GE   GEO 1988       
## 5398                                       Georgia    GE   GEO 1989       
## 5399                                       Georgia    GE   GEO 1979       
## 5400                                       Georgia    GE   GEO 1976       
## 5401                                       Georgia    GE   GEO 1970       
## 5402                                       Georgia    GE   GEO 1971       
## 5403                                       Georgia    GE   GEO 1974       
## 5404                                       Georgia    GE   GEO 1975       
## 5405                                       Georgia    GE   GEO 1987       
## 5406                                       Georgia    GE   GEO 1961       
## 5407                                       Georgia    GE   GEO 1990       
## 5408                                       Georgia    GE   GEO 1991       
## 5409                                       Georgia    GE   GEO 1964       
## 5410                                       Georgia    GE   GEO 1965       
## 5411                                       Georgia    GE   GEO 1962       
## 5412                                       Georgia    GE   GEO 1986       
## 5413                                       Georgia    GE   GEO 1969       
## 5414                                       Georgia    GE   GEO 2008       
## 5415                                       Georgia    GE   GEO 2009       
## 5416                                       Georgia    GE   GEO 1963       
## 5417                                       Georgia    GE   GEO 2011       
## 5418                                       Georgia    GE   GEO 1972       
## 5419                                       Georgia    GE   GEO 1973       
## 5420                                       Georgia    GE   GEO 2014       
## 5421                                       Georgia    GE   GEO 2015       
## 5422                                       Georgia    GE   GEO 2016       
## 5423                                       Georgia    GE   GEO 2017       
## 5424                                       Georgia    GE   GEO 1966       
## 5425                                       Georgia    GE   GEO 1967       
## 5426                                       Georgia    GE   GEO 1968       
## 5427                                       Georgia    GE   GEO 1982       
## 5428                                       Georgia    GE   GEO 1983       
## 5429                                       Georgia    GE   GEO 2010       
## 5430                                       Georgia    GE   GEO 1985       
## 5431                                       Georgia    GE   GEO 1998       
## 5432                                       Georgia    GE   GEO 1960       
## 5433                                       Georgia    GE   GEO 2000       
## 5434                                       Georgia    GE   GEO 2001       
## 5435                                       Georgia    GE   GEO 2002       
## 5436                                       Georgia    GE   GEO 2003       
## 5437                                       Georgia    GE   GEO 2004       
## 5438                                       Georgia    GE   GEO 1992       
## 5439                                       Georgia    GE   GEO 1993       
## 5440                                       Georgia    GE   GEO 1994       
## 5441                                       Georgia    GE   GEO 1995       
## 5442                                       Georgia    GE   GEO 1984       
## 5443                                       Georgia    GE   GEO 1997       
## 5444                                       Georgia    GE   GEO 2006       
## 5445                                       Georgia    GE   GEO 2012       
## 5446                                       Georgia    GE   GEO 2013       
## 5447                                       Georgia    GE   GEO 2005       
## 5448                                       Georgia    GE   GEO 2021       
## 5449                                       Georgia    GE   GEO 2007       
## 5450                                       Georgia    GE   GEO 2019       
## 5451                                       Georgia    GE   GEO 2020       
## 5452                                       Georgia    GE   GEO 2018       
## 5453                                       Georgia    GE   GEO 1980       
## 5454                                       Georgia    GE   GEO 1981       
## 5455                                       Georgia    GE   GEO 1999       
## 5456                                       Georgia    GE   GEO 1996       
## 5457                                       Germany    DE   DEU 2004       
## 5458                                       Germany    DE   DEU 2010       
## 5459                                       Germany    DE   DEU 2007       
## 5460                                       Germany    DE   DEU 2008       
## 5461                                       Germany    DE   DEU 2009       
## 5462                                       Germany    DE   DEU 2005       
## 5463                                       Germany    DE   DEU 1996       
## 5464                                       Germany    DE   DEU 1993       
## 5465                                       Germany    DE   DEU 1990       
## 5466                                       Germany    DE   DEU 1995       
## 5467                                       Germany    DE   DEU 1987       
## 5468                                       Germany    DE   DEU 1997       
## 5469                                       Germany    DE   DEU 1994       
## 5470                                       Germany    DE   DEU 2003       
## 5471                                       Germany    DE   DEU 1962       
## 5472                                       Germany    DE   DEU 2006       
## 5473                                       Germany    DE   DEU 1964       
## 5474                                       Germany    DE   DEU 1965       
## 5475                                       Germany    DE   DEU 1966       
## 5476                                       Germany    DE   DEU 1967       
## 5477                                       Germany    DE   DEU 1968       
## 5478                                       Germany    DE   DEU 2011       
## 5479                                       Germany    DE   DEU 2012       
## 5480                                       Germany    DE   DEU 2013       
## 5481                                       Germany    DE   DEU 1988       
## 5482                                       Germany    DE   DEU 1989       
## 5483                                       Germany    DE   DEU 2018       
## 5484                                       Germany    DE   DEU 2019       
## 5485                                       Germany    DE   DEU 1963       
## 5486                                       Germany    DE   DEU 1978       
## 5487                                       Germany    DE   DEU 1979       
## 5488                                       Germany    DE   DEU 1980       
## 5489                                       Germany    DE   DEU 1981       
## 5490                                       Germany    DE   DEU 1982       
## 5491                                       Germany    DE   DEU 1983       
## 5492                                       Germany    DE   DEU 1984       
## 5493                                       Germany    DE   DEU 1985       
## 5494                                       Germany    DE   DEU 2014       
## 5495                                       Germany    DE   DEU 2001       
## 5496                                       Germany    DE   DEU 2002       
## 5497                                       Germany    DE   DEU 1960       
## 5498                                       Germany    DE   DEU 1991       
## 5499                                       Germany    DE   DEU 1992       
## 5500                                       Germany    DE   DEU 1977       
## 5501                                       Germany    DE   DEU 2020       
## 5502                                       Germany    DE   DEU 2021       
## 5503                                       Germany    DE   DEU 1986       
## 5504                                       Germany    DE   DEU 1972       
## 5505                                       Germany    DE   DEU 1998       
## 5506                                       Germany    DE   DEU 1999       
## 5507                                       Germany    DE   DEU 1961       
## 5508                                       Germany    DE   DEU 2017       
## 5509                                       Germany    DE   DEU 1973       
## 5510                                       Germany    DE   DEU 2015       
## 5511                                       Germany    DE   DEU 1970       
## 5512                                       Germany    DE   DEU 1971       
## 5513                                       Germany    DE   DEU 1976       
## 5514                                       Germany    DE   DEU 1969       
## 5515                                       Germany    DE   DEU 2016       
## 5516                                       Germany    DE   DEU 2000       
## 5517                                       Germany    DE   DEU 1975       
## 5518                                       Germany    DE   DEU 1974       
## 5519                                         Ghana    GH   GHA 1974       
## 5520                                         Ghana    GH   GHA 1972       
## 5521                                         Ghana    GH   GHA 1973       
## 5522                                         Ghana    GH   GHA 1975       
## 5523                                         Ghana    GH   GHA 1967       
## 5524                                         Ghana    GH   GHA 1968       
## 5525                                         Ghana    GH   GHA 1985       
## 5526                                         Ghana    GH   GHA 1971       
## 5527                                         Ghana    GH   GHA 1983       
## 5528                                         Ghana    GH   GHA 1984       
## 5529                                         Ghana    GH   GHA 1986       
## 5530                                         Ghana    GH   GHA 1961       
## 5531                                         Ghana    GH   GHA 1962       
## 5532                                         Ghana    GH   GHA 1963       
## 5533                                         Ghana    GH   GHA 1960       
## 5534                                         Ghana    GH   GHA 1966       
## 5535                                         Ghana    GH   GHA 2002       
## 5536                                         Ghana    GH   GHA 2003       
## 5537                                         Ghana    GH   GHA 1964       
## 5538                                         Ghana    GH   GHA 1981       
## 5539                                         Ghana    GH   GHA 1982       
## 5540                                         Ghana    GH   GHA 1970       
## 5541                                         Ghana    GH   GHA 2008       
## 5542                                         Ghana    GH   GHA 2009       
## 5543                                         Ghana    GH   GHA 2010       
## 5544                                         Ghana    GH   GHA 2011       
## 5545                                         Ghana    GH   GHA 2012       
## 5546                                         Ghana    GH   GHA 2013       
## 5547                                         Ghana    GH   GHA 1965       
## 5548                                         Ghana    GH   GHA 1977       
## 5549                                         Ghana    GH   GHA 1978       
## 5550                                         Ghana    GH   GHA 2004       
## 5551                                         Ghana    GH   GHA 2005       
## 5552                                         Ghana    GH   GHA 1969       
## 5553                                         Ghana    GH   GHA 2020       
## 5554                                         Ghana    GH   GHA 1994       
## 5555                                         Ghana    GH   GHA 1995       
## 5556                                         Ghana    GH   GHA 1996       
## 5557                                         Ghana    GH   GHA 1997       
## 5558                                         Ghana    GH   GHA 1998       
## 5559                                         Ghana    GH   GHA 1999       
## 5560                                         Ghana    GH   GHA 1987       
## 5561                                         Ghana    GH   GHA 1988       
## 5562                                         Ghana    GH   GHA 1989       
## 5563                                         Ghana    GH   GHA 1979       
## 5564                                         Ghana    GH   GHA 1980       
## 5565                                         Ghana    GH   GHA 2021       
## 5566                                         Ghana    GH   GHA 1993       
## 5567                                         Ghana    GH   GHA 2007       
## 5568                                         Ghana    GH   GHA 2016       
## 5569                                         Ghana    GH   GHA 2000       
## 5570                                         Ghana    GH   GHA 2001       
## 5571                                         Ghana    GH   GHA 2015       
## 5572                                         Ghana    GH   GHA 2019       
## 5573                                         Ghana    GH   GHA 2017       
## 5574                                         Ghana    GH   GHA 2018       
## 5575                                         Ghana    GH   GHA 2006       
## 5576                                         Ghana    GH   GHA 2014       
## 5577                                         Ghana    GH   GHA 1990       
## 5578                                         Ghana    GH   GHA 1976       
## 5579                                         Ghana    GH   GHA 1992       
## 5580                                         Ghana    GH   GHA 1991       
## 5581                                     Gibraltar    GI   GIB 2006       
## 5582                                     Gibraltar    GI   GIB 2010       
## 5583                                     Gibraltar    GI   GIB 2008       
## 5584                                     Gibraltar    GI   GIB 2005       
## 5585                                     Gibraltar    GI   GIB 2007       
## 5586                                     Gibraltar    GI   GIB 1993       
## 5587                                     Gibraltar    GI   GIB 2009       
## 5588                                     Gibraltar    GI   GIB 1995       
## 5589                                     Gibraltar    GI   GIB 1992       
## 5590                                     Gibraltar    GI   GIB 1997       
## 5591                                     Gibraltar    GI   GIB 1994       
## 5592                                     Gibraltar    GI   GIB 1986       
## 5593                                     Gibraltar    GI   GIB 1996       
## 5594                                     Gibraltar    GI   GIB 1961       
## 5595                                     Gibraltar    GI   GIB 1962       
## 5596                                     Gibraltar    GI   GIB 1963       
## 5597                                     Gibraltar    GI   GIB 2004       
## 5598                                     Gibraltar    GI   GIB 1965       
## 5599                                     Gibraltar    GI   GIB 1966       
## 5600                                     Gibraltar    GI   GIB 2011       
## 5601                                     Gibraltar    GI   GIB 1964       
## 5602                                     Gibraltar    GI   GIB 1987       
## 5603                                     Gibraltar    GI   GIB 1988       
## 5604                                     Gibraltar    GI   GIB 1989       
## 5605                                     Gibraltar    GI   GIB 2012       
## 5606                                     Gibraltar    GI   GIB 2016       
## 5607                                     Gibraltar    GI   GIB 1976       
## 5608                                     Gibraltar    GI   GIB 1977       
## 5609                                     Gibraltar    GI   GIB 1978       
## 5610                                     Gibraltar    GI   GIB 1979       
## 5611                                     Gibraltar    GI   GIB 1980       
## 5612                                     Gibraltar    GI   GIB 1981       
## 5613                                     Gibraltar    GI   GIB 1982       
## 5614                                     Gibraltar    GI   GIB 1983       
## 5615                                     Gibraltar    GI   GIB 2013       
## 5616                                     Gibraltar    GI   GIB 1985       
## 5617                                     Gibraltar    GI   GIB 2001       
## 5618                                     Gibraltar    GI   GIB 2002       
## 5619                                     Gibraltar    GI   GIB 1990       
## 5620                                     Gibraltar    GI   GIB 1991       
## 5621                                     Gibraltar    GI   GIB 1974       
## 5622                                     Gibraltar    GI   GIB 2017       
## 5623                                     Gibraltar    GI   GIB 2018       
## 5624                                     Gibraltar    GI   GIB 2019       
## 5625                                     Gibraltar    GI   GIB 2020       
## 5626                                     Gibraltar    GI   GIB 2021       
## 5627                                     Gibraltar    GI   GIB 1998       
## 5628                                     Gibraltar    GI   GIB 1984       
## 5629                                     Gibraltar    GI   GIB 2000       
## 5630                                     Gibraltar    GI   GIB 1970       
## 5631                                     Gibraltar    GI   GIB 1971       
## 5632                                     Gibraltar    GI   GIB 2003       
## 5633                                     Gibraltar    GI   GIB 1960       
## 5634                                     Gibraltar    GI   GIB 1973       
## 5635                                     Gibraltar    GI   GIB 1999       
## 5636                                     Gibraltar    GI   GIB 1975       
## 5637                                     Gibraltar    GI   GIB 1968       
## 5638                                     Gibraltar    GI   GIB 1969       
## 5639                                     Gibraltar    GI   GIB 1972       
## 5640                                     Gibraltar    GI   GIB 1967       
## 5641                                     Gibraltar    GI   GIB 2014       
## 5642                                     Gibraltar    GI   GIB 2015       
## 5643                                        Greece    GR   GRC 1966       
## 5644                                        Greece    GR   GRC 1965       
## 5645                                        Greece    GR   GRC 1968       
## 5646                                        Greece    GR   GRC 1969       
## 5647                                        Greece    GR   GRC 1970       
## 5648                                        Greece    GR   GRC 1978       
## 5649                                        Greece    GR   GRC 1967       
## 5650                                        Greece    GR   GRC 1980       
## 5651                                        Greece    GR   GRC 1964       
## 5652                                        Greece    GR   GRC 1982       
## 5653                                        Greece    GR   GRC 1960       
## 5654                                        Greece    GR   GRC 1961       
## 5655                                        Greece    GR   GRC 2003       
## 5656                                        Greece    GR   GRC 1963       
## 5657                                        Greece    GR   GRC 1999       
## 5658                                        Greece    GR   GRC 2000       
## 5659                                        Greece    GR   GRC 1981       
## 5660                                        Greece    GR   GRC 1977       
## 5661                                        Greece    GR   GRC 2018       
## 5662                                        Greece    GR   GRC 1979       
## 5663                                        Greece    GR   GRC 2005       
## 5664                                        Greece    GR   GRC 2006       
## 5665                                        Greece    GR   GRC 2007       
## 5666                                        Greece    GR   GRC 2008       
## 5667                                        Greece    GR   GRC 2009       
## 5668                                        Greece    GR   GRC 1962       
## 5669                                        Greece    GR   GRC 1972       
## 5670                                        Greece    GR   GRC 1973       
## 5671                                        Greece    GR   GRC 1974       
## 5672                                        Greece    GR   GRC 2001       
## 5673                                        Greece    GR   GRC 2002       
## 5674                                        Greece    GR   GRC 1989       
## 5675                                        Greece    GR   GRC 2004       
## 5676                                        Greece    GR   GRC 2020       
## 5677                                        Greece    GR   GRC 2021       
## 5678                                        Greece    GR   GRC 1993       
## 5679                                        Greece    GR   GRC 1994       
## 5680                                        Greece    GR   GRC 1995       
## 5681                                        Greece    GR   GRC 1983       
## 5682                                        Greece    GR   GRC 1984       
## 5683                                        Greece    GR   GRC 1985       
## 5684                                        Greece    GR   GRC 1986       
## 5685                                        Greece    GR   GRC 1975       
## 5686                                        Greece    GR   GRC 1976       
## 5687                                        Greece    GR   GRC 2016       
## 5688                                        Greece    GR   GRC 2019       
## 5689                                        Greece    GR   GRC 1991       
## 5690                                        Greece    GR   GRC 1992       
## 5691                                        Greece    GR   GRC 1997       
## 5692                                        Greece    GR   GRC 1998       
## 5693                                        Greece    GR   GRC 2013       
## 5694                                        Greece    GR   GRC 1996       
## 5695                                        Greece    GR   GRC 2015       
## 5696                                        Greece    GR   GRC 1988       
## 5697                                        Greece    GR   GRC 2017       
## 5698                                        Greece    GR   GRC 2014       
## 5699                                        Greece    GR   GRC 2011       
## 5700                                        Greece    GR   GRC 1971       
## 5701                                        Greece    GR   GRC 2012       
## 5702                                        Greece    GR   GRC 1990       
## 5703                                        Greece    GR   GRC 1987       
## 5704                                        Greece    GR   GRC 2010       
## 5705                                     Greenland    GL   GRL 2002       
## 5706                                     Greenland    GL   GRL 2004       
## 5707                                     Greenland    GL   GRL 1987       
## 5708                                     Greenland    GL   GRL 2003       
## 5709                                     Greenland    GL   GRL 1989       
## 5710                                     Greenland    GL   GRL 1990       
## 5711                                     Greenland    GL   GRL 1991       
## 5712                                     Greenland    GL   GRL 1988       
## 5713                                     Greenland    GL   GRL 1985       
## 5714                                     Greenland    GL   GRL 2011       
## 5715                                     Greenland    GL   GRL 1986       
## 5716                                     Greenland    GL   GRL 2000       
## 5717                                     Greenland    GL   GRL 2001       
## 5718                                     Greenland    GL   GRL 1960       
## 5719                                     Greenland    GL   GRL 1961       
## 5720                                     Greenland    GL   GRL 1962       
## 5721                                     Greenland    GL   GRL 2005       
## 5722                                     Greenland    GL   GRL 2006       
## 5723                                     Greenland    GL   GRL 1981       
## 5724                                     Greenland    GL   GRL 1982       
## 5725                                     Greenland    GL   GRL 1983       
## 5726                                     Greenland    GL   GRL 1984       
## 5727                                     Greenland    GL   GRL 1997       
## 5728                                     Greenland    GL   GRL 1999       
## 5729                                     Greenland    GL   GRL 1972       
## 5730                                     Greenland    GL   GRL 1973       
## 5731                                     Greenland    GL   GRL 1974       
## 5732                                     Greenland    GL   GRL 1975       
## 5733                                     Greenland    GL   GRL 1976       
## 5734                                     Greenland    GL   GRL 1977       
## 5735                                     Greenland    GL   GRL 1978       
## 5736                                     Greenland    GL   GRL 2007       
## 5737                                     Greenland    GL   GRL 2008       
## 5738                                     Greenland    GL   GRL 2021       
## 5739                                     Greenland    GL   GRL 1996       
## 5740                                     Greenland    GL   GRL 2009       
## 5741                                     Greenland    GL   GRL 1998       
## 5742                                     Greenland    GL   GRL 1970       
## 5743                                     Greenland    GL   GRL 2012       
## 5744                                     Greenland    GL   GRL 2013       
## 5745                                     Greenland    GL   GRL 2014       
## 5746                                     Greenland    GL   GRL 2015       
## 5747                                     Greenland    GL   GRL 2016       
## 5748                                     Greenland    GL   GRL 1992       
## 5749                                     Greenland    GL   GRL 1979       
## 5750                                     Greenland    GL   GRL 1980       
## 5751                                     Greenland    GL   GRL 1995       
## 5752                                     Greenland    GL   GRL 1967       
## 5753                                     Greenland    GL   GRL 1971       
## 5754                                     Greenland    GL   GRL 2010       
## 5755                                     Greenland    GL   GRL 1969       
## 5756                                     Greenland    GL   GRL 1966       
## 5757                                     Greenland    GL   GRL 1963       
## 5758                                     Greenland    GL   GRL 1964       
## 5759                                     Greenland    GL   GRL 1965       
## 5760                                     Greenland    GL   GRL 2019       
## 5761                                     Greenland    GL   GRL 2020       
## 5762                                     Greenland    GL   GRL 2017       
## 5763                                     Greenland    GL   GRL 1968       
## 5764                                     Greenland    GL   GRL 1993       
## 5765                                     Greenland    GL   GRL 1994       
## 5766                                     Greenland    GL   GRL 2018       
## 5767                                       Grenada    GD   GRD 1967       
## 5768                                       Grenada    GD   GRD 1971       
## 5769                                       Grenada    GD   GRD 1966       
## 5770                                       Grenada    GD   GRD 1969       
## 5771                                       Grenada    GD   GRD 1970       
## 5772                                       Grenada    GD   GRD 1963       
## 5773                                       Grenada    GD   GRD 1960       
## 5774                                       Grenada    GD   GRD 1961       
## 5775                                       Grenada    GD   GRD 1981       
## 5776                                       Grenada    GD   GRD 1982       
## 5777                                       Grenada    GD   GRD 1979       
## 5778                                       Grenada    GD   GRD 1968       
## 5779                                       Grenada    GD   GRD 2001       
## 5780                                       Grenada    GD   GRD 1962       
## 5781                                       Grenada    GD   GRD 1983       
## 5782                                       Grenada    GD   GRD 2000       
## 5783                                       Grenada    GD   GRD 1980       
## 5784                                       Grenada    GD   GRD 1964       
## 5785                                       Grenada    GD   GRD 1978       
## 5786                                       Grenada    GD   GRD 2004       
## 5787                                       Grenada    GD   GRD 2009       
## 5788                                       Grenada    GD   GRD 2010       
## 5789                                       Grenada    GD   GRD 1965       
## 5790                                       Grenada    GD   GRD 2008       
## 5791                                       Grenada    GD   GRD 1974       
## 5792                                       Grenada    GD   GRD 1975       
## 5793                                       Grenada    GD   GRD 2002       
## 5794                                       Grenada    GD   GRD 2003       
## 5795                                       Grenada    GD   GRD 2017       
## 5796                                       Grenada    GD   GRD 2005       
## 5797                                       Grenada    GD   GRD 2019       
## 5798                                       Grenada    GD   GRD 2020       
## 5799                                       Grenada    GD   GRD 2021       
## 5800                                       Grenada    GD   GRD 1995       
## 5801                                       Grenada    GD   GRD 1996       
## 5802                                       Grenada    GD   GRD 1984       
## 5803                                       Grenada    GD   GRD 1985       
## 5804                                       Grenada    GD   GRD 1986       
## 5805                                       Grenada    GD   GRD 1987       
## 5806                                       Grenada    GD   GRD 1976       
## 5807                                       Grenada    GD   GRD 1977       
## 5808                                       Grenada    GD   GRD 1990       
## 5809                                       Grenada    GD   GRD 2018       
## 5810                                       Grenada    GD   GRD 1992       
## 5811                                       Grenada    GD   GRD 1993       
## 5812                                       Grenada    GD   GRD 1994       
## 5813                                       Grenada    GD   GRD 1999       
## 5814                                       Grenada    GD   GRD 2012       
## 5815                                       Grenada    GD   GRD 1997       
## 5816                                       Grenada    GD   GRD 1998       
## 5817                                       Grenada    GD   GRD 2015       
## 5818                                       Grenada    GD   GRD 2016       
## 5819                                       Grenada    GD   GRD 2013       
## 5820                                       Grenada    GD   GRD 2014       
## 5821                                       Grenada    GD   GRD 2007       
## 5822                                       Grenada    GD   GRD 1973       
## 5823                                       Grenada    GD   GRD 1991       
## 5824                                       Grenada    GD   GRD 2006       
## 5825                                       Grenada    GD   GRD 1972       
## 5826                                       Grenada    GD   GRD 1989       
## 5827                                       Grenada    GD   GRD 2011       
## 5828                                       Grenada    GD   GRD 1988       
## 5829                                          Guam    GU   GUM 1989       
## 5830                                          Guam    GU   GUM 2003       
## 5831                                          Guam    GU   GUM 1980       
## 5832                                          Guam    GU   GUM 1990       
## 5833                                          Guam    GU   GUM 2002       
## 5834                                          Guam    GU   GUM 1988       
## 5835                                          Guam    GU   GUM 1984       
## 5836                                          Guam    GU   GUM 1985       
## 5837                                          Guam    GU   GUM 1999       
## 5838                                          Guam    GU   GUM 2000       
## 5839                                          Guam    GU   GUM 2001       
## 5840                                          Guam    GU   GUM 1960       
## 5841                                          Guam    GU   GUM 1961       
## 5842                                          Guam    GU   GUM 2004       
## 5843                                          Guam    GU   GUM 2005       
## 5844                                          Guam    GU   GUM 2006       
## 5845                                          Guam    GU   GUM 1981       
## 5846                                          Guam    GU   GUM 1982       
## 5847                                          Guam    GU   GUM 1983       
## 5848                                          Guam    GU   GUM 2011       
## 5849                                          Guam    GU   GUM 1998       
## 5850                                          Guam    GU   GUM 1971       
## 5851                                          Guam    GU   GUM 1972       
## 5852                                          Guam    GU   GUM 1973       
## 5853                                          Guam    GU   GUM 1974       
## 5854                                          Guam    GU   GUM 1975       
## 5855                                          Guam    GU   GUM 1976       
## 5856                                          Guam    GU   GUM 1977       
## 5857                                          Guam    GU   GUM 1978       
## 5858                                          Guam    GU   GUM 2007       
## 5859                                          Guam    GU   GUM 2019       
## 5860                                          Guam    GU   GUM 2020       
## 5861                                          Guam    GU   GUM 2021       
## 5862                                          Guam    GU   GUM 1997       
## 5863                                          Guam    GU   GUM 2010       
## 5864                                          Guam    GU   GUM 1986       
## 5865                                          Guam    GU   GUM 1987       
## 5866                                          Guam    GU   GUM 2012       
## 5867                                          Guam    GU   GUM 2013       
## 5868                                          Guam    GU   GUM 2014       
## 5869                                          Guam    GU   GUM 1991       
## 5870                                          Guam    GU   GUM 1992       
## 5871                                          Guam    GU   GUM 1979       
## 5872                                          Guam    GU   GUM 1994       
## 5873                                          Guam    GU   GUM 1995       
## 5874                                          Guam    GU   GUM 1996       
## 5875                                          Guam    GU   GUM 2009       
## 5876                                          Guam    GU   GUM 1968       
## 5877                                          Guam    GU   GUM 1970       
## 5878                                          Guam    GU   GUM 1962       
## 5879                                          Guam    GU   GUM 1963       
## 5880                                          Guam    GU   GUM 1964       
## 5881                                          Guam    GU   GUM 1965       
## 5882                                          Guam    GU   GUM 1966       
## 5883                                          Guam    GU   GUM 2008       
## 5884                                          Guam    GU   GUM 1967       
## 5885                                          Guam    GU   GUM 2017       
## 5886                                          Guam    GU   GUM 1969       
## 5887                                          Guam    GU   GUM 2015       
## 5888                                          Guam    GU   GUM 2016       
## 5889                                          Guam    GU   GUM 2018       
## 5890                                          Guam    GU   GUM 1993       
## 5891                                     Guatemala    GT   GTM 1966       
## 5892                                     Guatemala    GT   GTM 1965       
## 5893                                     Guatemala    GT   GTM 1961       
## 5894                                     Guatemala    GT   GTM 1974       
## 5895                                     Guatemala    GT   GTM 1964       
## 5896                                     Guatemala    GT   GTM 1975       
## 5897                                     Guatemala    GT   GTM 1976       
## 5898                                     Guatemala    GT   GTM 1977       
## 5899                                     Guatemala    GT   GTM 1983       
## 5900                                     Guatemala    GT   GTM 1992       
## 5901                                     Guatemala    GT   GTM 1960       
## 5902                                     Guatemala    GT   GTM 1972       
## 5903                                     Guatemala    GT   GTM 1991       
## 5904                                     Guatemala    GT   GTM 1996       
## 5905                                     Guatemala    GT   GTM 1962       
## 5906                                     Guatemala    GT   GTM 1963       
## 5907                                     Guatemala    GT   GTM 1973       
## 5908                                     Guatemala    GT   GTM 2000       
## 5909                                     Guatemala    GT   GTM 2001       
## 5910                                     Guatemala    GT   GTM 2002       
## 5911                                     Guatemala    GT   GTM 1999       
## 5912                                     Guatemala    GT   GTM 1968       
## 5913                                     Guatemala    GT   GTM 1969       
## 5914                                     Guatemala    GT   GTM 1993       
## 5915                                     Guatemala    GT   GTM 1994       
## 5916                                     Guatemala    GT   GTM 1995       
## 5917                                     Guatemala    GT   GTM 2012       
## 5918                                     Guatemala    GT   GTM 2013       
## 5919                                     Guatemala    GT   GTM 2014       
## 5920                                     Guatemala    GT   GTM 2015       
## 5921                                     Guatemala    GT   GTM 2016       
## 5922                                     Guatemala    GT   GTM 2017       
## 5923                                     Guatemala    GT   GTM 2018       
## 5924                                     Guatemala    GT   GTM 2019       
## 5925                                     Guatemala    GT   GTM 2020       
## 5926                                     Guatemala    GT   GTM 2021       
## 5927                                     Guatemala    GT   GTM 1970       
## 5928                                     Guatemala    GT   GTM 1971       
## 5929                                     Guatemala    GT   GTM 2011       
## 5930                                     Guatemala    GT   GTM 1982       
## 5931                                     Guatemala    GT   GTM 2009       
## 5932                                     Guatemala    GT   GTM 1984       
## 5933                                     Guatemala    GT   GTM 1985       
## 5934                                     Guatemala    GT   GTM 1986       
## 5935                                     Guatemala    GT   GTM 1987       
## 5936                                     Guatemala    GT   GTM 1988       
## 5937                                     Guatemala    GT   GTM 1989       
## 5938                                     Guatemala    GT   GTM 1990       
## 5939                                     Guatemala    GT   GTM 2004       
## 5940                                     Guatemala    GT   GTM 2005       
## 5941                                     Guatemala    GT   GTM 2006       
## 5942                                     Guatemala    GT   GTM 2007       
## 5943                                     Guatemala    GT   GTM 2008       
## 5944                                     Guatemala    GT   GTM 1981       
## 5945                                     Guatemala    GT   GTM 1997       
## 5946                                     Guatemala    GT   GTM 1998       
## 5947                                     Guatemala    GT   GTM 1967       
## 5948                                     Guatemala    GT   GTM 1978       
## 5949                                     Guatemala    GT   GTM 1979       
## 5950                                     Guatemala    GT   GTM 1980       
## 5951                                     Guatemala    GT   GTM 2010       
## 5952                                     Guatemala    GT   GTM 2003       
## 5953                                        Guinea    GN   GIN 2008       
## 5954                                        Guinea    GN   GIN 1987       
## 5955                                        Guinea    GN   GIN 1988       
## 5956                                        Guinea    GN   GIN 1986       
## 5957                                        Guinea    GN   GIN 1978       
## 5958                                        Guinea    GN   GIN 1983       
## 5959                                        Guinea    GN   GIN 1998       
## 5960                                        Guinea    GN   GIN 1999       
## 5961                                        Guinea    GN   GIN 2000       
## 5962                                        Guinea    GN   GIN 1989       
## 5963                                        Guinea    GN   GIN 2002       
## 5964                                        Guinea    GN   GIN 2003       
## 5965                                        Guinea    GN   GIN 2004       
## 5966                                        Guinea    GN   GIN 2001       
## 5967                                        Guinea    GN   GIN 1980       
## 5968                                        Guinea    GN   GIN 1981       
## 5969                                        Guinea    GN   GIN 1982       
## 5970                                        Guinea    GN   GIN 2007       
## 5971                                        Guinea    GN   GIN 1966       
## 5972                                        Guinea    GN   GIN 1967       
## 5973                                        Guinea    GN   GIN 1968       
## 5974                                        Guinea    GN   GIN 1969       
## 5975                                        Guinea    GN   GIN 1970       
## 5976                                        Guinea    GN   GIN 1971       
## 5977                                        Guinea    GN   GIN 1972       
## 5978                                        Guinea    GN   GIN 1973       
## 5979                                        Guinea    GN   GIN 1979       
## 5980                                        Guinea    GN   GIN 1975       
## 5981                                        Guinea    GN   GIN 1976       
## 5982                                        Guinea    GN   GIN 1977       
## 5983                                        Guinea    GN   GIN 2019       
## 5984                                        Guinea    GN   GIN 2020       
## 5985                                        Guinea    GN   GIN 1984       
## 5986                                        Guinea    GN   GIN 1985       
## 5987                                        Guinea    GN   GIN 2021       
## 5988                                        Guinea    GN   GIN 2010       
## 5989                                        Guinea    GN   GIN 2011       
## 5990                                        Guinea    GN   GIN 2012       
## 5991                                        Guinea    GN   GIN 1990       
## 5992                                        Guinea    GN   GIN 1974       
## 5993                                        Guinea    GN   GIN 1992       
## 5994                                        Guinea    GN   GIN 1993       
## 5995                                        Guinea    GN   GIN 1994       
## 5996                                        Guinea    GN   GIN 1995       
## 5997                                        Guinea    GN   GIN 1996       
## 5998                                        Guinea    GN   GIN 1997       
## 5999                                        Guinea    GN   GIN 1965       
## 6000                                        Guinea    GN   GIN 2009       
## 6001                                        Guinea    GN   GIN 2014       
## 6002                                        Guinea    GN   GIN 2005       
## 6003                                        Guinea    GN   GIN 1960       
## 6004                                        Guinea    GN   GIN 2013       
## 6005                                        Guinea    GN   GIN 1962       
## 6006                                        Guinea    GN   GIN 2006       
## 6007                                        Guinea    GN   GIN 1964       
## 6008                                        Guinea    GN   GIN 1961       
## 6009                                        Guinea    GN   GIN 2017       
## 6010                                        Guinea    GN   GIN 2018       
## 6011                                        Guinea    GN   GIN 2015       
## 6012                                        Guinea    GN   GIN 2016       
## 6013                                        Guinea    GN   GIN 1963       
## 6014                                        Guinea    GN   GIN 1991       
## 6015                                 Guinea-Bissau    GW   GNB 1961       
## 6016                                 Guinea-Bissau    GW   GNB 1962       
## 6017                                 Guinea-Bissau    GW   GNB 1963       
## 6018                                 Guinea-Bissau    GW   GNB 1972       
## 6019                                 Guinea-Bissau    GW   GNB 1973       
## 6020                                 Guinea-Bissau    GW   GNB 1974       
## 6021                                 Guinea-Bissau    GW   GNB 1976       
## 6022                                 Guinea-Bissau    GW   GNB 1977       
## 6023                                 Guinea-Bissau    GW   GNB 1994       
## 6024                                 Guinea-Bissau    GW   GNB 1971       
## 6025                                 Guinea-Bissau    GW   GNB 1996       
## 6026                                 Guinea-Bissau    GW   GNB 1997       
## 6027                                 Guinea-Bissau    GW   GNB 1960       
## 6028                                 Guinea-Bissau    GW   GNB 1975       
## 6029                                 Guinea-Bissau    GW   GNB 2000       
## 6030                                 Guinea-Bissau    GW   GNB 2001       
## 6031                                 Guinea-Bissau    GW   GNB 2002       
## 6032                                 Guinea-Bissau    GW   GNB 1999       
## 6033                                 Guinea-Bissau    GW   GNB 1965       
## 6034                                 Guinea-Bissau    GW   GNB 1966       
## 6035                                 Guinea-Bissau    GW   GNB 1967       
## 6036                                 Guinea-Bissau    GW   GNB 1968       
## 6037                                 Guinea-Bissau    GW   GNB 1995       
## 6038                                 Guinea-Bissau    GW   GNB 1970       
## 6039                                 Guinea-Bissau    GW   GNB 2013       
## 6040                                 Guinea-Bissau    GW   GNB 2014       
## 6041                                 Guinea-Bissau    GW   GNB 2015       
## 6042                                 Guinea-Bissau    GW   GNB 2016       
## 6043                                 Guinea-Bissau    GW   GNB 2017       
## 6044                                 Guinea-Bissau    GW   GNB 2018       
## 6045                                 Guinea-Bissau    GW   GNB 2019       
## 6046                                 Guinea-Bissau    GW   GNB 2020       
## 6047                                 Guinea-Bissau    GW   GNB 2021       
## 6048                                 Guinea-Bissau    GW   GNB 1979       
## 6049                                 Guinea-Bissau    GW   GNB 1980       
## 6050                                 Guinea-Bissau    GW   GNB 1969       
## 6051                                 Guinea-Bissau    GW   GNB 1982       
## 6052                                 Guinea-Bissau    GW   GNB 1983       
## 6053                                 Guinea-Bissau    GW   GNB 1984       
## 6054                                 Guinea-Bissau    GW   GNB 1985       
## 6055                                 Guinea-Bissau    GW   GNB 1986       
## 6056                                 Guinea-Bissau    GW   GNB 1987       
## 6057                                 Guinea-Bissau    GW   GNB 1988       
## 6058                                 Guinea-Bissau    GW   GNB 1989       
## 6059                                 Guinea-Bissau    GW   GNB 1990       
## 6060                                 Guinea-Bissau    GW   GNB 1991       
## 6061                                 Guinea-Bissau    GW   GNB 1992       
## 6062                                 Guinea-Bissau    GW   GNB 1993       
## 6063                                 Guinea-Bissau    GW   GNB 2009       
## 6064                                 Guinea-Bissau    GW   GNB 2010       
## 6065                                 Guinea-Bissau    GW   GNB 2011       
## 6066                                 Guinea-Bissau    GW   GNB 2012       
## 6067                                 Guinea-Bissau    GW   GNB 1998       
## 6068                                 Guinea-Bissau    GW   GNB 1964       
## 6069                                 Guinea-Bissau    GW   GNB 2006       
## 6070                                 Guinea-Bissau    GW   GNB 2007       
## 6071                                 Guinea-Bissau    GW   GNB 2008       
## 6072                                 Guinea-Bissau    GW   GNB 2005       
## 6073                                 Guinea-Bissau    GW   GNB 1981       
## 6074                                 Guinea-Bissau    GW   GNB 1978       
## 6075                                 Guinea-Bissau    GW   GNB 2004       
## 6076                                 Guinea-Bissau    GW   GNB 2003       
## 6077                                        Guyana    GY   GUY 1984       
## 6078                                        Guyana    GY   GUY 1983       
## 6079                                        Guyana    GY   GUY 1979       
## 6080                                        Guyana    GY   GUY 1985       
## 6081                                        Guyana    GY   GUY 1995       
## 6082                                        Guyana    GY   GUY 1996       
## 6083                                        Guyana    GY   GUY 1980       
## 6084                                        Guyana    GY   GUY 1982       
## 6085                                        Guyana    GY   GUY 1999       
## 6086                                        Guyana    GY   GUY 2000       
## 6087                                        Guyana    GY   GUY 1997       
## 6088                                        Guyana    GY   GUY 1994       
## 6089                                        Guyana    GY   GUY 1977       
## 6090                                        Guyana    GY   GUY 1978       
## 6091                                        Guyana    GY   GUY 2005       
## 6092                                        Guyana    GY   GUY 1998       
## 6093                                        Guyana    GY   GUY 1966       
## 6094                                        Guyana    GY   GUY 1967       
## 6095                                        Guyana    GY   GUY 1968       
## 6096                                        Guyana    GY   GUY 2006       
## 6097                                        Guyana    GY   GUY 1970       
## 6098                                        Guyana    GY   GUY 1971       
## 6099                                        Guyana    GY   GUY 1972       
## 6100                                        Guyana    GY   GUY 1969       
## 6101                                        Guyana    GY   GUY 2002       
## 6102                                        Guyana    GY   GUY 2003       
## 6103                                        Guyana    GY   GUY 1976       
## 6104                                        Guyana    GY   GUY 2017       
## 6105                                        Guyana    GY   GUY 2018       
## 6106                                        Guyana    GY   GUY 2019       
## 6107                                        Guyana    GY   GUY 1981       
## 6108                                        Guyana    GY   GUY 2021       
## 6109                                        Guyana    GY   GUY 2008       
## 6110                                        Guyana    GY   GUY 2009       
## 6111                                        Guyana    GY   GUY 2010       
## 6112                                        Guyana    GY   GUY 1986       
## 6113                                        Guyana    GY   GUY 1973       
## 6114                                        Guyana    GY   GUY 1974       
## 6115                                        Guyana    GY   GUY 1975       
## 6116                                        Guyana    GY   GUY 1990       
## 6117                                        Guyana    GY   GUY 1991       
## 6118                                        Guyana    GY   GUY 1992       
## 6119                                        Guyana    GY   GUY 1993       
## 6120                                        Guyana    GY   GUY 1965       
## 6121                                        Guyana    GY   GUY 2007       
## 6122                                        Guyana    GY   GUY 2020       
## 6123                                        Guyana    GY   GUY 2001       
## 6124                                        Guyana    GY   GUY 1960       
## 6125                                        Guyana    GY   GUY 2011       
## 6126                                        Guyana    GY   GUY 2012       
## 6127                                        Guyana    GY   GUY 2004       
## 6128                                        Guyana    GY   GUY 1964       
## 6129                                        Guyana    GY   GUY 1961       
## 6130                                        Guyana    GY   GUY 1962       
## 6131                                        Guyana    GY   GUY 2016       
## 6132                                        Guyana    GY   GUY 2013       
## 6133                                        Guyana    GY   GUY 2014       
## 6134                                        Guyana    GY   GUY 2015       
## 6135                                        Guyana    GY   GUY 1989       
## 6136                                        Guyana    GY   GUY 1963       
## 6137                                        Guyana    GY   GUY 1988       
## 6138                                        Guyana    GY   GUY 1987       
## 6139                                         Haiti    HT   HTI 1963       
## 6140                                         Haiti    HT   HTI 1962       
## 6141                                         Haiti    HT   HTI 1974       
## 6142                                         Haiti    HT   HTI 1972       
## 6143                                         Haiti    HT   HTI 1961       
## 6144                                         Haiti    HT   HTI 1994       
## 6145                                         Haiti    HT   HTI 1971       
## 6146                                         Haiti    HT   HTI 1976       
## 6147                                         Haiti    HT   HTI 1977       
## 6148                                         Haiti    HT   HTI 1973       
## 6149                                         Haiti    HT   HTI 1975       
## 6150                                         Haiti    HT   HTI 1996       
## 6151                                         Haiti    HT   HTI 1997       
## 6152                                         Haiti    HT   HTI 2002       
## 6153                                         Haiti    HT   HTI 1960       
## 6154                                         Haiti    HT   HTI 2000       
## 6155                                         Haiti    HT   HTI 2001       
## 6156                                         Haiti    HT   HTI 1967       
## 6157                                         Haiti    HT   HTI 1968       
## 6158                                         Haiti    HT   HTI 1995       
## 6159                                         Haiti    HT   HTI 1970       
## 6160                                         Haiti    HT   HTI 2010       
## 6161                                         Haiti    HT   HTI 2011       
## 6162                                         Haiti    HT   HTI 2012       
## 6163                                         Haiti    HT   HTI 2013       
## 6164                                         Haiti    HT   HTI 2014       
## 6165                                         Haiti    HT   HTI 2015       
## 6166                                         Haiti    HT   HTI 2016       
## 6167                                         Haiti    HT   HTI 2017       
## 6168                                         Haiti    HT   HTI 2018       
## 6169                                         Haiti    HT   HTI 2019       
## 6170                                         Haiti    HT   HTI 2020       
## 6171                                         Haiti    HT   HTI 1969       
## 6172                                         Haiti    HT   HTI 1982       
## 6173                                         Haiti    HT   HTI 1983       
## 6174                                         Haiti    HT   HTI 1984       
## 6175                                         Haiti    HT   HTI 1985       
## 6176                                         Haiti    HT   HTI 1986       
## 6177                                         Haiti    HT   HTI 1987       
## 6178                                         Haiti    HT   HTI 1988       
## 6179                                         Haiti    HT   HTI 1989       
## 6180                                         Haiti    HT   HTI 1990       
## 6181                                         Haiti    HT   HTI 1991       
## 6182                                         Haiti    HT   HTI 1992       
## 6183                                         Haiti    HT   HTI 1993       
## 6184                                         Haiti    HT   HTI 2006       
## 6185                                         Haiti    HT   HTI 2007       
## 6186                                         Haiti    HT   HTI 2008       
## 6187                                         Haiti    HT   HTI 2009       
## 6188                                         Haiti    HT   HTI 1998       
## 6189                                         Haiti    HT   HTI 1999       
## 6190                                         Haiti    HT   HTI 1965       
## 6191                                         Haiti    HT   HTI 1966       
## 6192                                         Haiti    HT   HTI 2005       
## 6193                                         Haiti    HT   HTI 1964       
## 6194                                         Haiti    HT   HTI 2021       
## 6195                                         Haiti    HT   HTI 1981       
## 6196                                         Haiti    HT   HTI 1978       
## 6197                                         Haiti    HT   HTI 1980       
## 6198                                         Haiti    HT   HTI 2004       
## 6199                                         Haiti    HT   HTI 1979       
## 6200                                         Haiti    HT   HTI 2003       
## 6201        Heavily indebted poor countries (HIPC)    XE   HPC 1981       
## 6202        Heavily indebted poor countries (HIPC)    XE   HPC 1982       
## 6203        Heavily indebted poor countries (HIPC)    XE   HPC 1993       
## 6204        Heavily indebted poor countries (HIPC)    XE   HPC 1977       
## 6205        Heavily indebted poor countries (HIPC)    XE   HPC 1991       
## 6206        Heavily indebted poor countries (HIPC)    XE   HPC 1980       
## 6207        Heavily indebted poor countries (HIPC)    XE   HPC 1997       
## 6208        Heavily indebted poor countries (HIPC)    XE   HPC 1994       
## 6209        Heavily indebted poor countries (HIPC)    XE   HPC 1995       
## 6210        Heavily indebted poor countries (HIPC)    XE   HPC 1992       
## 6211        Heavily indebted poor countries (HIPC)    XE   HPC 1975       
## 6212        Heavily indebted poor countries (HIPC)    XE   HPC 1976       
## 6213        Heavily indebted poor countries (HIPC)    XE   HPC 2004       
## 6214        Heavily indebted poor countries (HIPC)    XE   HPC 1996       
## 6215        Heavily indebted poor countries (HIPC)    XE   HPC 1964       
## 6216        Heavily indebted poor countries (HIPC)    XE   HPC 1965       
## 6217        Heavily indebted poor countries (HIPC)    XE   HPC 1966       
## 6218        Heavily indebted poor countries (HIPC)    XE   HPC 1963       
## 6219        Heavily indebted poor countries (HIPC)    XE   HPC 1968       
## 6220        Heavily indebted poor countries (HIPC)    XE   HPC 1969       
## 6221        Heavily indebted poor countries (HIPC)    XE   HPC 1970       
## 6222        Heavily indebted poor countries (HIPC)    XE   HPC 1967       
## 6223        Heavily indebted poor countries (HIPC)    XE   HPC 1974       
## 6224        Heavily indebted poor countries (HIPC)    XE   HPC 1973       
## 6225        Heavily indebted poor countries (HIPC)    XE   HPC 2003       
## 6226        Heavily indebted poor countries (HIPC)    XE   HPC 2015       
## 6227        Heavily indebted poor countries (HIPC)    XE   HPC 2016       
## 6228        Heavily indebted poor countries (HIPC)    XE   HPC 1978       
## 6229        Heavily indebted poor countries (HIPC)    XE   HPC 1979       
## 6230        Heavily indebted poor countries (HIPC)    XE   HPC 2019       
## 6231        Heavily indebted poor countries (HIPC)    XE   HPC 2020       
## 6232        Heavily indebted poor countries (HIPC)    XE   HPC 2021       
## 6233        Heavily indebted poor countries (HIPC)    XE   HPC 1983       
## 6234        Heavily indebted poor countries (HIPC)    XE   HPC 1984       
## 6235        Heavily indebted poor countries (HIPC)    XE   HPC 1971       
## 6236        Heavily indebted poor countries (HIPC)    XE   HPC 1972       
## 6237        Heavily indebted poor countries (HIPC)    XE   HPC 1987       
## 6238        Heavily indebted poor countries (HIPC)    XE   HPC 2014       
## 6239        Heavily indebted poor countries (HIPC)    XE   HPC 1989       
## 6240        Heavily indebted poor countries (HIPC)    XE   HPC 1990       
## 6241        Heavily indebted poor countries (HIPC)    XE   HPC 1962       
## 6242        Heavily indebted poor countries (HIPC)    XE   HPC 2008       
## 6243        Heavily indebted poor countries (HIPC)    XE   HPC 2005       
## 6244        Heavily indebted poor countries (HIPC)    XE   HPC 2006       
## 6245        Heavily indebted poor countries (HIPC)    XE   HPC 2007       
## 6246        Heavily indebted poor countries (HIPC)    XE   HPC 2000       
## 6247        Heavily indebted poor countries (HIPC)    XE   HPC 2009       
## 6248        Heavily indebted poor countries (HIPC)    XE   HPC 1998       
## 6249        Heavily indebted poor countries (HIPC)    XE   HPC 1999       
## 6250        Heavily indebted poor countries (HIPC)    XE   HPC 1961       
## 6251        Heavily indebted poor countries (HIPC)    XE   HPC 1988       
## 6252        Heavily indebted poor countries (HIPC)    XE   HPC 2001       
## 6253        Heavily indebted poor countries (HIPC)    XE   HPC 2002       
## 6254        Heavily indebted poor countries (HIPC)    XE   HPC 2011       
## 6255        Heavily indebted poor countries (HIPC)    XE   HPC 2012       
## 6256        Heavily indebted poor countries (HIPC)    XE   HPC 2017       
## 6257        Heavily indebted poor countries (HIPC)    XE   HPC 2018       
## 6258        Heavily indebted poor countries (HIPC)    XE   HPC 1960       
## 6259        Heavily indebted poor countries (HIPC)    XE   HPC 1985       
## 6260        Heavily indebted poor countries (HIPC)    XE   HPC 2013       
## 6261        Heavily indebted poor countries (HIPC)    XE   HPC 2010       
## 6262        Heavily indebted poor countries (HIPC)    XE   HPC 1986       
## 6263                                   High income    XD       1965       
## 6264                                   High income    XD       1966       
## 6265                                   High income    XD       1967       
## 6266                                   High income    XD       1968       
## 6267                                   High income    XD       1969       
## 6268                                   High income    XD       1970       
## 6269                                   High income    XD       1971       
## 6270                                   High income    XD       1972       
## 6271                                   High income    XD       1973       
## 6272                                   High income    XD       1974       
## 6273                                   High income    XD       1975       
## 6274                                   High income    XD       1976       
## 6275                                   High income    XD       1977       
## 6276                                   High income    XD       1978       
## 6277                                   High income    XD       1979       
## 6278                                   High income    XD       1980       
## 6279                                   High income    XD       1981       
## 6280                                   High income    XD       1982       
## 6281                                   High income    XD       1983       
## 6282                                   High income    XD       1984       
## 6283                                   High income    XD       1985       
## 6284                                   High income    XD       1986       
## 6285                                   High income    XD       1987       
## 6286                                   High income    XD       1988       
## 6287                                   High income    XD       1989       
## 6288                                   High income    XD       1990       
## 6289                                   High income    XD       1991       
## 6290                                   High income    XD       1992       
## 6291                                   High income    XD       1993       
## 6292                                   High income    XD       1994       
## 6293                                   High income    XD       1995       
## 6294                                   High income    XD       1996       
## 6295                                   High income    XD       1997       
## 6296                                   High income    XD       1998       
## 6297                                   High income    XD       2014       
## 6298                                   High income    XD       2015       
## 6299                                   High income    XD       2016       
## 6300                                   High income    XD       2017       
## 6301                                   High income    XD       2018       
## 6302                                   High income    XD       2019       
## 6303                                   High income    XD       2020       
## 6304                                   High income    XD       2021       
## 6305                                   High income    XD       1960       
## 6306                                   High income    XD       1961       
## 6307                                   High income    XD       1962       
## 6308                                   High income    XD       1963       
## 6309                                   High income    XD       1964       
## 6310                                   High income    XD       1999       
## 6311                                   High income    XD       2000       
## 6312                                   High income    XD       2001       
## 6313                                   High income    XD       2002       
## 6314                                   High income    XD       2003       
## 6315                                   High income    XD       2004       
## 6316                                   High income    XD       2005       
## 6317                                   High income    XD       2006       
## 6318                                   High income    XD       2007       
## 6319                                   High income    XD       2008       
## 6320                                   High income    XD       2009       
## 6321                                   High income    XD       2010       
## 6322                                   High income    XD       2011       
## 6323                                   High income    XD       2012       
## 6324                                   High income    XD       2013       
## 6325                                      Honduras    HN   HND 1989       
## 6326                                      Honduras    HN   HND 2001       
## 6327                                      Honduras    HN   HND 1972       
## 6328                                      Honduras    HN   HND 1992       
## 6329                                      Honduras    HN   HND 1993       
## 6330                                      Honduras    HN   HND 1994       
## 6331                                      Honduras    HN   HND 1990       
## 6332                                      Honduras    HN   HND 1991       
## 6333                                      Honduras    HN   HND 1988       
## 6334                                      Honduras    HN   HND 1975       
## 6335                                      Honduras    HN   HND 1980       
## 6336                                      Honduras    HN   HND 1981       
## 6337                                      Honduras    HN   HND 1978       
## 6338                                      Honduras    HN   HND 1979       
## 6339                                      Honduras    HN   HND 1984       
## 6340                                      Honduras    HN   HND 1985       
## 6341                                      Honduras    HN   HND 1973       
## 6342                                      Honduras    HN   HND 1974       
## 6343                                      Honduras    HN   HND 2000       
## 6344                                      Honduras    HN   HND 1960       
## 6345                                      Honduras    HN   HND 1961       
## 6346                                      Honduras    HN   HND 1962       
## 6347                                      Honduras    HN   HND 1963       
## 6348                                      Honduras    HN   HND 1964       
## 6349                                      Honduras    HN   HND 1965       
## 6350                                      Honduras    HN   HND 1995       
## 6351                                      Honduras    HN   HND 1996       
## 6352                                      Honduras    HN   HND 1997       
## 6353                                      Honduras    HN   HND 1998       
## 6354                                      Honduras    HN   HND 1986       
## 6355                                      Honduras    HN   HND 1987       
## 6356                                      Honduras    HN   HND 2012       
## 6357                                      Honduras    HN   HND 2013       
## 6358                                      Honduras    HN   HND 1976       
## 6359                                      Honduras    HN   HND 1977       
## 6360                                      Honduras    HN   HND 2015       
## 6361                                      Honduras    HN   HND 2016       
## 6362                                      Honduras    HN   HND 2017       
## 6363                                      Honduras    HN   HND 1966       
## 6364                                      Honduras    HN   HND 1967       
## 6365                                      Honduras    HN   HND 1968       
## 6366                                      Honduras    HN   HND 1969       
## 6367                                      Honduras    HN   HND 1970       
## 6368                                      Honduras    HN   HND 1971       
## 6369                                      Honduras    HN   HND 2011       
## 6370                                      Honduras    HN   HND 1999       
## 6371                                      Honduras    HN   HND 2004       
## 6372                                      Honduras    HN   HND 2018       
## 6373                                      Honduras    HN   HND 2002       
## 6374                                      Honduras    HN   HND 2003       
## 6375                                      Honduras    HN   HND 2021       
## 6376                                      Honduras    HN   HND 2009       
## 6377                                      Honduras    HN   HND 1982       
## 6378                                      Honduras    HN   HND 1983       
## 6379                                      Honduras    HN   HND 2014       
## 6380                                      Honduras    HN   HND 2008       
## 6381                                      Honduras    HN   HND 2010       
## 6382                                      Honduras    HN   HND 2006       
## 6383                                      Honduras    HN   HND 2007       
## 6384                                      Honduras    HN   HND 2019       
## 6385                                      Honduras    HN   HND 2005       
## 6386                                      Honduras    HN   HND 2020       
## 6387                          Hong Kong SAR, China    HK   HKG 1963       
## 6388                          Hong Kong SAR, China    HK   HKG 1965       
## 6389                          Hong Kong SAR, China    HK   HKG 1966       
## 6390                          Hong Kong SAR, China    HK   HKG 1967       
## 6391                          Hong Kong SAR, China    HK   HKG 1964       
## 6392                          Hong Kong SAR, China    HK   HKG 2005       
## 6393                          Hong Kong SAR, China    HK   HKG 2006       
## 6394                          Hong Kong SAR, China    HK   HKG 1961       
## 6395                          Hong Kong SAR, China    HK   HKG 1962       
## 6396                          Hong Kong SAR, China    HK   HKG 1969       
## 6397                          Hong Kong SAR, China    HK   HKG 1960       
## 6398                          Hong Kong SAR, China    HK   HKG 2019       
## 6399                          Hong Kong SAR, China    HK   HKG 2007       
## 6400                          Hong Kong SAR, China    HK   HKG 2004       
## 6401                          Hong Kong SAR, China    HK   HKG 2018       
## 6402                          Hong Kong SAR, China    HK   HKG 2010       
## 6403                          Hong Kong SAR, China    HK   HKG 2011       
## 6404                          Hong Kong SAR, China    HK   HKG 1968       
## 6405                          Hong Kong SAR, China    HK   HKG 2009       
## 6406                          Hong Kong SAR, China    HK   HKG 2014       
## 6407                          Hong Kong SAR, China    HK   HKG 2015       
## 6408                          Hong Kong SAR, China    HK   HKG 2016       
## 6409                          Hong Kong SAR, China    HK   HKG 1988       
## 6410                          Hong Kong SAR, China    HK   HKG 1989       
## 6411                          Hong Kong SAR, China    HK   HKG 1990       
## 6412                          Hong Kong SAR, China    HK   HKG 1991       
## 6413                          Hong Kong SAR, China    HK   HKG 2008       
## 6414                          Hong Kong SAR, China    HK   HKG 1993       
## 6415                          Hong Kong SAR, China    HK   HKG 1994       
## 6416                          Hong Kong SAR, China    HK   HKG 1995       
## 6417                          Hong Kong SAR, China    HK   HKG 2012       
## 6418                          Hong Kong SAR, China    HK   HKG 2013       
## 6419                          Hong Kong SAR, China    HK   HKG 1999       
## 6420                          Hong Kong SAR, China    HK   HKG 2000       
## 6421                          Hong Kong SAR, China    HK   HKG 2001       
## 6422                          Hong Kong SAR, China    HK   HKG 2002       
## 6423                          Hong Kong SAR, China    HK   HKG 2003       
## 6424                          Hong Kong SAR, China    HK   HKG 1976       
## 6425                          Hong Kong SAR, China    HK   HKG 1977       
## 6426                          Hong Kong SAR, China    HK   HKG 2020       
## 6427                          Hong Kong SAR, China    HK   HKG 2021       
## 6428                          Hong Kong SAR, China    HK   HKG 1980       
## 6429                          Hong Kong SAR, China    HK   HKG 1981       
## 6430                          Hong Kong SAR, China    HK   HKG 1982       
## 6431                          Hong Kong SAR, China    HK   HKG 1970       
## 6432                          Hong Kong SAR, China    HK   HKG 1971       
## 6433                          Hong Kong SAR, China    HK   HKG 1972       
## 6434                          Hong Kong SAR, China    HK   HKG 1973       
## 6435                          Hong Kong SAR, China    HK   HKG 1974       
## 6436                          Hong Kong SAR, China    HK   HKG 2017       
## 6437                          Hong Kong SAR, China    HK   HKG 1975       
## 6438                          Hong Kong SAR, China    HK   HKG 1985       
## 6439                          Hong Kong SAR, China    HK   HKG 1986       
## 6440                          Hong Kong SAR, China    HK   HKG 1992       
## 6441                          Hong Kong SAR, China    HK   HKG 1979       
## 6442                          Hong Kong SAR, China    HK   HKG 1996       
## 6443                          Hong Kong SAR, China    HK   HKG 1997       
## 6444                          Hong Kong SAR, China    HK   HKG 1983       
## 6445                          Hong Kong SAR, China    HK   HKG 1984       
## 6446                          Hong Kong SAR, China    HK   HKG 1987       
## 6447                          Hong Kong SAR, China    HK   HKG 1978       
## 6448                          Hong Kong SAR, China    HK   HKG 1998       
## 6449                                       Hungary    HU   HUN 1985       
## 6450                                       Hungary    HU   HUN 1986       
## 6451                                       Hungary    HU   HUN 1989       
## 6452                                       Hungary    HU   HUN 1990       
## 6453                                       Hungary    HU   HUN 1969       
## 6454                                       Hungary    HU   HUN 1984       
## 6455                                       Hungary    HU   HUN 1971       
## 6456                                       Hungary    HU   HUN 1972       
## 6457                                       Hungary    HU   HUN 1977       
## 6458                                       Hungary    HU   HUN 1988       
## 6459                                       Hungary    HU   HUN 1975       
## 6460                                       Hungary    HU   HUN 1976       
## 6461                                       Hungary    HU   HUN 1981       
## 6462                                       Hungary    HU   HUN 1982       
## 6463                                       Hungary    HU   HUN 1970       
## 6464                                       Hungary    HU   HUN 1997       
## 6465                                       Hungary    HU   HUN 1998       
## 6466                                       Hungary    HU   HUN 1987       
## 6467                                       Hungary    HU   HUN 1974       
## 6468                                       Hungary    HU   HUN 1960       
## 6469                                       Hungary    HU   HUN 1961       
## 6470                                       Hungary    HU   HUN 1962       
## 6471                                       Hungary    HU   HUN 1991       
## 6472                                       Hungary    HU   HUN 1992       
## 6473                                       Hungary    HU   HUN 1993       
## 6474                                       Hungary    HU   HUN 1994       
## 6475                                       Hungary    HU   HUN 1995       
## 6476                                       Hungary    HU   HUN 1983       
## 6477                                       Hungary    HU   HUN 2009       
## 6478                                       Hungary    HU   HUN 2010       
## 6479                                       Hungary    HU   HUN 2011       
## 6480                                       Hungary    HU   HUN 1973       
## 6481                                       Hungary    HU   HUN 2014       
## 6482                                       Hungary    HU   HUN 2015       
## 6483                                       Hungary    HU   HUN 2016       
## 6484                                       Hungary    HU   HUN 1963       
## 6485                                       Hungary    HU   HUN 1964       
## 6486                                       Hungary    HU   HUN 1965       
## 6487                                       Hungary    HU   HUN 1966       
## 6488                                       Hungary    HU   HUN 1967       
## 6489                                       Hungary    HU   HUN 1968       
## 6490                                       Hungary    HU   HUN 2008       
## 6491                                       Hungary    HU   HUN 1996       
## 6492                                       Hungary    HU   HUN 2001       
## 6493                                       Hungary    HU   HUN 2017       
## 6494                                       Hungary    HU   HUN 1999       
## 6495                                       Hungary    HU   HUN 2000       
## 6496                                       Hungary    HU   HUN 1980       
## 6497                                       Hungary    HU   HUN 2021       
## 6498                                       Hungary    HU   HUN 1978       
## 6499                                       Hungary    HU   HUN 1979       
## 6500                                       Hungary    HU   HUN 2012       
## 6501                                       Hungary    HU   HUN 2013       
## 6502                                       Hungary    HU   HUN 2007       
## 6503                                       Hungary    HU   HUN 2003       
## 6504                                       Hungary    HU   HUN 2004       
## 6505                                       Hungary    HU   HUN 2005       
## 6506                                       Hungary    HU   HUN 2002       
## 6507                                       Hungary    HU   HUN 2020       
## 6508                                       Hungary    HU   HUN 2018       
## 6509                                       Hungary    HU   HUN 2006       
## 6510                                       Hungary    HU   HUN 2019       
## 6511                                     IBRD only    XF   IBD 1964       
## 6512                                     IBRD only    XF   IBD 1962       
## 6513                                     IBRD only    XF   IBD 1963       
## 6514                                     IBRD only    XF   IBD 1965       
## 6515                                     IBRD only    XF   IBD 1966       
## 6516                                     IBRD only    XF   IBD 1961       
## 6517                                     IBRD only    XF   IBD 2001       
## 6518                                     IBRD only    XF   IBD 2002       
## 6519                                     IBRD only    XF   IBD 1960       
## 6520                                     IBRD only    XF   IBD 2003       
## 6521                                     IBRD only    XF   IBD 2000       
## 6522                                     IBRD only    XF   IBD 2014       
## 6523                                     IBRD only    XF   IBD 2015       
## 6524                                     IBRD only    XF   IBD 2007       
## 6525                                     IBRD only    XF   IBD 1967       
## 6526                                     IBRD only    XF   IBD 1968       
## 6527                                     IBRD only    XF   IBD 2006       
## 6528                                     IBRD only    XF   IBD 2011       
## 6529                                     IBRD only    XF   IBD 2012       
## 6530                                     IBRD only    XF   IBD 1987       
## 6531                                     IBRD only    XF   IBD 1988       
## 6532                                     IBRD only    XF   IBD 1989       
## 6533                                     IBRD only    XF   IBD 1990       
## 6534                                     IBRD only    XF   IBD 2004       
## 6535                                     IBRD only    XF   IBD 2005       
## 6536                                     IBRD only    XF   IBD 1993       
## 6537                                     IBRD only    XF   IBD 1994       
## 6538                                     IBRD only    XF   IBD 2008       
## 6539                                     IBRD only    XF   IBD 2009       
## 6540                                     IBRD only    XF   IBD 2010       
## 6541                                     IBRD only    XF   IBD 1996       
## 6542                                     IBRD only    XF   IBD 1997       
## 6543                                     IBRD only    XF   IBD 1998       
## 6544                                     IBRD only    XF   IBD 1999       
## 6545                                     IBRD only    XF   IBD 1975       
## 6546                                     IBRD only    XF   IBD 1976       
## 6547                                     IBRD only    XF   IBD 2016       
## 6548                                     IBRD only    XF   IBD 2017       
## 6549                                     IBRD only    XF   IBD 2018       
## 6550                                     IBRD only    XF   IBD 2019       
## 6551                                     IBRD only    XF   IBD 2020       
## 6552                                     IBRD only    XF   IBD 1969       
## 6553                                     IBRD only    XF   IBD 1970       
## 6554                                     IBRD only    XF   IBD 1971       
## 6555                                     IBRD only    XF   IBD 1972       
## 6556                                     IBRD only    XF   IBD 1973       
## 6557                                     IBRD only    XF   IBD 2013       
## 6558                                     IBRD only    XF   IBD 1974       
## 6559                                     IBRD only    XF   IBD 1979       
## 6560                                     IBRD only    XF   IBD 1980       
## 6561                                     IBRD only    XF   IBD 1991       
## 6562                                     IBRD only    XF   IBD 1992       
## 6563                                     IBRD only    XF   IBD 1984       
## 6564                                     IBRD only    XF   IBD 1985       
## 6565                                     IBRD only    XF   IBD 2021       
## 6566                                     IBRD only    XF   IBD 1983       
## 6567                                     IBRD only    XF   IBD 1978       
## 6568                                     IBRD only    XF   IBD 1986       
## 6569                                     IBRD only    XF   IBD 1977       
## 6570                                     IBRD only    XF   IBD 1982       
## 6571                                     IBRD only    XF   IBD 1995       
## 6572                                     IBRD only    XF   IBD 1981       
## 6573                                       Iceland    IS   ISL 1982       
## 6574                                       Iceland    IS   ISL 1967       
## 6575                                       Iceland    IS   ISL 1981       
## 6576                                       Iceland    IS   ISL 1985       
## 6577                                       Iceland    IS   ISL 1968       
## 6578                                       Iceland    IS   ISL 1965       
## 6579                                       Iceland    IS   ISL 1980       
## 6580                                       Iceland    IS   ISL 1975       
## 6581                                       Iceland    IS   ISL 1986       
## 6582                                       Iceland    IS   ISL 1977       
## 6583                                       Iceland    IS   ISL 1978       
## 6584                                       Iceland    IS   ISL 1966       
## 6585                                       Iceland    IS   ISL 2020       
## 6586                                       Iceland    IS   ISL 2021       
## 6587                                       Iceland    IS   ISL 1983       
## 6588                                       Iceland    IS   ISL 1984       
## 6589                                       Iceland    IS   ISL 1971       
## 6590                                       Iceland    IS   ISL 1972       
## 6591                                       Iceland    IS   ISL 1973       
## 6592                                       Iceland    IS   ISL 1974       
## 6593                                       Iceland    IS   ISL 1988       
## 6594                                       Iceland    IS   ISL 1989       
## 6595                                       Iceland    IS   ISL 1990       
## 6596                                       Iceland    IS   ISL 1991       
## 6597                                       Iceland    IS   ISL 1979       
## 6598                                       Iceland    IS   ISL 1995       
## 6599                                       Iceland    IS   ISL 1996       
## 6600                                       Iceland    IS   ISL 2008       
## 6601                                       Iceland    IS   ISL 1969       
## 6602                                       Iceland    IS   ISL 1970       
## 6603                                       Iceland    IS   ISL 2011       
## 6604                                       Iceland    IS   ISL 2012       
## 6605                                       Iceland    IS   ISL 1987       
## 6606                                       Iceland    IS   ISL 1960       
## 6607                                       Iceland    IS   ISL 1961       
## 6608                                       Iceland    IS   ISL 1962       
## 6609                                       Iceland    IS   ISL 1963       
## 6610                                       Iceland    IS   ISL 1964       
## 6611                                       Iceland    IS   ISL 2006       
## 6612                                       Iceland    IS   ISL 2007       
## 6613                                       Iceland    IS   ISL 1993       
## 6614                                       Iceland    IS   ISL 1994       
## 6615                                       Iceland    IS   ISL 2014       
## 6616                                       Iceland    IS   ISL 1997       
## 6617                                       Iceland    IS   ISL 1998       
## 6618                                       Iceland    IS   ISL 2013       
## 6619                                       Iceland    IS   ISL 2018       
## 6620                                       Iceland    IS   ISL 2015       
## 6621                                       Iceland    IS   ISL 1976       
## 6622                                       Iceland    IS   ISL 2017       
## 6623                                       Iceland    IS   ISL 1999       
## 6624                                       Iceland    IS   ISL 2019       
## 6625                                       Iceland    IS   ISL 1992       
## 6626                                       Iceland    IS   ISL 2010       
## 6627                                       Iceland    IS   ISL 2003       
## 6628                                       Iceland    IS   ISL 2000       
## 6629                                       Iceland    IS   ISL 2009       
## 6630                                       Iceland    IS   ISL 2002       
## 6631                                       Iceland    IS   ISL 2004       
## 6632                                       Iceland    IS   ISL 2001       
## 6633                                       Iceland    IS   ISL 2016       
## 6634                                       Iceland    IS   ISL 2005       
## 6635                              IDA & IBRD total    ZT   IBT 1962       
## 6636                              IDA & IBRD total    ZT   IBT 1960       
## 6637                              IDA & IBRD total    ZT   IBT 1961       
## 6638                              IDA & IBRD total    ZT   IBT 1998       
## 6639                              IDA & IBRD total    ZT   IBT 1999       
## 6640                              IDA & IBRD total    ZT   IBT 2001       
## 6641                              IDA & IBRD total    ZT   IBT 2014       
## 6642                              IDA & IBRD total    ZT   IBT 1963       
## 6643                              IDA & IBRD total    ZT   IBT 1964       
## 6644                              IDA & IBRD total    ZT   IBT 2000       
## 6645                              IDA & IBRD total    ZT   IBT 2005       
## 6646                              IDA & IBRD total    ZT   IBT 2006       
## 6647                              IDA & IBRD total    ZT   IBT 2007       
## 6648                              IDA & IBRD total    ZT   IBT 2004       
## 6649                              IDA & IBRD total    ZT   IBT 2009       
## 6650                              IDA & IBRD total    ZT   IBT 2010       
## 6651                              IDA & IBRD total    ZT   IBT 1982       
## 6652                              IDA & IBRD total    ZT   IBT 1983       
## 6653                              IDA & IBRD total    ZT   IBT 1984       
## 6654                              IDA & IBRD total    ZT   IBT 1985       
## 6655                              IDA & IBRD total    ZT   IBT 2002       
## 6656                              IDA & IBRD total    ZT   IBT 2003       
## 6657                              IDA & IBRD total    ZT   IBT 1988       
## 6658                              IDA & IBRD total    ZT   IBT 1989       
## 6659                              IDA & IBRD total    ZT   IBT 1990       
## 6660                              IDA & IBRD total    ZT   IBT 1991       
## 6661                              IDA & IBRD total    ZT   IBT 2008       
## 6662                              IDA & IBRD total    ZT   IBT 1993       
## 6663                              IDA & IBRD total    ZT   IBT 1994       
## 6664                              IDA & IBRD total    ZT   IBT 1995       
## 6665                              IDA & IBRD total    ZT   IBT 1996       
## 6666                              IDA & IBRD total    ZT   IBT 1997       
##      lastupdated  lifeExp        pop   gdpPercap                     region
## 1     2022-09-16 52.25600   15816601          NA                 South Asia
## 2     2022-09-16 54.42400   19357126          NA                 South Asia
## 3     2022-09-16 52.84200   17075728          NA                 South Asia
## 4     2022-09-16 53.39800   18110662          NA                 South Asia
## 5     2022-09-16 56.30800   21606992          NA                 South Asia
## 6     2022-09-16 54.90600   19737770          NA                 South Asia
## 7     2022-09-16 55.37600   20170847          NA                 South Asia
## 8     2022-09-16 59.37500   27100542    392.7105                 South Asia
## 9     2022-09-16 59.93000   27722281    398.9711                 South Asia
## 10    2022-09-16 43.24400   13356500          NA                 South Asia
## 11    2022-09-16 53.92400   18853444          NA                 South Asia
## 12    2022-09-16 36.90000   10893772          NA                 South Asia
## 13    2022-09-16 37.40900   11173654          NA                 South Asia
## 14    2022-09-16 37.93000   11475450          NA                 South Asia
## 15    2022-09-16 36.40300   10637064          NA                 South Asia
## 16    2022-09-16 47.48600   11736177          NA                 South Asia
## 17    2022-09-16 48.21100   11604538          NA                 South Asia
## 18    2022-09-16 56.78400   22600774    319.8471                 South Asia
## 19    2022-09-16 46.76100   11938204          NA                 South Asia
## 20    2022-09-16 41.32000   13171294          NA                 South Asia
## 21    2022-09-16 41.94400   13341199          NA                 South Asia
## 22    2022-09-16 42.58500   13411060          NA                 South Asia
## 23    2022-09-16 34.94800    9956318          NA                 South Asia
## 24    2022-09-16 35.43000   10174840          NA                 South Asia
## 25    2022-09-16 35.91400   10399936          NA                 South Asia
## 26    2022-09-16 60.48400   28394806    472.8423                 South Asia
## 27    2022-09-16 61.02800   29185511    526.1037                 South Asia
## 28    2022-09-16 61.55300   30117411    511.9985                 South Asia
## 29    2022-09-16 62.05400   31161378    557.9497                 South Asia
## 30    2022-09-16 55.84100   20779957          NA                 South Asia
## 31    2022-09-16 32.44600    8996967          NA                 South Asia
## 32    2022-09-16 57.27100   23680871    332.2200                 South Asia
## 33    2022-09-16 33.47100    9351442          NA                 South Asia
## 34    2022-09-16 33.97100    9543200          NA                 South Asia
## 35    2022-09-16 34.46300    9744772          NA                 South Asia
## 36    2022-09-16 64.83300   38041757    555.1390                 South Asia
## 37    2022-09-16 65.17300   38928341    529.7412                 South Asia
## 38    2022-09-16 43.92300   13171679          NA                 South Asia
## 39    2022-09-16 44.61700   12882518          NA                 South Asia
## 40    2022-09-16 45.32400   12537732          NA                 South Asia
## 41    2022-09-16 46.04000   12204306          NA                 South Asia
## 42    2022-09-16 40.12800   12689164          NA                 South Asia
## 43    2022-09-16 38.46100   11791222          NA                 South Asia
## 44    2022-09-16 39.00300   12108963          NA                 South Asia
## 45    2022-09-16 32.96200    9169406          NA                 South Asia
## 46    2022-09-16 58.29000   25654274    345.9258                 South Asia
## 47    2022-09-16 40.71500   12943093          NA                 South Asia
## 48    2022-09-16 64.48600   37171922    546.7430                 South Asia
## 49    2022-09-16 51.64100   14485543          NA                 South Asia
## 50    2022-09-16 39.55800   12412960          NA                 South Asia
## 51    2022-09-16 58.82600   26433058    353.7206                 South Asia
## 52    2022-09-16 50.33100   12412311          NA                 South Asia
## 53    2022-09-16       NA   39835428          NA                 South Asia
## 54    2022-09-16 57.77200   24726689    322.6680                 South Asia
## 55    2022-09-16 49.64000   11868873          NA                 South Asia
## 56    2022-09-16 63.37700   34413603    556.0072                 South Asia
## 57    2022-09-16 62.52500   32269592    568.9645                 South Asia
## 58    2022-09-16 64.13000   36296111    553.3551                 South Asia
## 59    2022-09-16 62.96600   33370804    565.1793                 South Asia
## 60    2022-09-16 50.99900   13299016          NA                 South Asia
## 61    2022-09-16 63.76300   35383028    552.9969                 South Asia
## 62    2022-09-16 48.93000   11618008          NA                 South Asia
## 63    2022-09-16 47.82940  185376550   1466.8759                 Aggregates
## 64    2022-09-16 48.81084  202205766   1489.8486                 Aggregates
## 65    2022-09-16 44.02562  141202036   1240.0882                 Aggregates
## 66    2022-09-16 44.43272  144920186   1263.6101                 Aggregates
## 67    2022-09-16 48.50331  196409937   1491.3640                 Aggregates
## 68    2022-09-16 47.10287  175100167   1455.6812                 Aggregates
## 69    2022-09-16 47.47117  180141148   1445.3727                 Aggregates
## 70    2022-09-16 48.17500  190800796   1509.0984                 Aggregates
## 71    2022-09-16 61.64737  578075373   1552.9870                 Aggregates
## 72    2022-09-16 62.25929  593871847   1556.3165                 Aggregates
## 73    2022-09-16 60.18556  547482863   1513.3697                 Aggregates
## 74    2022-09-16 44.82692  148769974   1296.4906                 Aggregates
## 75    2022-09-16 46.72880  170257189   1420.7694                 Aggregates
## 76    2022-09-16 58.47070  518468229   1527.2297                 Aggregates
## 77    2022-09-16 62.78768  609978946   1548.8131                 Aggregates
## 78    2022-09-16 50.61038  248146290   1413.1155                 Aggregates
## 79    2022-09-16 60.95336  562601578   1534.5577                 Aggregates
## 80    2022-09-16 51.05806  263161451   1366.3952                 Aggregates
## 81    2022-09-16 59.35359  532760424   1540.9664                 Aggregates
## 82    2022-09-16 51.29978  279184536   1373.1796                 Aggregates
## 83    2022-09-16 63.24626  626392880   1546.7956                 Aggregates
## 84    2022-09-16 63.64899  643090131   1544.0780                 Aggregates
## 85    2022-09-16 51.21428  271050065   1356.9575                 Aggregates
## 86    2022-09-16 64.32570  677243299   1452.7303                 Aggregates
## 87    2022-09-16       NA  694665117   1477.2493                 Aggregates
## 88    2022-09-16 50.89025  331265579   1209.9519                 Aggregates
## 89    2022-09-16 50.84186  340379934   1201.4085                 Aggregates
## 90    2022-09-16 50.80848  349605660   1219.8938                 Aggregates
## 91    2022-09-16 50.79616  358953595   1252.7195                 Aggregates
## 92    2022-09-16 50.84833  255530063   1413.5308                 Aggregates
## 93    2022-09-16 42.71605  130836765   1175.7353                 Aggregates
## 94    2022-09-16 43.16694  134159786   1149.3606                 Aggregates
## 95    2022-09-16 43.60399  137614644   1209.9305                 Aggregates
## 96    2022-09-16 51.60646  408522129   1287.2158                 Aggregates
## 97    2022-09-16 52.04315  419223717   1303.1937                 Aggregates
## 98    2022-09-16 64.00521  660046272   1534.8901                 Aggregates
## 99    2022-09-16 53.22891  441630149   1345.4233                 Aggregates
## 100   2022-09-16 45.21305  152752671   1312.0850                 Aggregates
## 101   2022-09-16 45.59429  156876454   1344.7552                 Aggregates
## 102   2022-09-16 45.97406  161156430   1361.7142                 Aggregates
## 103   2022-09-16 46.35240  165611760   1395.0444                 Aggregates
## 104   2022-09-16 57.54877  504604672   1492.3036                 Aggregates
## 105   2022-09-16 51.27613  398113044   1274.2504                 Aggregates
## 106   2022-09-16 50.82061  368440591   1274.4565                 Aggregates
## 107   2022-09-16 50.89761  378098393   1264.8553                 Aggregates
## 108   2022-09-16 51.04419  387977990   1265.1452                 Aggregates
## 109   2022-09-16 49.36633  214368393   1437.3183                 Aggregates
## 110   2022-09-16 51.30860  287524258   1386.6545                 Aggregates
## 111   2022-09-16 51.25176  296024639   1385.8630                 Aggregates
## 112   2022-09-16 49.09785  208193045   1464.8120                 Aggregates
## 113   2022-09-16 50.36346  240999134   1452.8100                 Aggregates
## 114   2022-09-16 49.62000  220740384   1434.8515                 Aggregates
## 115   2022-09-16 49.87069  227305945   1468.9210                 Aggregates
## 116   2022-09-16 50.11589  234058404   1488.3235                 Aggregates
## 117   2022-09-16 51.15411  304648010   1346.1004                 Aggregates
## 118   2022-09-16 51.04841  313394693   1309.9094                 Aggregates
## 119   2022-09-16 50.95726  322270073   1248.6235                 Aggregates
## 120   2022-09-16 54.79171  465581372   1443.0440                 Aggregates
## 121   2022-09-16 55.68234  478166911   1497.8568                 Aggregates
## 122   2022-09-16 56.60980  491173160   1521.5296                 Aggregates
## 123   2022-09-16 52.58585  430246635   1308.9207                 Aggregates
## 124   2022-09-16 53.96655  453404076   1390.6454                 Aggregates
## 125   2022-09-16 48.93371  221754806   1191.4801                 Aggregates
## 126   2022-09-16 51.28349  305520588   1455.9409                 Aggregates
## 127   2022-09-16 48.92551  227692136   1156.9333                 Aggregates
## 128   2022-09-16 48.90994  233807627   1148.3840                 Aggregates
## 129   2022-09-16 48.89988  240114179   1169.9849                 Aggregates
## 130   2022-09-16 48.90913  246613750   1187.3887                 Aggregates
## 131   2022-09-16 48.95534  253302310   1196.5717                 Aggregates
## 132   2022-09-16 49.05264  260170348   1181.5388                 Aggregates
## 133   2022-09-16 40.06641  112195950   1032.1586                 Aggregates
## 134   2022-09-16 40.48283  114781116   1023.7001                 Aggregates
## 135   2022-09-16 45.89748  151663853   1586.3064                 Aggregates
## 136   2022-09-16 39.66276  109701811   1167.0360                 Aggregates
## 137   2022-09-16 48.07938  178826553   1224.4947                 Aggregates
## 138   2022-09-16 48.28458  183785612   1208.3095                 Aggregates
## 139   2022-09-16 40.91422  117468741   1155.2404                 Aggregates
## 140   2022-09-16 47.83054  173991851   1192.3263                 Aggregates
## 141   2022-09-16 44.37397  139813171   1596.4613                 Aggregates
## 142   2022-09-16 44.89223  143615715   1627.6446                 Aggregates
## 143   2022-09-16 45.40268  147571063   1549.2626                 Aggregates
## 144   2022-09-16 48.92342  215976366   1237.7215                 Aggregates
## 145   2022-09-16 38.46375  102691339   1157.5209                 Aggregates
## 146   2022-09-16 38.86707  104953470   1193.6896                 Aggregates
## 147   2022-09-16 39.26484  107289875   1214.9844                 Aggregates
## 148   2022-09-16 52.46396  322741656   1532.6545                 Aggregates
## 149   2022-09-16 53.04950  331772330   1584.5557                 Aggregates
## 150   2022-09-16 53.61209  341050537   1638.1663                 Aggregates
## 151   2022-09-16 41.36512  120269044   1330.4162                 Aggregates
## 152   2022-09-16 49.21971  267214544   1193.3549                 Aggregates
## 153   2022-09-16 49.47514  274433894   1222.5315                 Aggregates
## 154   2022-09-16 49.81693  281842480   1308.2395                 Aggregates
## 155   2022-09-16 37.20538   96396419   1087.6399                 Aggregates
## 156   2022-09-16 37.63255   98407221   1085.1126                 Aggregates
## 157   2022-09-16 38.05261  100506960   1102.4994                 Aggregates
## 158   2022-09-16 57.38236  423769930   1839.1134                 Aggregates
## 159   2022-09-16 46.36610  155882270   1574.1754                 Aggregates
## 160   2022-09-16 46.79829  160223588   1425.3480                 Aggregates
## 161   2022-09-16 47.18862  164689764   1340.2363                 Aggregates
## 162   2022-09-16 47.53399  169279422   1218.7008                 Aggregates
## 163   2022-09-16 58.44595  458803476   1788.6472                 Aggregates
## 164   2022-09-16       NA  470898870   1810.9278                 Aggregates
## 165   2022-09-16 41.83721  123184308   1439.3126                 Aggregates
## 166   2022-09-16 42.32704  126218502   1448.9047                 Aggregates
## 167   2022-09-16 42.82908  129384954   1472.9998                 Aggregates
## 168   2022-09-16 43.33922  132699537   1583.4160                 Aggregates
## 169   2022-09-16 43.85504  136173544   1509.6255                 Aggregates
## 170   2022-09-16 56.97476  412551299   1846.3329                 Aggregates
## 171   2022-09-16 50.23943  289469530   1344.0622                 Aggregates
## 172   2022-09-16 50.73342  297353098   1413.2780                 Aggregates
## 173   2022-09-16 58.11572  446911598   1852.8617                 Aggregates
## 174   2022-09-16 51.86820  313985474   1492.8292                 Aggregates
## 175   2022-09-16 48.45413  188868567   1192.8205                 Aggregates
## 176   2022-09-16 57.76235  435229381   1843.5547                 Aggregates
## 177   2022-09-16 48.71923  199382783   1211.5714                 Aggregates
## 178   2022-09-16 54.14431  350556886   1704.6199                 Aggregates
## 179   2022-09-16 48.88593  210332267   1237.5945                 Aggregates
## 180   2022-09-16 48.59742  194070079   1217.0848                 Aggregates
## 181   2022-09-16 55.13894  370243017   1779.2668                 Aggregates
## 182   2022-09-16 48.81700  204803865   1256.9107                 Aggregates
## 183   2022-09-16 56.08827  390882979   1894.1827                 Aggregates
## 184   2022-09-16 54.65000  360285439   1739.0052                 Aggregates
## 185   2022-09-16 55.61899  380437896   1837.2858                 Aggregates
## 186   2022-09-16 56.54201  401586651   1894.3221                 Aggregates
## 187   2022-09-16 66.68900    2081695          NA      Europe & Central Asia
## 188   2022-09-16 67.23700    2187853          NA      Europe & Central Asia
## 189   2022-09-16 66.48700    2022272          NA      Europe & Central Asia
## 190   2022-09-16 76.22100    2927519   3432.1700      Europe & Central Asia
## 191   2022-09-16 66.93500    2135479          NA      Europe & Central Asia
## 192   2022-09-16 66.30400    1965598          NA      Europe & Central Asia
## 193   2022-09-16 67.58200    2243126          NA      Europe & Central Asia
## 194   2022-09-16 67.95300    2296752          NA      Europe & Central Asia
## 195   2022-09-16 62.28300    1608800          NA      Europe & Central Asia
## 196   2022-09-16 76.91400    2905195   3678.0467      Europe & Central Asia
## 197   2022-09-16 66.11000    1914573          NA      Europe & Central Asia
## 198   2022-09-16 75.91200    2947314   3298.4780      Europe & Central Asia
## 199   2022-09-16 70.20800    2671997   1740.5054      Europe & Central Asia
## 200   2022-09-16 76.56200    2913021   3577.1134      Europe & Central Asia
## 201   2022-09-16 70.63500    2784278   1818.3673      Europe & Central Asia
## 202   2022-09-16 77.25200    2900401   3736.3391      Europe & Central Asia
## 203   2022-09-16 77.55400    2895092   3780.6982      Europe & Central Asia
## 204   2022-09-16 77.81300    2889104   3855.7597      Europe & Central Asia
## 205   2022-09-16 78.02500    2880703   3952.8025      Europe & Central Asia
## 206   2022-09-16 78.19400    2876101   4090.3717      Europe & Central Asia
## 207   2022-09-16 78.33300    2873457   4249.8037      Europe & Central Asia
## 208   2022-09-16 78.45800    2866376   4431.5392      Europe & Central Asia
## 209   2022-09-16 78.57300    2854191   4543.3865      Europe & Central Asia
## 210   2022-09-16 71.80300    3266790   1163.4913      Europe & Central Asia
## 211   2022-09-16 71.80200    3247039   1086.4385      Europe & Central Asia
## 212   2022-09-16 71.86000    3227287   1197.5806      Europe & Central Asia
## 213   2022-09-16 71.99200    3207536   1305.0007      Europe & Central Asia
## 214   2022-09-16 72.20500    3187784   1488.0205      Europe & Central Asia
## 215   2022-09-16 70.87600    2843960   1799.8781      Europe & Central Asia
## 216   2022-09-16 71.13400    2904429   1740.3472      Europe & Central Asia
## 217   2022-09-16 73.20800    3128530   1603.6472      Europe & Central Asia
## 218   2022-09-16 73.58700    3108778   1821.8727      Europe & Central Asia
## 219   2022-09-16 63.30100    1659800          NA      Europe & Central Asia
## 220   2022-09-16 74.57900    3051010   2247.4975      Europe & Central Asia
## 221   2022-09-16 64.19000    1711319          NA      Europe & Central Asia
## 222   2022-09-16 64.91400    1762621          NA      Europe & Central Asia
## 223   2022-09-16 65.46300    1814135          NA      Europe & Central Asia
## 224   2022-09-16 65.85000    1864791          NA      Europe & Central Asia
## 225   2022-09-16 75.64600    2970017   3044.8958      Europe & Central Asia
## 226   2022-09-16 69.99100    2617832          NA      Europe & Central Asia
## 227   2022-09-16 70.41600    2726056   1804.0103      Europe & Central Asia
## 228   2022-09-16 71.60500    3022635   1798.0146      Europe & Central Asia
## 229   2022-09-16 72.49500    3168033   1633.5516      Europe & Central Asia
## 230   2022-09-16 72.83800    3148281   1464.2976      Europe & Central Asia
## 231   2022-09-16 71.38800    2964762   1735.2899      Europe & Central Asia
## 232   2022-09-16 69.44800    2513546          NA      Europe & Central Asia
## 233   2022-09-16 68.34300    2350124          NA      Europe & Central Asia
## 234   2022-09-16 68.73600    2404831          NA      Europe & Central Asia
## 235   2022-09-16 69.11000    2458526          NA      Europe & Central Asia
## 236   2022-09-16 71.86000    3227943   1808.6456      Europe & Central Asia
## 237   2022-09-16 78.68600    2837849   4410.4552      Europe & Central Asia
## 238   2022-09-16       NA    2811666   4831.8687      Europe & Central Asia
## 239   2022-09-16 71.84300    3142336   1691.5305      Europe & Central Asia
## 240   2022-09-16 73.95500    3089027   1960.8819      Europe & Central Asia
## 241   2022-09-16 71.83600    3286542   1606.2960      Europe & Central Asia
## 242   2022-09-16 71.76000    3083605   1748.5783      Europe & Central Asia
## 243   2022-09-16 75.42300    2992547   2851.3670      Europe & Central Asia
## 244   2022-09-16 69.74200    2566266          NA      Europe & Central Asia
## 245   2022-09-16 74.82800    3039616   2380.6440      Europe & Central Asia
## 246   2022-09-16 75.22800    3011487   2675.5079      Europe & Central Asia
## 247   2022-09-16 74.28800    3060173   2143.5263      Europe & Central Asia
## 248   2022-09-16 75.03900    3026939   2522.4487      Europe & Central Asia
## 249   2022-09-16 65.54500   23774287   3248.8812 Middle East & North Africa
## 250   2022-09-16 47.50900   11912800   1877.5130 Middle East & North Africa
## 251   2022-09-16 64.08700   22431507   3453.8216 Middle East & North Africa
## 252   2022-09-16 64.88400   23102386   3366.9389 Middle East & North Africa
## 253   2022-09-16 67.27000   26400468   3011.4999 Middle East & North Africa
## 254   2022-09-16 66.09700   24443472   3128.3375 Middle East & North Africa
## 255   2022-09-16 66.55400   25106192   3179.7733 Middle East & North Africa
## 256   2022-09-16 66.93800   25758872   3123.9977 Middle East & North Africa
## 257   2022-09-16 51.20100   15285992   2532.3928 Middle East & North Africa
## 258   2022-09-16 51.67600   15709831   2558.0302 Middle East & North Africa
## 259   2022-09-16 47.95800   12221675   1936.9280 Middle East & North Africa
## 260   2022-09-16 69.74500   30192750   2986.0557 Middle East & North Africa
## 261   2022-09-16 53.66100   17085799   2878.6100 Middle East & North Africa
## 262   2022-09-16 54.60900   17582899   2944.3211 Middle East & North Africa
## 263   2022-09-16 55.70000   18102266   3123.3766 Middle East & North Africa
## 264   2022-09-16 48.39400   12550880   2003.1929 Middle East & North Africa
## 265   2022-09-16 50.77300   14872253   2042.6634 Middle East & North Africa
## 266   2022-09-16 46.14100   11057864   2170.3127 Middle East & North Africa
## 267   2022-09-16 49.98200   14061724   2238.1427 Middle East & North Africa
## 268   2022-09-16 47.05600   11619828   1433.1006 Middle East & North Africa
## 269   2022-09-16 70.64000   31042238   3111.1762 Middle East & North Africa
## 270   2022-09-16 71.11600   31451513   3162.8115 Middle East & North Africa
## 271   2022-09-16 46.59900   11336336   1828.9728 Middle East & North Africa
## 272   2022-09-16 72.10100   32264159   3490.2232 Middle East & North Africa
## 273   2022-09-16 67.57500   27028330   2994.4913 Middle East & North Africa
## 274   2022-09-16 67.87700   27635517   2867.1959 Middle East & North Africa
## 275   2022-09-16 71.60500   31855110   3297.6128 Middle East & North Africa
## 276   2022-09-16 68.54000   28757788   2834.2652 Middle East & North Africa
## 277   2022-09-16 50.37200   14464992   2368.5747 Middle East & North Africa
## 278   2022-09-16 63.13000   21763578   3432.8064 Middle East & North Africa
## 279   2022-09-16 74.93800   35977451   3918.4864 Middle East & North Africa
## 280   2022-09-16 75.19900   36661438   3956.8958 Middle East & North Africa
## 281   2022-09-16 75.43600   37383899   4012.3615 Middle East & North Africa
## 282   2022-09-16 52.21800   16149018   2674.9704 Middle East & North Africa
## 283   2022-09-16 52.86600   16607706   2732.3244 Middle East & North Africa
## 284   2022-09-16 76.49900   41389174   4192.3377 Middle East & North Africa
## 285   2022-09-16 76.69300   42228415   4154.2190 Middle East & North Africa
## 286   2022-09-16 72.59400   32692153   3592.6453 Middle East & North Africa
## 287   2022-09-16 73.07200   33149720   3752.0962 Middle East & North Africa
## 288   2022-09-16 68.19400   28213777   2783.1550 Middle East & North Africa
## 289   2022-09-16 49.21000   13275020   1973.3474 Middle East & North Africa
## 290   2022-09-16 49.59700   13663581   2124.2186 Middle East & North Africa
## 291   2022-09-16 74.64400   35333882   3851.2138 Middle East & North Africa
## 292   2022-09-16 68.91900   29266415   2899.1932 Middle East & North Africa
## 293   2022-09-16 69.32300   29742980   2884.1202 Middle East & North Africa
## 294   2022-09-16 75.87800   38923688   4112.0760 Middle East & North Africa
## 295   2022-09-16 70.18300   30623406   3038.2729 Middle East & North Africa
## 296   2022-09-16 56.90900   18647801   3258.7312 Middle East & North Africa
## 297   2022-09-16 75.66100   38140135   4042.9236 Middle East & North Africa
## 298   2022-09-16 59.51900   19824297   3182.2599 Middle East & North Africa
## 299   2022-09-16 76.88000   43053054   4115.3955 Middle East & North Africa
## 300   2022-09-16 62.02900   21101875   3352.6997 Middle East & North Africa
## 301   2022-09-16 48.81100   12902626   1854.9538 Middle East & North Africa
## 302   2022-09-16 77.06300   43851043   3834.4390 Middle East & North Africa
## 303   2022-09-16 60.81300   20452901   3281.8609 Middle East & North Africa
## 304   2022-09-16 76.09000   39728020   4177.8895 Middle East & North Africa
## 305   2022-09-16 76.29800   40551398   4224.0373 Middle East & North Africa
## 306   2022-09-16 73.52100   33641007   3760.1554 Middle East & North Africa
## 307   2022-09-16 73.93600   34166976   3828.1485 Middle East & North Africa
## 308   2022-09-16 74.31100   34730604   3856.4077 Middle East & North Africa
## 309   2022-09-16 58.19800   19221659   3186.4372 Middle East & North Africa
## 310   2022-09-16       NA   44616626   3913.6529 Middle East & North Africa
## 311   2022-09-16       NA      26698          NA        East Asia & Pacific
## 312   2022-09-16       NA      25980          NA        East Asia & Pacific
## 313   2022-09-16       NA      58367  12586.7160        East Asia & Pacific
## 314   2022-09-16       NA      28564          NA        East Asia & Pacific
## 315   2022-09-16       NA      29103          NA        East Asia & Pacific
## 316   2022-09-16       NA      27982          NA        East Asia & Pacific
## 317   2022-09-16       NA      25235          NA        East Asia & Pacific
## 318   2022-09-16       NA      24473          NA        East Asia & Pacific
## 319   2022-09-16       NA      59109  12202.7374        East Asia & Pacific
## 320   2022-09-16       NA      27362          NA        East Asia & Pacific
## 321   2022-09-16       NA      56675  12092.2765        East Asia & Pacific
## 322   2022-09-16       NA      34969          NA        East Asia & Pacific
## 323   2022-09-16       NA      56084  12256.3429        East Asia & Pacific
## 324   2022-09-16       NA      55197  11839.0105        East Asia & Pacific
## 325   2022-09-16       NA      57490  12439.1497        East Asia & Pacific
## 326   2022-09-16       NA      55717  11507.2257        East Asia & Pacific
## 327   2022-09-16       NA      55791  11694.5454        East Asia & Pacific
## 328   2022-09-16       NA      55755  12328.6653        East Asia & Pacific
## 329   2022-09-16       NA      55669  11812.4591        East Asia & Pacific
## 330   2022-09-16       NA      55617  11066.0602        East Asia & Pacific
## 331   2022-09-16       NA      48682          NA        East Asia & Pacific
## 332   2022-09-16       NA      49900          NA        East Asia & Pacific
## 333   2022-09-16       NA      51025          NA        East Asia & Pacific
## 334   2022-09-16       NA      52099          NA        East Asia & Pacific
## 335   2022-09-16       NA      53158          NA        East Asia & Pacific
## 336   2022-09-16       NA      36413          NA        East Asia & Pacific
## 337   2022-09-16       NA      37946          NA        East Asia & Pacific
## 338   2022-09-16       NA      39521          NA        East Asia & Pacific
## 339   2022-09-16       NA      41114          NA        East Asia & Pacific
## 340   2022-09-16       NA      42741          NA        East Asia & Pacific
## 341   2022-09-16       NA      55806  12059.6352        East Asia & Pacific
## 342   2022-09-16       NA      55739  11871.3595        East Asia & Pacific
## 343   2022-09-16       NA      20127          NA        East Asia & Pacific
## 344   2022-09-16       NA      20605          NA        East Asia & Pacific
## 345   2022-09-16       NA      21246          NA        East Asia & Pacific
## 346   2022-09-16       NA      22029          NA        East Asia & Pacific
## 347   2022-09-16       NA      22850          NA        East Asia & Pacific
## 348   2022-09-16       NA      23675          NA        East Asia & Pacific
## 349   2022-09-16       NA      33697          NA        East Asia & Pacific
## 350   2022-09-16       NA      54209          NA        East Asia & Pacific
## 351   2022-09-16       NA      55227          NA        East Asia & Pacific
## 352   2022-09-16       NA      56180          NA        East Asia & Pacific
## 353   2022-09-16       NA      57049          NA        East Asia & Pacific
## 354   2022-09-16       NA      29595          NA        East Asia & Pacific
## 355   2022-09-16       NA      30045          NA        East Asia & Pacific
## 356   2022-09-16       NA      30455          NA        East Asia & Pacific
## 357   2022-09-16       NA      30834          NA        East Asia & Pacific
## 358   2022-09-16       NA      55461  11393.6057        East Asia & Pacific
## 359   2022-09-16       NA      55312  11368.5696        East Asia & Pacific
## 360   2022-09-16       NA      32648          NA        East Asia & Pacific
## 361   2022-09-16       NA      55103          NA        East Asia & Pacific
## 362   2022-09-16       NA      47351          NA        East Asia & Pacific
## 363   2022-09-16       NA      59495  12641.6679        East Asia & Pacific
## 364   2022-09-16       NA      44346          NA        East Asia & Pacific
## 365   2022-09-16       NA      45894          NA        East Asia & Pacific
## 366   2022-09-16       NA      58496          NA        East Asia & Pacific
## 367   2022-09-16       NA      59077  12609.3685        East Asia & Pacific
## 368   2022-09-16       NA      59684  12653.2818        East Asia & Pacific
## 369   2022-09-16       NA      59557  12628.5077        East Asia & Pacific
## 370   2022-09-16       NA      31842          NA        East Asia & Pacific
## 371   2022-09-16       NA      57816          NA        East Asia & Pacific
## 372   2022-09-16       NA      31262          NA        East Asia & Pacific
## 373   2022-09-16       NA      52452  30091.3687      Europe & Central Asia
## 374   2022-09-16       NA      50433  29854.9187      Europe & Central Asia
## 375   2022-09-16       NA      19646          NA      Europe & Central Asia
## 376   2022-09-16       NA      54508  30051.2970      Europe & Central Asia
## 377   2022-09-16       NA      56666  29642.8291      Europe & Central Asia
## 378   2022-09-16       NA      58882  28792.3124      Europe & Central Asia
## 379   2022-09-16       NA      14378          NA      Europe & Central Asia
## 380   2022-09-16       NA      15379          NA      Europe & Central Asia
## 381   2022-09-16       NA      16407          NA      Europe & Central Asia
## 382   2022-09-16       NA      28232  37123.4096      Europe & Central Asia
## 383   2022-09-16       NA      18542          NA      Europe & Central Asia
## 384   2022-09-16       NA      34825  34462.6295      Europe & Central Asia
## 385   2022-09-16       NA      36063  34014.6234      Europe & Central Asia
## 386   2022-09-16       NA      17466          NA      Europe & Central Asia
## 387   2022-09-16       NA      46520  29178.6586      Europe & Central Asia
## 388   2022-09-16       NA      24275  35391.2140      Europe & Central Asia
## 389   2022-09-16       NA      13410          NA      Europe & Central Asia
## 390   2022-09-16       NA      30705  36246.8271      Europe & Central Asia
## 391   2022-09-16       NA      67344  35975.0224      Europe & Central Asia
## 392   2022-09-16       NA      29515  37504.8905      Europe & Central Asia
## 393   2022-09-16       NA      73180  37620.3548      Europe & Central Asia
## 394   2022-09-16       NA      60974  27517.6580      Europe & Central Asia
## 395   2022-09-16       NA      62676  27408.3889      Europe & Central Asia
## 396   2022-09-16       NA      70048  36158.7299      Europe & Central Asia
## 397   2022-09-16       NA      64363  28701.2086      Europe & Central Asia
## 398   2022-09-16       NA      25571  35159.6061      Europe & Central Asia
## 399   2022-09-16       NA      26885  36166.5570      Europe & Central Asia
## 400   2022-09-16       NA      65390  34267.7182      Europe & Central Asia
## 401   2022-09-16       NA      48459  29564.9384      Europe & Central Asia
## 402   2022-09-16       NA      82427  33750.1908      Europe & Central Asia
## 403   2022-09-16       NA      76250  39043.1137      Europe & Central Asia
## 404   2022-09-16       NA      31782  36175.4646      Europe & Central Asia
## 405   2022-09-16       NA      32769  36081.8008      Europe & Central Asia
## 406   2022-09-16       NA      33744  35551.8767      Europe & Central Asia
## 407   2022-09-16       NA      23053          NA      Europe & Central Asia
## 408   2022-09-16       NA      78871  39783.0866      Europe & Central Asia
## 409   2022-09-16       NA      63860  27641.9961      Europe & Central Asia
## 410   2022-09-16       NA      21886          NA      Europe & Central Asia
## 411   2022-09-16       NA      64368  33625.3772      Europe & Central Asia
## 412   2022-09-16       NA      84461  35362.8369      Europe & Central Asia
## 413   2022-09-16       NA      84454  34667.3089      Europe & Central Asia
## 414   2022-09-16       NA      83748  34956.7349      Europe & Central Asia
## 415   2022-09-16       NA      79213  34722.0298      Europe & Central Asia
## 416   2022-09-16       NA      76997  37707.8332      Europe & Central Asia
## 417   2022-09-16       NA      77008  38301.4504      Europe & Central Asia
## 418   2022-09-16       NA      80770  33220.6938      Europe & Central Asia
## 419   2022-09-16       NA      39115  31709.4219      Europe & Central Asia
## 420   2022-09-16       NA      40854  30897.0741      Europe & Central Asia
## 421   2022-09-16       NA      42706  30084.6863      Europe & Central Asia
## 422   2022-09-16       NA      20760          NA      Europe & Central Asia
## 423   2022-09-16       NA      64140  32416.1429      Europe & Central Asia
## 424   2022-09-16       NA      80995  40602.6987      Europe & Central Asia
## 425   2022-09-16       NA      77993  35770.9187      Europe & Central Asia
## 426   2022-09-16       NA      44593  29480.4634      Europe & Central Asia
## 427   2022-09-16       NA      64318  31325.6417      Europe & Central Asia
## 428   2022-09-16       NA      77354  37640.1263      Europe & Central Asia
## 429   2022-09-16       NA      82682  40392.0317      Europe & Central Asia
## 430   2022-09-16       NA      77295  37432.9112      Europe & Central Asia
## 431   2022-09-16       NA      77146  39003.5392      Europe & Central Asia
## 432   2022-09-16       NA      77265  34588.0537      Europe & Central Asia
## 433   2022-09-16       NA      37498  32669.5914      Europe & Central Asia
## 434   2022-09-16       NA      83860  37610.7102      Europe & Central Asia
## 435   2022-09-16 38.76000    5734995          NA         Sub-Saharan Africa
## 436   2022-09-16 61.14700   31825299   2612.3470         Sub-Saharan Africa
## 437   2022-09-16 39.10200    5770573          NA         Sub-Saharan Africa
## 438   2022-09-16 49.26300   18758138   2167.6472         Sub-Saharan Africa
## 439   2022-09-16 39.45400    5781305          NA         Sub-Saharan Africa
## 440   2022-09-16 38.43000    5679409          NA         Sub-Saharan Africa
## 441   2022-09-16 48.44000   18121477   2022.3551         Sub-Saharan Africa
## 442   2022-09-16 59.92500   28842482   2945.9681         Sub-Saharan Africa
## 443   2022-09-16 54.31100   22514275   2962.4468         Sub-Saharan Africa
## 444   2022-09-16 39.81300    5774440          NA         Sub-Saharan Africa
## 445   2022-09-16 47.70200   17519418   2031.1233         Sub-Saharan Africa
## 446   2022-09-16 52.17700   20905360   2845.4064         Sub-Saharan Africa
## 447   2022-09-16 60.37900   29816769   2845.4317         Sub-Saharan Africa
## 448   2022-09-16 50.16500   19433604   2406.7783         Sub-Saharan Africa
## 449   2022-09-16 51.14300   20149905   2589.3217         Sub-Saharan Africa
## 450   2022-09-16 56.33000   24220660   2987.7679         Sub-Saharan Africa
## 451   2022-09-16 53.24300   21695636   3048.0156         Sub-Saharan Africa
## 452   2022-09-16 43.93100    8058112          NA         Sub-Saharan Africa
## 453   2022-09-16 47.05900   16945753   1847.4202         Sub-Saharan Africa
## 454   2022-09-16 45.10700    9961993   2428.1386         Sub-Saharan Africa
## 455   2022-09-16 45.21300   10320116   2411.8512         Sub-Saharan Africa
## 456   2022-09-16 45.28300   10689247   2423.6323         Sub-Saharan Africa
## 457   2022-09-16 61.48700   32866268   2390.4781         Sub-Saharan Africa
## 458   2022-09-16       NA   33933611   2331.4954         Sub-Saharan Africa
## 459   2022-09-16 43.36700    7533814          NA         Sub-Saharan Africa
## 460   2022-09-16 43.66000    7790774          NA         Sub-Saharan Africa
## 461   2022-09-16 45.23000   12657361   1995.2414         Sub-Saharan Africa
## 462   2022-09-16 55.35000   23356247   2994.4380         Sub-Saharan Africa
## 463   2022-09-16 45.20100   13503753   1440.6904         Sub-Saharan Africa
## 464   2022-09-16 57.23600   25107925   3128.3247         Sub-Saharan Africa
## 465   2022-09-16 44.79900    9278104   2376.3710         Sub-Saharan Africa
## 466   2022-09-16 44.96600    9614756   2430.7545         Sub-Saharan Africa
## 467   2022-09-16 37.52400    5454938          NA         Sub-Saharan Africa
## 468   2022-09-16 37.81100    5531451          NA         Sub-Saharan Africa
## 469   2022-09-16 38.11300    5608499          NA         Sub-Saharan Africa
## 470   2022-09-16 42.37400    6761623          NA         Sub-Saharan Africa
## 471   2022-09-16 60.78200   30809787   2717.4741         Sub-Saharan Africa
## 472   2022-09-16 43.05300    7279630          NA         Sub-Saharan Africa
## 473   2022-09-16 45.30600   11848385   2241.4077         Sub-Saharan Africa
## 474   2022-09-16 45.27100   12248901   2189.6118         Sub-Saharan Africa
## 475   2022-09-16 58.05400   26015786   3168.6053         Sub-Saharan Africa
## 476   2022-09-16 44.17800    8341290   2653.4729         Sub-Saharan Africa
## 477   2022-09-16 40.17800    5771973          NA         Sub-Saharan Africa
## 478   2022-09-16 40.54600    5803677          NA         Sub-Saharan Africa
## 479   2022-09-16 46.52200   16395477   1832.3557         Sub-Saharan Africa
## 480   2022-09-16 58.77600   26941773   3207.1781         Sub-Saharan Africa
## 481   2022-09-16 59.39800   27884380   3127.8906         Sub-Saharan Africa
## 482   2022-09-16 42.01600    6497283          NA         Sub-Saharan Africa
## 483   2022-09-16 44.61100    8952971   2363.4074         Sub-Saharan Africa
## 484   2022-09-16 45.31700   11068051   2484.1414         Sub-Saharan Africa
## 485   2022-09-16 45.32400   11454784   2401.2716         Sub-Saharan Africa
## 486   2022-09-16 44.40400    8640478   2448.8828         Sub-Saharan Africa
## 487   2022-09-16 46.09300   15866871   1837.2788         Sub-Saharan Africa
## 488   2022-09-16 45.35000   14400722   1764.0233         Sub-Saharan Africa
## 489   2022-09-16 45.51900   14871572   1832.4296         Sub-Saharan Africa
## 490   2022-09-16 45.76300   15359600   1857.4376         Sub-Saharan Africa
## 491   2022-09-16 45.20100   13075044   1468.2628         Sub-Saharan Africa
## 492   2022-09-16 45.24600   13945205   1604.3461         Sub-Saharan Africa
## 493   2022-09-16 42.72100    7023994          NA         Sub-Saharan Africa
## 494   2022-09-16 41.28200    6041239          NA         Sub-Saharan Africa
## 495   2022-09-16 41.65000    6248965          NA         Sub-Saharan Africa
## 496   2022-09-16 40.91400    5890360          NA         Sub-Saharan Africa
## 497   2022-09-16 72.00600      64459  11908.4932  Latin America & Caribbean
## 498   2022-09-16 70.72800      61713  10549.2467  Latin America & Caribbean
## 499   2022-09-16 71.76500      63363  11975.7403  Latin America & Caribbean
## 500   2022-09-16 63.04900      55849          NA  Latin America & Caribbean
## 501   2022-09-16 67.53300      62162   5570.4320  Latin America & Caribbean
## 502   2022-09-16 71.26700      62007  11626.7788  Latin America & Caribbean
## 503   2022-09-16 71.52000      62533  11876.1994  Latin America & Caribbean
## 504   2022-09-16 70.44000      61754   9887.0879  Latin America & Caribbean
## 505   2022-09-16 65.36300      62523          NA  Latin America & Caribbean
## 506   2022-09-16 67.83700      62038   5826.2412  Latin America & Caribbean
## 507   2022-09-16 61.96800      54132          NA  Latin America & Caribbean
## 508   2022-09-16 62.52300      55005          NA  Latin America & Caribbean
## 509   2022-09-16 66.28000      64134          NA  Latin America & Caribbean
## 510   2022-09-16       NA      98728  13872.5822  Latin America & Caribbean
## 511   2022-09-16 71.00400      61758  11091.1203  Latin America & Caribbean
## 512   2022-09-16 73.46500      73219  13260.4943  Latin America & Caribbean
## 513   2022-09-16 73.70500      74674  13484.1865  Latin America & Caribbean
## 514   2022-09-16 73.94000      76007  14069.5148  Latin America & Caribbean
## 515   2022-09-16 74.17100      77212  13220.0448  Latin America & Caribbean
## 516   2022-09-16 74.39500      78298  13170.6260  Latin America & Caribbean
## 517   2022-09-16 72.24700      65777  12286.0333  Latin America & Caribbean
## 518   2022-09-16 72.48900      67201  12828.6104  Latin America & Caribbean
## 519   2022-09-16 65.61600      63553          NA  Latin America & Caribbean
## 520   2022-09-16 65.84700      64184          NA  Latin America & Caribbean
## 521   2022-09-16 66.06600      64354          NA  Latin America & Caribbean
## 522   2022-09-16 72.97700      70176  12525.1679  Latin America & Caribbean
## 523   2022-09-16 73.22200      71707  12928.4418  Latin America & Caribbean
## 524   2022-09-16 66.49800      63649          NA  Latin America & Caribbean
## 525   2022-09-16 66.72700      63108          NA  Latin America & Caribbean
## 526   2022-09-16 66.97500      62671          NA  Latin America & Caribbean
## 527   2022-09-16 67.24400      62353          NA  Latin America & Caribbean
## 528   2022-09-16 76.21800      91510  13554.4014  Latin America & Caribbean
## 529   2022-09-16 76.34900      92562  13908.9916  Latin America & Caribbean
## 530   2022-09-16 63.54000      56701          NA  Latin America & Caribbean
## 531   2022-09-16 63.99200      57641          NA  Latin America & Caribbean
## 532   2022-09-16 64.40100      58699          NA  Latin America & Caribbean
## 533   2022-09-16 64.76200      59912          NA  Latin America & Caribbean
## 534   2022-09-16 65.08100      61240          NA  Latin America & Caribbean
## 535   2022-09-16 75.53500      85394  17771.1932  Latin America & Caribbean
## 536   2022-09-16 75.68300      86743  15401.9686  Latin America & Caribbean
## 537   2022-09-16 77.14600      97928  13285.6447  Latin America & Caribbean
## 538   2022-09-16 76.08700      90407  13802.7075  Latin America & Caribbean
## 539   2022-09-16 68.15400      61948   6306.1351  Latin America & Caribbean
## 540   2022-09-16 75.82300      88030  13986.8409  Latin America & Caribbean
## 541   2022-09-16 75.95600      89250  13525.4449  Latin America & Caribbean
## 542   2022-09-16 69.15600      61780   7094.3045  Latin America & Caribbean
## 543   2022-09-16 69.49100      61779   7474.9651  Latin America & Caribbean
## 544   2022-09-16 68.48200      61861   6830.3986  Latin America & Caribbean
## 545   2022-09-16 68.81800      61789   7099.2353  Latin America & Caribbean
## 546   2022-09-16 74.82100      80347  14399.8207  Latin America & Caribbean
## 547   2022-09-16 75.01900      81462  15122.1856  Latin America & Caribbean
## 548   2022-09-16 69.82000      61784   8234.1286  Latin America & Caribbean
## 549   2022-09-16 70.13700      61785   8863.3849  Latin America & Caribbean
## 550   2022-09-16 72.73200      68672  12006.5186  Latin America & Caribbean
## 551   2022-09-16 77.01600      97115  16786.4474  Latin America & Caribbean
## 552   2022-09-16 75.20400      82715  16785.7470  Latin America & Caribbean
## 553   2022-09-16 74.61300      79311  13792.5009  Latin America & Caribbean
## 554   2022-09-16 76.48300      93571  14285.3298  Latin America & Caribbean
## 555   2022-09-16 76.61700      94520  14919.2060  Latin America & Caribbean
## 556   2022-09-16 75.37600      84029  18062.4657  Latin America & Caribbean
## 557   2022-09-16 76.88500      96282  16146.5927  Latin America & Caribbean
## 558   2022-09-16 76.75200      95425  15242.3731  Latin America & Caribbean
## 559   2022-09-16 48.32043  100034191          NA                 Aggregates
## 560   2022-09-16 68.61051  301113869   5037.7877                 Aggregates
## 561   2022-09-16 68.88619  307862846   5363.6378                 Aggregates
## 562   2022-09-16 47.73178   97334438          NA                 Aggregates
## 563   2022-09-16 50.07295  108758634          NA                 Aggregates
## 564   2022-09-16 69.94217  338395936   6029.5848                 Aggregates
## 565   2022-09-16 48.91002  102832792          NA                 Aggregates
## 566   2022-09-16 47.14162   94724540          NA                 Aggregates
## 567   2022-09-16 46.54691   92197715          NA                 Aggregates
## 568   2022-09-16 71.43655  404042892   6431.6762                 Aggregates
## 569   2022-09-16 71.80708  419851989   6414.5397                 Aggregates
## 570   2022-09-16 49.49648  105736428          NA                 Aggregates
## 571   2022-09-16 69.43946  322452764   5732.2290                 Aggregates
## 572   2022-09-16 69.70156  330290752   5852.0977                 Aggregates
## 573   2022-09-16 57.13390  154111160   4585.6763                 Aggregates
## 574   2022-09-16 69.16468  314965776   5532.0994                 Aggregates
## 575   2022-09-16 70.34992  354890097   6047.6162                 Aggregates
## 576   2022-09-16 71.24957  396028301   6359.9006                 Aggregates
## 577   2022-09-16 62.31412  197338140   3996.6258                 Aggregates
## 578   2022-09-16 62.90135  203084958   3880.4220                 Aggregates
## 579   2022-09-16 71.98971  427870273   6394.1795                 Aggregates
## 580   2022-09-16 72.17076  436080728   5956.8778                 Aggregates
## 581   2022-09-16       NA  444517783   6050.1186                 Aggregates
## 582   2022-09-16 64.73634  228731671   4274.2966                 Aggregates
## 583   2022-09-16 70.15756  346629179   5910.7934                 Aggregates
## 584   2022-09-16 66.19610  253107302   4461.2518                 Aggregates
## 585   2022-09-16 70.52876  363156846   6101.6453                 Aggregates
## 586   2022-09-16 70.70380  371437642   6268.3527                 Aggregates
## 587   2022-09-16 70.88222  379696477   6289.2469                 Aggregates
## 588   2022-09-16 61.00376  186035280   4140.6767                 Aggregates
## 589   2022-09-16 61.67682  191650328   3938.2793                 Aggregates
## 590   2022-09-16 68.34025  294665202   4908.9391                 Aggregates
## 591   2022-09-16 54.01586  132161302          NA                 Aggregates
## 592   2022-09-16 71.62267  411942825   6386.7222                 Aggregates
## 593   2022-09-16 55.27799  140040580   4057.2454                 Aggregates
## 594   2022-09-16 55.90961  144453278   4552.6175                 Aggregates
## 595   2022-09-16 56.52808  149161836   4765.6558                 Aggregates
## 596   2022-09-16 51.72202  118437193          NA                 Aggregates
## 597   2022-09-16 57.73486  159218539   4926.0734                 Aggregates
## 598   2022-09-16 50.63441  111899335          NA                 Aggregates
## 599   2022-09-16 51.18210  115136161          NA                 Aggregates
## 600   2022-09-16 68.07252  288432153   4981.0741                 Aggregates
## 601   2022-09-16 52.26421  121785630          NA                 Aggregates
## 602   2022-09-16 71.06427  387899835   6300.8314                 Aggregates
## 603   2022-09-16 53.40689  128598743          NA                 Aggregates
## 604   2022-09-16 64.35158  222653371   4287.5620                 Aggregates
## 605   2022-09-16 59.63600  175061794   4631.5414                 Aggregates
## 606   2022-09-16 63.42969  208889669   3992.0174                 Aggregates
## 607   2022-09-16 63.89898  214753965   3966.7263                 Aggregates
## 608   2022-09-16 58.97736  169698978   5210.5421                 Aggregates
## 609   2022-09-16 66.55410  259000937   4565.3656                 Aggregates
## 610   2022-09-16 60.31628  180505967   4212.7227                 Aggregates
## 611   2022-09-16 58.34502  164420771   5201.4690                 Aggregates
## 612   2022-09-16 67.80059  282344141   5002.8173                 Aggregates
## 613   2022-09-16 52.82293  125164720          NA                 Aggregates
## 614   2022-09-16 66.89714  264822167   4676.4500                 Aggregates
## 615   2022-09-16 67.51769  276393809   4796.7989                 Aggregates
## 616   2022-09-16 65.04385  232956364   4414.6321                 Aggregates
## 617   2022-09-16 54.64287  135952270          NA                 Aggregates
## 618   2022-09-16 65.78565  245449429   4464.8854                 Aggregates
## 619   2022-09-16 67.21809  270575777   4812.0308                 Aggregates
## 620   2022-09-16 65.41491  239243294   4434.6500                 Aggregates
## 621   2022-09-16 70.03300   28794550   9407.8746  Latin America & Caribbean
## 622   2022-09-16 71.00100   31184411   9517.1086  Latin America & Caribbean
## 623   2022-09-16 65.05500   20481781   7362.5341  Latin America & Caribbean
## 624   2022-09-16 65.98900   23168268   8429.8689  Latin America & Caribbean
## 625   2022-09-16 70.82500   30698964   9412.9948  Latin America & Caribbean
## 626   2022-09-16 69.77700   28338514   9630.1152  Latin America & Caribbean
## 627   2022-09-16 67.07800   24653172   9614.2379  Latin America & Caribbean
## 628   2022-09-16 70.46600   29737097   9655.1836  Latin America & Caribbean
## 629   2022-09-16 70.65000   30216284   9009.0017  Latin America & Caribbean
## 630   2022-09-16 65.79600   22828872   8161.6021  Latin America & Caribbean
## 631   2022-09-16 67.38300   25056475   9725.4670  Latin America & Caribbean
## 632   2022-09-16 65.51800   22159644   8202.1125  Latin America & Caribbean
## 633   2022-09-16 72.65100   34828168  10003.0917  Latin America & Caribbean
## 634   2022-09-16 72.84300   35246376  10430.6825  Latin America & Caribbean
## 635   2022-09-16       NA   45808747  12390.8087  Latin America & Caribbean
## 636   2022-09-16 70.26200   29262049   9660.1921  Latin America & Caribbean
## 637   2022-09-16 73.39600   36467218  10935.6446  Latin America & Caribbean
## 638   2022-09-16 71.18600   31668939   9269.3558  Latin America & Caribbean
## 639   2022-09-16 73.02900   35657438  11146.7210  Latin America & Caribbean
## 640   2022-09-16 73.21300   36063451  11445.5649  Latin America & Caribbean
## 641   2022-09-16 71.81300   33079002   8769.7504  Latin America & Caribbean
## 642   2022-09-16 65.64000   22494031   8026.8762  Latin America & Caribbean
## 643   2022-09-16 72.24600   33970103   9974.0044  Latin America & Caribbean
## 644   2022-09-16 72.45300   34402669  10423.3789  Latin America & Caribbean
## 645   2022-09-16 74.78700   39684303  12919.2354  Latin America & Caribbean
## 646   2022-09-16 66.21900   23517613   9108.4969  Latin America & Caribbean
## 647   2022-09-16 66.48300   23880564   9243.2566  Latin America & Caribbean
## 648   2022-09-16 66.77400   24259564   9613.6769  Latin America & Caribbean
## 649   2022-09-16 75.59800   41733271  13895.6337  Latin America & Caribbean
## 650   2022-09-16 75.75600   42202935  14071.5087  Latin America & Caribbean
## 651   2022-09-16 73.57600   36870796  10730.6082  Latin America & Caribbean
## 652   2022-09-16 71.38400   32148137   8477.6729  Latin America & Caribbean
## 653   2022-09-16 71.59400   32618648   8149.2406  Latin America & Caribbean
## 654   2022-09-16 65.34800   21488916   6945.9571  Latin America & Caribbean
## 655   2022-09-16 65.42600   21824427   7532.0045  Latin America & Caribbean
## 656   2022-09-16 74.45100   38892924  11192.1796  Latin America & Caribbean
## 657   2022-09-16 74.62000   39289876  11970.6554  Latin America & Caribbean
## 658   2022-09-16 76.81300   45376763  11344.4057  Latin America & Caribbean
## 659   2022-09-16 75.27800   40788453  13551.3392  Latin America & Caribbean
## 660   2022-09-16 67.68600   25462305  10100.0685  Latin America & Caribbean
## 661   2022-09-16 74.95200   40080159  13310.6237  Latin America & Caribbean
## 662   2022-09-16 75.11600   40482786  12398.2836  Latin America & Caribbean
## 663   2022-09-16 68.58500   26661397  10103.6274  Latin America & Caribbean
## 664   2022-09-16 68.89100   27061041   9505.8562  Latin America & Caribbean
## 665   2022-09-16 65.17600   20817270   7637.0667  Latin America & Caribbean
## 666   2022-09-16 65.26900   21153042   7451.8034  Latin America & Caribbean
## 667   2022-09-16 76.66700   44938712  12712.9707  Latin America & Caribbean
## 668   2022-09-16 73.93200   37681743   8943.3080  Latin America & Caribbean
## 669   2022-09-16 69.19700   27471046  10321.2391  Latin America & Caribbean
## 670   2022-09-16 69.49600   27896532  10318.1830  Latin America & Caribbean
## 671   2022-09-16 73.75500   37275644  10146.1068  Latin America & Caribbean
## 672   2022-09-16 67.98500   25865775   9939.6966  Latin America & Caribbean
## 673   2022-09-16 75.43900   41261490  14200.2699  Latin America & Caribbean
## 674   2022-09-16 75.91300   42669500  13567.9484  Latin America & Caribbean
## 675   2022-09-16 72.03200   33529320   9338.6995  Latin America & Caribbean
## 676   2022-09-16 76.52000   44494502  13105.3972  Latin America & Caribbean
## 677   2022-09-16 74.10700   38087866   9629.8441  Latin America & Caribbean
## 678   2022-09-16 74.28000   38491970  10389.1513  Latin America & Caribbean
## 679   2022-09-16 76.37200   44044811  13595.0374  Latin America & Caribbean
## 680   2022-09-16 68.28300   26264681   9591.1720  Latin America & Caribbean
## 681   2022-09-16 76.22100   43590368  13360.2118  Latin America & Caribbean
## 682   2022-09-16 76.06800   43131966  13789.0604  Latin America & Caribbean
## 683   2022-09-16 67.27700    2077584          NA      Europe & Central Asia
## 684   2022-09-16 71.40900    3069597   1289.8843      Europe & Central Asia
## 685   2022-09-16 71.80000    3050686   1422.4767      Europe & Central Asia
## 686   2022-09-16 67.71600    2145004          NA      Europe & Central Asia
## 687   2022-09-16 66.83800    2009524          NA      Europe & Central Asia
## 688   2022-09-16 68.58800    2276038          NA      Europe & Central Asia
## 689   2022-09-16 74.05600    2897593   3406.5361      Europe & Central Asia
## 690   2022-09-16 74.46700    2925559   3607.2893      Europe & Central Asia
## 691   2022-09-16 68.15300    2211316          NA      Europe & Central Asia
## 692   2022-09-16 66.40300    1941498          NA      Europe & Central Asia
## 693   2022-09-16 72.51300    3000715   2062.2032      Europe & Central Asia
## 694   2022-09-16 72.62600    2981262   2364.1759      Europe & Central Asia
## 695   2022-09-16 72.11200    3033976   1619.1122      Europe & Central Asia
## 696   2022-09-16 72.34800    3017938   1855.5968      Europe & Central Asia
## 697   2022-09-16 73.82000    2884239   3312.9800      Europe & Central Asia
## 698   2022-09-16 69.20500    3392264          NA      Europe & Central Asia
## 699   2022-09-16 72.71600    2958301   2697.0190      Europe & Central Asia
## 700   2022-09-16 74.64000    2936147   3601.4697      Europe & Central Asia
## 701   2022-09-16 74.79700    2944789   3860.2181      Europe & Central Asia
## 702   2022-09-16 74.94500    2951741   4051.3850      Europe & Central Asia
## 703   2022-09-16 68.73200    3451947          NA      Europe & Central Asia
## 704   2022-09-16 75.22400    2963234   4021.0463      Europe & Central Asia
## 705   2022-09-16 72.81500    2932615   3093.3693      Europe & Central Asia
## 706   2022-09-16 72.94600    2907615   3335.2442      Europe & Central Asia
## 707   2022-09-16 75.08700    2957728   4350.4662      Europe & Central Asia
## 708   2022-09-16 73.33100    2877314   2958.8390      Europe & Central Asia
## 709   2022-09-16 70.15000    3285593          NA      Europe & Central Asia
## 710   2022-09-16 69.69800    3335935          NA      Europe & Central Asia
## 711   2022-09-16 70.94400    3089020   1210.3624      Europe & Central Asia
## 712   2022-09-16 65.97200    1874119          NA      Europe & Central Asia
## 713   2022-09-16 74.27300    2912403   3511.2251      Europe & Central Asia
## 714   2022-09-16 70.78300    2832752          NA      Europe & Central Asia
## 715   2022-09-16 70.78300    2889583          NA      Europe & Central Asia
## 716   2022-09-16 70.79800    2944375          NA      Europe & Central Asia
## 717   2022-09-16 70.83800    2997419          NA      Europe & Central Asia
## 718   2022-09-16 70.89700    3049107          NA      Europe & Central Asia
## 719   2022-09-16 69.01600    2339133          NA      Europe & Central Asia
## 720   2022-09-16 73.11800    2888094   2884.3395      Europe & Central Asia
## 721   2022-09-16 69.80900    2462938          NA      Europe & Central Asia
## 722   2022-09-16 70.14400    2525067          NA      Europe & Central Asia
## 723   2022-09-16 73.57200    2876536   3098.7423      Europe & Central Asia
## 724   2022-09-16 70.60500    2650484          NA      Europe & Central Asia
## 725   2022-09-16 70.72300    2712780          NA      Europe & Central Asia
## 726   2022-09-16 67.87000    3505249   1471.0862      Europe & Central Asia
## 727   2022-09-16 68.33200    3504667          NA      Europe & Central Asia
## 728   2022-09-16 68.03800    3536473          NA      Europe & Central Asia
## 729   2022-09-16 67.87900    3538164   1650.5106      Europe & Central Asia
## 730   2022-09-16 70.77600    3193696          NA      Europe & Central Asia
## 731   2022-09-16 70.51900    3238592          NA      Europe & Central Asia
## 732   2022-09-16 70.93700    3099759          NA      Europe & Central Asia
## 733   2022-09-16 69.42700    2401142          NA      Europe & Central Asia
## 734   2022-09-16 70.43400    3108691   1164.2822      Europe & Central Asia
## 735   2022-09-16 68.53800    3283664    878.5302      Europe & Central Asia
## 736   2022-09-16 69.40400    3168213   1030.4639      Europe & Central Asia
## 737   2022-09-16 69.91200    3133081   1076.6250      Europe & Central Asia
## 738   2022-09-16       NA    2968128   4243.2379      Europe & Central Asia
## 739   2022-09-16 70.77500    2773750          NA      Europe & Central Asia
## 740   2022-09-16 68.21800    3363111    813.8298      Europe & Central Asia
## 741   2022-09-16 70.41200    2587716          NA      Europe & Central Asia
## 742   2022-09-16 68.93800    3217349    958.5062      Europe & Central Asia
## 743   2022-09-16 67.99000    3442820    871.6972      Europe & Central Asia
## 744   2022-09-16 70.91000    3148096          NA      Europe & Central Asia
## 745   2022-09-16 73.18100      63024          NA  Latin America & Caribbean
## 746   2022-09-16 67.76200      57702          NA  Latin America & Caribbean
## 747   2022-09-16 72.29300      60097          NA  Latin America & Caribbean
## 748   2022-09-16 73.07100      62826          NA  Latin America & Caribbean
## 749   2022-09-16 72.75100      61341          NA  Latin America & Caribbean
## 750   2022-09-16 72.92900      62213          NA  Latin America & Caribbean
## 751   2022-09-16 67.43500      57357          NA  Latin America & Caribbean
## 752   2022-09-16 69.49800      59442          NA  Latin America & Caribbean
## 753   2022-09-16 69.85100      59849          NA  Latin America & Caribbean
## 754   2022-09-16 76.15200     105846  30536.6672  Latin America & Caribbean
## 755   2022-09-16 76.29300     106310  29769.2939  Latin America & Caribbean
## 756   2022-09-16 72.02300      59972          NA  Latin America & Caribbean
## 757   2022-09-16 66.78700      56699          NA  Latin America & Caribbean
## 758   2022-09-16 73.67100      85450  27218.7610  Latin America & Caribbean
## 759   2022-09-16 73.26200      62645  15685.4677  Latin America & Caribbean
## 760   2022-09-16 76.43400     106766  23026.3329  Latin America & Caribbean
## 761   2022-09-16 72.53800      60561          NA  Latin America & Caribbean
## 762   2022-09-16 73.42500      61033  24863.0671  Latin America & Caribbean
## 763   2022-09-16 67.11300      57029          NA  Latin America & Caribbean
## 764   2022-09-16 73.54400      68240  26427.1629  Latin America & Caribbean
## 765   2022-09-16       NA     107195          NA  Latin America & Caribbean
## 766   2022-09-16 76.01000     105361  30293.3515  Latin America & Caribbean
## 767   2022-09-16 68.09500      58044          NA  Latin America & Caribbean
## 768   2022-09-16 73.59800      76705  27298.5555  Latin America & Caribbean
## 769   2022-09-16 73.57300      72495  26693.9204  Latin America & Caribbean
## 770   2022-09-16 73.64600      83211  26111.1313  Latin America & Caribbean
## 771   2022-09-16 75.01700     101665  25859.5109  Latin America & Caribbean
## 772   2022-09-16 73.70000      87280  27178.8908  Latin America & Caribbean
## 773   2022-09-16 73.62200      80324  26732.6236  Latin America & Caribbean
## 774   2022-09-16 73.37800      61072  22159.3018  Latin America & Caribbean
## 775   2022-09-16 66.07400      55434          NA  Latin America & Caribbean
## 776   2022-09-16 66.44400      56234          NA  Latin America & Caribbean
## 777   2022-09-16 74.03800      97016  27799.5774  Latin America & Caribbean
## 778   2022-09-16 74.15600      98744  29301.7636  Latin America & Caribbean
## 779   2022-09-16 74.28700     100028  28814.2916  Latin America & Caribbean
## 780   2022-09-16 75.86800     104865  28854.7133  Latin America & Caribbean
## 781   2022-09-16 68.43600      58377          NA  Latin America & Caribbean
## 782   2022-09-16 68.78400      58734          NA  Latin America & Caribbean
## 783   2022-09-16 69.14000      59070          NA  Latin America & Caribbean
## 784   2022-09-16 74.72500     101362  30193.1098  Latin America & Caribbean
## 785   2022-09-16 75.15800     102050  26629.2995  Latin America & Caribbean
## 786   2022-09-16 73.32500      61838  18445.0562  Latin America & Caribbean
## 787   2022-09-16 65.66200      54208          NA  Latin America & Caribbean
## 788   2022-09-16 70.83300      60653          NA  Latin America & Caribbean
## 789   2022-09-16 71.14000      60586          NA  Latin America & Caribbean
## 790   2022-09-16 71.44100      60366          NA  Latin America & Caribbean
## 791   2022-09-16 71.73600      60102          NA  Latin America & Caribbean
## 792   2022-09-16 75.72500     104339  28399.0501  Latin America & Caribbean
## 793   2022-09-16 73.78700      90866  28442.5161  Latin America & Caribbean
## 794   2022-09-16 74.87200     101452  26641.8166  Latin America & Caribbean
## 795   2022-09-16 74.42900     100830  28910.6607  Latin America & Caribbean
## 796   2022-09-16 74.57600     101226  29689.3416  Latin America & Caribbean
## 797   2022-09-16 73.50900      64623  26355.9613  Latin America & Caribbean
## 798   2022-09-16 73.85300      92892  28989.5852  Latin America & Caribbean
## 799   2022-09-16 73.93700      94992  28077.1931  Latin America & Caribbean
## 800   2022-09-16 73.73800      89009  26980.8907  Latin America & Caribbean
## 801   2022-09-16 70.19100      60236          NA  Latin America & Caribbean
## 802   2022-09-16 70.51900      60527          NA  Latin America & Caribbean
## 803   2022-09-16 73.46800      62152  25382.6194  Latin America & Caribbean
## 804   2022-09-16 75.44100     103165  27744.9321  Latin America & Caribbean
## 805   2022-09-16 75.58300     103776  27575.9303  Latin America & Caribbean
## 806   2022-09-16 75.29900     102565  26221.2595  Latin America & Caribbean
## 807   2022-09-16 79.63415   19413000  45864.7680        East Asia & Pacific
## 808   2022-09-16 81.54390   21691700  53225.9510        East Asia & Pacific
## 809   2022-09-16 82.04634   22733465  55254.6062        East Asia & Pacific
## 810   2022-09-16 78.07805   18311000  40203.3023        East Asia & Pacific
## 811   2022-09-16 79.23415   19153000  45558.7531        East Asia & Pacific
## 812   2022-09-16 78.48049   18517000  41309.8260        East Asia & Pacific
## 813   2022-09-16 70.81707   10276477  19953.2063        East Asia & Pacific
## 814   2022-09-16 81.39512   21249200  53338.6028        East Asia & Pacific
## 815   2022-09-16 80.49024   20127400  49439.1223        East Asia & Pacific
## 816   2022-09-16 82.50000   24601860  57695.5713        East Asia & Pacific
## 817   2022-09-16 78.63171   18711000  42767.7940        East Asia & Pacific
## 818   2022-09-16 78.93171   18926000  44369.2728        East Asia & Pacific
## 819   2022-09-16 74.00390   14514000  30250.3701        East Asia & Pacific
## 820   2022-09-16 74.33366   14692000  30790.9685        East Asia & Pacific
## 821   2022-09-16 82.14878   23128129  55723.9482        East Asia & Pacific
## 822   2022-09-16 82.30000   23475686  56305.9791        East Asia & Pacific
## 823   2022-09-16 82.40000   23815995  56707.0221        East Asia & Pacific
## 824   2022-09-16 82.44878   24190907  57358.7828        East Asia & Pacific
## 825   2022-09-16 75.62927   15758000  32995.1381        East Asia & Pacific
## 826   2022-09-16 79.93659   19651400  47127.2781        East Asia & Pacific
## 827   2022-09-16 80.23902   19895400  47997.1371        East Asia & Pacific
## 828   2022-09-16 76.43268   16532200  35478.4268        East Asia & Pacific
## 829   2022-09-16 80.84146   20394800  50332.8748        East Asia & Pacific
## 830   2022-09-16       NA   25739256  58780.3331        East Asia & Pacific
## 831   2022-09-16 73.67415   14358000  29388.5744        East Asia & Pacific
## 832   2022-09-16 77.87805   17855000  38234.0299        East Asia & Pacific
## 833   2022-09-16 77.82927   18072000  39223.1608        East Asia & Pacific
## 834   2022-09-16 70.86927   11799000  23644.6005        East Asia & Pacific
## 835   2022-09-16 81.69512   22031750  53542.8337        East Asia & Pacific
## 836   2022-09-16 81.89512   22340024  54108.1111        East Asia & Pacific
## 837   2022-09-16 71.01854   12507000  26894.5065        East Asia & Pacific
## 838   2022-09-16 71.06829   12937000  27040.5103        East Asia & Pacific
## 839   2022-09-16 71.45756   13177000  27585.7828        East Asia & Pacific
## 840   2022-09-16 71.84683   13380000  27878.8169        East Asia & Pacific
## 841   2022-09-16 70.97317   10483000  20045.8437        East Asia & Pacific
## 842   2022-09-16 70.94244   10742000  19815.7496        East Asia & Pacific
## 843   2022-09-16 70.91171   10950000  20647.4859        East Asia & Pacific
## 844   2022-09-16 81.04146   20697900  50948.2250        East Asia & Pacific
## 845   2022-09-16 81.29268   20827600  52538.9756        East Asia & Pacific
## 846   2022-09-16 70.81951   11651000  22525.0520        East Asia & Pacific
## 847   2022-09-16 77.87805   17667000  37161.6791        East Asia & Pacific
## 848   2022-09-16 74.66341   14927000  31318.0837        East Asia & Pacific
## 849   2022-09-16 74.90488   15178000  31823.6227        East Asia & Pacific
## 850   2022-09-16 75.14634   15369000  30729.8076        East Asia & Pacific
## 851   2022-09-16 75.38780   15544000  31780.2585        East Asia & Pacific
## 852   2022-09-16 83.20000   25693267  58029.5155        East Asia & Pacific
## 853   2022-09-16 73.34439   14192000  29468.8425        East Asia & Pacific
## 854   2022-09-16 82.74878   24982688  58447.2527        East Asia & Pacific
## 855   2022-09-16 82.90000   25365745  58781.0467        East Asia & Pacific
## 856   2022-09-16 76.15171   16263900  34104.8306        East Asia & Pacific
## 857   2022-09-16 76.71366   16814400  36231.0162        East Asia & Pacific
## 858   2022-09-16 77.27561   17284000  36361.9423        East Asia & Pacific
## 859   2022-09-16 77.37805   17495000  36072.0398        East Asia & Pacific
## 860   2022-09-16 70.85024   11388000  22509.0974        East Asia & Pacific
## 861   2022-09-16 72.23610   13723000  28297.9448        East Asia & Pacific
## 862   2022-09-16 70.91902   12009000  24414.7801        East Asia & Pacific
## 863   2022-09-16 70.96878   12263000  25593.1264        East Asia & Pacific
## 864   2022-09-16 76.99463   17065100  36974.4509        East Asia & Pacific
## 865   2022-09-16 75.87073   16018400  33767.1612        East Asia & Pacific
## 866   2022-09-16 72.62537   13893000  28325.0161        East Asia & Pacific
## 867   2022-09-16 70.88098   11167000  21659.1521        East Asia & Pacific
## 868   2022-09-16 73.01463   14033000  28769.1030        East Asia & Pacific
## 869   2022-09-16 73.01220    7561910  26725.1907      Europe & Central Asia
## 870   2022-09-16 73.61220    7561434  26740.5772      Europe & Central Asia
## 871   2022-09-16 72.01220    7562305  23770.3662      Europe & Central Asia
## 872   2022-09-16 72.31220    7549425  25086.4002      Europe & Central Asia
## 873   2022-09-16 72.96098    7574140  25911.6609      Europe & Central Asia
## 874   2022-09-16 69.83317    7441055  17085.3300      Europe & Central Asia
## 875   2022-09-16 69.91463    7467086  18101.9919      Europe & Central Asia
## 876   2022-09-16 72.81220    7568710  25419.0096      Europe & Central Asia
## 877   2022-09-16 69.92195    7223801  14076.2762      Europe & Central Asia
## 878   2022-09-16 81.19024    8642699  44195.8176      Europe & Central Asia
## 879   2022-09-16 72.46341    7549433  25520.7406      Europe & Central Asia
## 880   2022-09-16       NA    8956279  45090.7589      Europe & Central Asia
## 881   2022-09-16 81.69268    8840521  46188.9665      Europe & Central Asia
## 882   2022-09-16 81.89512    8879920  46669.7512      Europe & Central Asia
## 883   2022-09-16 81.19268    8916864  43346.4318      Europe & Central Asia
## 884   2022-09-16 69.30951    7129864  12904.6699      Europe & Central Asia
## 885   2022-09-16 69.44366    7175811  13352.6511      Europe & Central Asia
## 886   2022-09-16 75.26585    7619567  30265.1932      Europe & Central Asia
## 887   2022-09-16 75.56829    7677850  31340.6813      Europe & Central Asia
## 888   2022-09-16 81.64146    8736668  44590.2516      Europe & Central Asia
## 889   2022-09-16 81.64390    8797566  45281.7234      Europe & Central Asia
## 890   2022-09-16 75.81707    7840709  32410.5398      Europe & Central Asia
## 891   2022-09-16 76.06829    7905633  32313.7119      Europe & Central Asia
## 892   2022-09-16 76.41951    7936118  32962.8174      Europe & Central Asia
## 893   2022-09-16 76.66829    7948278  33790.4850      Europe & Central Asia
## 894   2022-09-16 73.81463    7564985  27395.8726      Europe & Central Asia
## 895   2022-09-16 74.31707    7569794  28008.5546      Europe & Central Asia
## 896   2022-09-16 74.76829    7574586  28370.7179      Europe & Central Asia
## 897   2022-09-16 69.57732    7086299  12648.9747      Europe & Central Asia
## 898   2022-09-16 68.58561    7047539  12051.1512      Europe & Central Asia
## 899   2022-09-16 78.57561    8042293  39184.8086      Europe & Central Asia
## 900   2022-09-16 78.67805    8081957  39636.4826      Europe & Central Asia
## 901   2022-09-16 69.72220    7270889  14471.8213      Europe & Central Asia
## 902   2022-09-16 70.04585    7322066  15181.5888      Europe & Central Asia
## 903   2022-09-16 69.91780    7376998  15521.8096      Europe & Central Asia
## 904   2022-09-16 70.05756    7415403  16132.0095      Europe & Central Asia
## 905   2022-09-16 79.88049    8268641  42496.3511      Europe & Central Asia
## 906   2022-09-16 80.18049    8295487  43937.7129      Europe & Central Asia
## 907   2022-09-16 70.11463    7500482  18943.1811      Europe & Central Asia
## 908   2022-09-16 70.46341    7544201  20002.5561      Europe & Central Asia
## 909   2022-09-16 71.01463    7586115  20864.8475      Europe & Central Asia
## 910   2022-09-16 71.01220    7599038  21650.4868      Europe & Central Asia
## 911   2022-09-16 71.11463    7578903  21629.0463      Europe & Central Asia
## 912   2022-09-16 71.56585    7565525  22659.3178      Europe & Central Asia
## 913   2022-09-16 71.91463    7568430  23801.2675      Europe & Central Asia
## 914   2022-09-16 81.49024    8546356  44245.1687      Europe & Central Asia
## 915   2022-09-16 79.33171    8227829  41281.2708      Europe & Central Asia
## 916   2022-09-16 75.61707    7754891  32097.2411      Europe & Central Asia
## 917   2022-09-16 78.63171    8121423  39815.2220      Europe & Central Asia
## 918   2022-09-16 79.18049    8171966  40651.2266      Europe & Central Asia
## 919   2022-09-16 77.67073    7976789  36442.2882      Europe & Central Asia
## 920   2022-09-16 77.87561    7992324  37664.9433      Europe & Central Asia
## 921   2022-09-16 76.87073    7959017  34537.7396      Europe & Central Asia
## 922   2022-09-16 77.31951    7968041  35220.8877      Europe & Central Asia
## 923   2022-09-16 81.13659    8479823  44299.3782      Europe & Central Asia
## 924   2022-09-16 78.12683    8011566  38842.8905      Europe & Central Asia
## 925   2022-09-16 75.21707    7585317  29264.3236      Europe & Central Asia
## 926   2022-09-16 80.33171    8343323  42655.1921      Europe & Central Asia
## 927   2022-09-16 80.58049    8363404  43334.5090      Europe & Central Asia
## 928   2022-09-16 80.43171    8321496  44440.0559      Europe & Central Asia
## 929   2022-09-16 80.93659    8429991  44549.8817      Europe & Central Asia
## 930   2022-09-16 80.98293    8391643  44451.0002      Europe & Central Asia
## 931   2022-09-16 66.76300    8048600   1480.7567      Europe & Central Asia
## 932   2022-09-16 70.20100    8763400   4692.9122      Europe & Central Asia
## 933   2022-09-16 66.49100    7982750   1343.8087      Europe & Central Asia
## 934   2022-09-16 65.57300    7763000   1105.5484      Europe & Central Asia
## 935   2022-09-16 65.25600    7684850   1102.4592      Europe & Central Asia
## 936   2022-09-16 67.79100    8234100   1918.5436      Europe & Central Asia
## 937   2022-09-16 72.02200    9535079   5505.9882      Europe & Central Asia
## 938   2022-09-16 65.89900    7838250   1158.4410      Europe & Central Asia
## 939   2022-09-16 66.20700    7913000   1262.2475      Europe & Central Asia
## 940   2022-09-16 69.75200    8581300   4326.9616      Europe & Central Asia
## 941   2022-09-16       NA   10145212   5340.4904      Europe & Central Asia
## 942   2022-09-16 64.16100    6150735          NA      Europe & Central Asia
## 943   2022-09-16 71.23400    9173082   5152.6575      Europe & Central Asia
## 944   2022-09-16 71.50600    9295784   5194.7384      Europe & Central Asia
## 945   2022-09-16 71.76800    9416801   5425.9053      Europe & Central Asia
## 946   2022-09-16 64.75900    6557581          NA      Europe & Central Asia
## 947   2022-09-16 67.05400    8111200   1614.7921      Europe & Central Asia
## 948   2022-09-16 67.39100    8171950   1754.0736      Europe & Central Asia
## 949   2022-09-16 65.02100    7010027          NA      Europe & Central Asia
## 950   2022-09-16 68.24900    8306500   2077.8123      Europe & Central Asia
## 951   2022-09-16 68.74700    8391850   2631.7590      Europe & Central Asia
## 952   2022-09-16 73.00500   10024283   5348.2653      Europe & Central Asia
## 953   2022-09-16 73.12300   10093121   5083.3816      Europe & Central Asia
## 954   2022-09-16 64.99100    7596550   1264.4828      Europe & Central Asia
## 955   2022-09-16 62.32200    4721528          NA      Europe & Central Asia
## 956   2022-09-16 70.59700    8947243   5023.7908      Europe & Central Asia
## 957   2022-09-16 70.93800    9054332   5215.0209      Europe & Central Asia
## 958   2022-09-16 62.95300    5071930          NA      Europe & Central Asia
## 959   2022-09-16 63.14100    5180032          NA      Europe & Central Asia
## 960   2022-09-16 63.31000    5284518          NA      Europe & Central Asia
## 961   2022-09-16 63.45700    5385266          NA      Europe & Central Asia
## 962   2022-09-16 61.03400    3895398          NA      Europe & Central Asia
## 963   2022-09-16 61.25600    4030325          NA      Europe & Central Asia
## 964   2022-09-16 61.46900    4171428          NA      Europe & Central Asia
## 965   2022-09-16 61.67900    4315127          NA      Europe & Central Asia
## 966   2022-09-16 69.25900    8484550   3501.0418      Europe & Central Asia
## 967   2022-09-16 62.10400    4592601          NA      Europe & Central Asia
## 968   2022-09-16 64.06900    6053635          NA      Europe & Central Asia
## 969   2022-09-16 72.49300    9757812   5270.5530      Europe & Central Asia
## 970   2022-09-16 64.28000    6249312          NA      Europe & Central Asia
## 971   2022-09-16 64.42500    6349555          NA      Europe & Central Asia
## 972   2022-09-16 64.58700    6452067          NA      Europe & Central Asia
## 973   2022-09-16 64.81000    7494800   1596.0766      Europe & Central Asia
## 974   2022-09-16 72.69300    9854033   5229.5261      Europe & Central Asia
## 975   2022-09-16 63.58200    5483088          NA      Europe & Central Asia
## 976   2022-09-16 72.26600    9649341   5500.3104      Europe & Central Asia
## 977   2022-09-16 65.01600    6778631          NA      Europe & Central Asia
## 978   2022-09-16 64.93500    7126877          NA      Europe & Central Asia
## 979   2022-09-16 72.86400    9939771   5262.1838      Europe & Central Asia
## 980   2022-09-16 63.99200    5957927          NA      Europe & Central Asia
## 981   2022-09-16 64.73100    7382050   2107.2227      Europe & Central Asia
## 982   2022-09-16 61.88900    4456691          NA      Europe & Central Asia
## 983   2022-09-16 62.53900    4843872          NA      Europe & Central Asia
## 984   2022-09-16 62.75000    4960237          NA      Europe & Central Asia
## 985   2022-09-16 63.85200    5768730          NA      Europe & Central Asia
## 986   2022-09-16 64.82700    7175200   2820.7410      Europe & Central Asia
## 987   2022-09-16 64.91300    6666447          NA      Europe & Central Asia
## 988   2022-09-16 65.05300    6893486          NA      Europe & Central Asia
## 989   2022-09-16 63.68700    5579071          NA      Europe & Central Asia
## 990   2022-09-16 64.74500    7271300   2763.9769      Europe & Central Asia
## 991   2022-09-16 63.92100    5863138          NA      Europe & Central Asia
## 992   2022-09-16 63.77600    5674129          NA      Europe & Central Asia
## 993   2022-09-16 67.37200     205991  29060.6614  Latin America & Caribbean
## 994   2022-09-16 64.74000     109532  20106.9500  Latin America & Caribbean
## 995   2022-09-16 66.59300     185105  22954.8992  Latin America & Caribbean
## 996   2022-09-16 65.21900     133705  24589.9026  Latin America & Caribbean
## 997   2022-09-16 67.25300     201482  23554.1310  Latin America & Caribbean
## 998   2022-09-16 66.39700     181519  28119.6085  Latin America & Caribbean
## 999   2022-09-16 65.31000     140060  25921.4976  Latin America & Caribbean
## 1000  2022-09-16 66.78500     188895  19164.4666  Latin America & Caribbean
## 1001  2022-09-16 67.11800     197100  21087.6653  Latin America & Caribbean
## 1002  2022-09-16 73.55400     381749  31745.6450  Latin America & Caribbean
## 1003  2022-09-16 72.84700     370625  31689.2478  Latin America & Caribbean
## 1004  2022-09-16 73.91800     389486  32285.5424  Latin America & Caribbean
## 1005  2022-09-16 66.96200     192903  19739.3474  Latin America & Caribbean
## 1006  2022-09-16 67.48800     210589  30272.5096  Latin America & Caribbean
## 1007  2022-09-16 73.75200     385635  32001.1557  Latin America & Caribbean
## 1008  2022-09-16 68.79300     239020  32605.4554  Latin America & Caribbean
## 1009  2022-09-16 74.05300     393248  24359.0036  Latin America & Caribbean
## 1010  2022-09-16 73.32900     377923  31117.8857  Latin America & Caribbean
## 1011  2022-09-16 68.47400     234579  32636.2613  Latin America & Caribbean
## 1012  2022-09-16 69.85400     251738  34812.8973  Latin America & Caribbean
## 1013  2022-09-16 73.08800     374200  31699.3586  Latin America & Caribbean
## 1014  2022-09-16 70.51800     261007  31658.9511  Latin America & Caribbean
## 1015  2022-09-16 69.49600     247451  33183.6451  Latin America & Caribbean
## 1016  2022-09-16 67.61500     215321  26875.5435  Latin America & Caribbean
## 1017  2022-09-16 70.19900     256227  33657.0237  Latin America & Caribbean
## 1018  2022-09-16 67.96200     225095  28417.4513  Latin America & Caribbean
## 1019  2022-09-16 70.80700     266028  29873.1414  Latin America & Caribbean
## 1020  2022-09-16 71.69800     287363  33268.5450  Latin America & Caribbean
## 1021  2022-09-16 71.78600     290600  31416.3742  Latin America & Caribbean
## 1022  2022-09-16 71.85800     294063  34833.2935  Latin America & Caribbean
## 1023  2022-09-16 64.88500     115119  21171.8460  Latin America & Caribbean
## 1024  2022-09-16 65.01100     121092  22231.2435  Latin America & Caribbean
## 1025  2022-09-16 65.12100     127340  23365.2899  Latin America & Caribbean
## 1026  2022-09-16 71.98800     318893  35122.0730  Latin America & Caribbean
## 1027  2022-09-16 71.98700     324848  35648.8530  Latin America & Caribbean
## 1028  2022-09-16 65.40200     146381  27052.1940  Latin America & Caribbean
## 1029  2022-09-16 65.49900     152621  28436.4900  Latin America & Caribbean
## 1030  2022-09-16 67.76900     220182  28042.8252  Latin America & Caribbean
## 1031  2022-09-16 65.73000     164265  31218.7235  Latin America & Caribbean
## 1032  2022-09-16 65.87000     169376  28566.1574  Latin America & Caribbean
## 1033  2022-09-16 66.03100     173894  28276.5296  Latin America & Caribbean
## 1034  2022-09-16 66.20900     177863  26678.6834  Latin America & Caribbean
## 1035  2022-09-16 72.42400     363581  32652.2081  Latin America & Caribbean
## 1036  2022-09-16 72.62000     367162  31407.9349  Latin America & Caribbean
## 1037  2022-09-16 69.13900     243265  32992.6219  Latin America & Caribbean
## 1038  2022-09-16 71.91400     298045  35793.9117  Latin America & Caribbean
## 1039  2022-09-16 71.95400     302618  36178.4613  Latin America & Caribbean
## 1040  2022-09-16 71.97700     307657  36548.3894  Latin America & Caribbean
## 1041  2022-09-16 71.98600     313123  35456.2898  Latin America & Caribbean
## 1042  2022-09-16 71.98800     331032  35863.3661  Latin America & Caribbean
## 1043  2022-09-16       NA     396914  27445.1408  Latin America & Caribbean
## 1044  2022-09-16 71.27600     275849  29808.2328  Latin America & Caribbean
## 1045  2022-09-16 71.45100     280179  30632.6214  Latin America & Caribbean
## 1046  2022-09-16 71.58900     283980  31499.0727  Latin America & Caribbean
## 1047  2022-09-16 68.19600     229913  31764.6310  Latin America & Caribbean
## 1048  2022-09-16 72.26300     359583  32026.6263  Latin America & Caribbean
## 1049  2022-09-16 65.60700     158648  29660.0685  Latin America & Caribbean
## 1050  2022-09-16 72.02200     343680  34229.0539  Latin America & Caribbean
## 1051  2022-09-16 72.06700     349600  32244.2966  Latin America & Caribbean
## 1052  2022-09-16 71.06100     271065  29408.2737  Latin America & Caribbean
## 1053  2022-09-16 71.99800     337387  35696.9205  Latin America & Caribbean
## 1054  2022-09-16 72.14400     354936  32248.1300  Latin America & Caribbean
## 1055  2022-09-16 72.59800     509762  19651.3379 Middle East & North Africa
## 1056  2022-09-16 72.80300     523082  20432.1239 Middle East & North Africa
## 1057  2022-09-16 74.99900     778708  22335.9324 Middle East & North Africa
## 1058  2022-09-16 73.41300     563698  22185.4956 Middle East & North Africa
## 1059  2022-09-16 73.61900     578661  22500.0710 Middle East & North Africa
## 1060  2022-09-16 73.00600     536212  22497.0364 Middle East & North Africa
## 1061  2022-09-16 73.20900     549590  21894.5445 Middle East & North Africa
## 1062  2022-09-16 77.03200    1494077  22445.4526 Middle East & North Africa
## 1063  2022-09-16 77.16300    1569440  21818.7423 Middle East & North Africa
## 1064  2022-09-16 75.47800     958423  22069.2804 Middle East & North Africa
## 1065  2022-09-16 74.82200     735140  22258.1949 Middle East & North Africa
## 1066  2022-09-16 75.77000    1114645  21833.4120 Middle East & North Africa
## 1067  2022-09-16 75.91300    1185075  21057.4208 Middle East & North Africa
## 1068  2022-09-16 76.05700    1240864  20982.3405 Middle East & North Africa
## 1069  2022-09-16 75.62500    1035924  22111.6801 Middle East & North Africa
## 1070  2022-09-16 74.03300     613697  22919.3940 Middle East & North Africa
## 1071  2022-09-16 74.23900     636540  23047.0707 Middle East & North Africa
## 1072  2022-09-16 74.44000     664610  23243.5909 Middle East & North Africa
## 1073  2022-09-16 76.76200    1371853  22634.0856 Middle East & North Africa
## 1074  2022-09-16 76.89900    1425793  22552.6846 Middle East & North Africa
## 1075  2022-09-16 72.17800     481081  17925.0720 Middle East & North Africa
## 1076  2022-09-16 72.39000     495927  18160.1694 Middle East & North Africa
## 1077  2022-09-16 75.16700     829846  22422.6899 Middle East & North Africa
## 1078  2022-09-16 75.32600     889157  22343.5374 Middle East & North Africa
## 1079  2022-09-16 61.60900     200652          NA Middle East & North Africa
## 1080  2022-09-16 62.56000     206037          NA Middle East & North Africa
## 1081  2022-09-16 63.44900     212607          NA Middle East & North Africa
## 1082  2022-09-16 64.27500     220311          NA Middle East & North Africa
## 1083  2022-09-16 73.82600     594927  22561.7924 Middle East & North Africa
## 1084  2022-09-16 51.86900     162429          NA Middle East & North Africa
## 1085  2022-09-16 53.23500     167899          NA Middle East & North Africa
## 1086  2022-09-16 54.59000     173140          NA Middle East & North Africa
## 1087  2022-09-16 74.63500     697550  22697.6169 Middle East & North Africa
## 1088  2022-09-16 57.18200     182888          NA Middle East & North Africa
## 1089  2022-09-16 58.38800     187432          NA Middle East & North Africa
## 1090  2022-09-16 69.11700     342804          NA Middle East & North Africa
## 1091  2022-09-16 77.29200    1641164  21317.3365 Middle East & North Africa
## 1092  2022-09-16 77.41900    1701583  19545.5786 Middle East & North Africa
## 1093  2022-09-16       NA    1748295  19446.6843 Middle East & North Africa
## 1094  2022-09-16 70.65100     396451  18131.0725 Middle East & North Africa
## 1095  2022-09-16 76.48400    1315029  22078.9905 Middle East & North Africa
## 1096  2022-09-16 65.04200     229151          NA Middle East & North Africa
## 1097  2022-09-16 76.20000    1278153  20774.2449 Middle East & North Africa
## 1098  2022-09-16 76.34200    1299942  21187.5419 Middle East & North Africa
## 1099  2022-09-16 70.31700     385953  17507.8734 Middle East & North Africa
## 1100  2022-09-16 76.62400    1336073  22676.6259 Middle East & North Africa
## 1101  2022-09-16 68.15200     303169          NA Middle East & North Africa
## 1102  2022-09-16 68.65100     323468          NA Middle East & North Africa
## 1103  2022-09-16 70.95700     407233  18534.2249 Middle East & North Africa
## 1104  2022-09-16 59.52400     191785          NA Middle East & North Africa
## 1105  2022-09-16 60.59600     196060          NA Middle East & North Africa
## 1106  2022-09-16 69.95100     374120  19537.9587 Middle East & North Africa
## 1107  2022-09-16 71.96200     465198  18469.8463 Middle East & North Africa
## 1108  2022-09-16 71.23700     419428  17139.0701 Middle East & North Africa
## 1109  2022-09-16 71.49600     433478  16779.7366 Middle East & North Africa
## 1110  2022-09-16 71.73600     448981  17885.0193 Middle East & North Africa
## 1111  2022-09-16 55.91100     178142          NA Middle East & North Africa
## 1112  2022-09-16 65.75700     239527          NA Middle East & North Africa
## 1113  2022-09-16 66.42100     251908          NA Middle East & North Africa
## 1114  2022-09-16 69.55000     359897  21450.5528 Middle East & North Africa
## 1115  2022-09-16 67.61600     283746          NA Middle East & North Africa
## 1116  2022-09-16 67.04000     266540          NA Middle East & North Africa
## 1117  2022-09-16 48.31300   70066310    414.6048                 South Asia
## 1118  2022-09-16 46.55700   50752150    490.2620                 South Asia
## 1119  2022-09-16 46.94200   64232486    512.1212                 South Asia
## 1120  2022-09-16 45.97000   49362834    477.9952                 South Asia
## 1121  2022-09-16 46.58900   65531635    474.4632                 South Asia
## 1122  2022-09-16 47.12600   52202008    474.4725                 South Asia
## 1123  2022-09-16 46.77300   67637541    408.6063                 South Asia
## 1124  2022-09-16 47.43200   62679765    496.8835                 South Asia
## 1125  2022-09-16 71.23100  154517385   1184.8633                 South Asia
## 1126  2022-09-16 71.51400  156256287   1248.4533                 South Asia
## 1127  2022-09-16 49.40200   71652386    428.3799                 South Asia
## 1128  2022-09-16 47.39600   68742222    440.6036                 South Asia
## 1129  2022-09-16 55.21000   90764180    484.0480                 South Asia
## 1130  2022-09-16 69.88100  147575433    972.9097                 South Asia
## 1131  2022-09-16 46.50700   66625706    401.4605                 South Asia
## 1132  2022-09-16 54.69300   88416529    480.8311                 South Asia
## 1133  2022-09-16 70.93000  152761413   1129.9935                 South Asia
## 1134  2022-09-16 56.95800   98186350    495.4038                 South Asia
## 1135  2022-09-16 57.57100  100695496    496.7616                 South Asia
## 1136  2022-09-16 70.60600  151005733   1078.2875                 South Asia
## 1137  2022-09-16 50.49800   73463593    428.9870                 South Asia
## 1138  2022-09-16 51.47300   75450033    447.2395                 South Asia
## 1139  2022-09-16 52.27700   77529040    456.1454                 South Asia
## 1140  2022-09-16 58.21000  103171957    512.0966                 South Asia
## 1141  2022-09-16 62.00200  115169933    572.4385                 South Asia
## 1142  2022-09-16 62.79800  117649927    585.7169                 South Asia
## 1143  2022-09-16 63.55300  120160571    599.2275                 South Asia
## 1144  2022-09-16 70.25600  149273134   1024.0220                 South Asia
## 1145  2022-09-16 55.77200   93187593    491.1358                 South Asia
## 1146  2022-09-16 56.35900   95671159    496.4329                 South Asia
## 1147  2022-09-16 45.37900   48013505    463.3574                 South Asia
## 1148  2022-09-16 66.43000  132478077    687.3833                 South Asia
## 1149  2022-09-16 66.88600  134791598    707.6051                 South Asia
## 1150  2022-09-16 67.33100  136986429    732.7488                 South Asia
## 1151  2022-09-16 47.64900   53741721    511.3578                 South Asia
## 1152  2022-09-16 48.05000   55385114    504.1547                 South Asia
## 1153  2022-09-16 48.23600   57157651    501.0596                 South Asia
## 1154  2022-09-16 48.17600   59034250    476.0313                 South Asia
## 1155  2022-09-16 47.88800   60918452    505.0833                 South Asia
## 1156  2022-09-16 69.07200  144304164    897.1890                 South Asia
## 1157  2022-09-16 69.48500  145924795    931.9865                 South Asia
## 1158  2022-09-16 54.22500   86142490    470.9053                 South Asia
## 1159  2022-09-16 64.25000  122682818    617.2923                 South Asia
## 1160  2022-09-16 64.88100  125189655    633.1827                 South Asia
## 1161  2022-09-16 65.44700  127657862    653.8086                 South Asia
## 1162  2022-09-16 65.95600  130088709    674.1670                 South Asia
## 1163  2022-09-16 72.32000  161376713   1481.1834                 South Asia
## 1164  2022-09-16 58.89100  105599125    517.7637                 South Asia
## 1165  2022-09-16 71.78500  157977151   1322.6948                 South Asia
## 1166  2022-09-16 72.05200  159685421   1394.7814                 South Asia
## 1167  2022-09-16       NA  166303494   1715.3548                 South Asia
## 1168  2022-09-16 52.90000   79639498    447.6949                 South Asia
## 1169  2022-09-16 53.37600   81767516    467.5867                 South Asia
## 1170  2022-09-16 53.79400   83932132    465.2501                 South Asia
## 1171  2022-09-16 60.38800  110350641    547.0514                 South Asia
## 1172  2022-09-16 61.19000  112737684    556.2989                 South Asia
## 1173  2022-09-16 68.21300  140921154    809.4736                 South Asia
## 1174  2022-09-16 59.61800  107983708    533.8880                 South Asia
## 1175  2022-09-16 72.86800  164689383   1619.7759                 South Asia
## 1176  2022-09-16 67.77300  139035505    769.1360                 South Asia
## 1177  2022-09-16 68.64800  142660381    856.0459                 South Asia
## 1178  2022-09-16 72.59100  163046173   1581.5675                 South Asia
## 1179  2022-09-16 74.70400     260933  15049.4351  Latin America & Caribbean
## 1180  2022-09-16 78.27200     281107  17253.6389  Latin America & Caribbean
## 1181  2022-09-16 74.89200     261912  14408.4618  Latin America & Caribbean
## 1182  2022-09-16 75.10100     262890  13537.7062  Latin America & Caribbean
## 1183  2022-09-16 75.58300     264893  13814.1896  Latin America & Caribbean
## 1184  2022-09-16 74.53400     259961  15622.4318  Latin America & Caribbean
## 1185  2022-09-16 75.85200     265955  14036.1339  Latin America & Caribbean
## 1186  2022-09-16 78.00900     277475  17913.6595  Latin America & Caribbean
## 1187  2022-09-16 75.33200     263869  13594.4438  Latin America & Caribbean
## 1188  2022-09-16 78.18400     279946  18240.4529  Latin America & Caribbean
## 1189  2022-09-16 77.91500     276320  16952.2925  Latin America & Caribbean
## 1190  2022-09-16 71.80000     251347  13633.9035  Latin America & Caribbean
## 1191  2022-09-16 78.09700     278701  18205.4033  Latin America & Caribbean
## 1192  2022-09-16 72.61800     253296  13852.3716  Latin America & Caribbean
## 1193  2022-09-16 71.36400     250200  12694.4332  Latin America & Caribbean
## 1194  2022-09-16 78.80100     285327  16558.8648  Latin America & Caribbean
## 1195  2022-09-16 72.22200     252388  14171.4293  Latin America & Caribbean
## 1196  2022-09-16 78.98100     286229  17002.0271  Latin America & Caribbean
## 1197  2022-09-16 79.08100     286640  16803.2646  Latin America & Caribbean
## 1198  2022-09-16 77.53400     273423  15904.6494  Latin America & Caribbean
## 1199  2022-09-16 77.68200     274331  16196.8644  Latin America & Caribbean
## 1200  2022-09-16 77.80800     275283  16368.6955  Latin America & Caribbean
## 1201  2022-09-16 66.38100     233632          NA  Latin America & Caribbean
## 1202  2022-09-16 66.86000     234588          NA  Latin America & Caribbean
## 1203  2022-09-16 67.27500     235415          NA  Latin America & Caribbean
## 1204  2022-09-16 67.62800     236084          NA  Latin America & Caribbean
## 1205  2022-09-16 76.13100     267047  14534.5992  Latin America & Caribbean
## 1206  2022-09-16 76.41000     268183  15159.0684  Latin America & Caribbean
## 1207  2022-09-16 76.68000     269334  15657.0712  Latin America & Caribbean
## 1208  2022-09-16 78.88800     285798  16950.3243  Latin America & Caribbean
## 1209  2022-09-16 74.20600     258012  14678.9247  Latin America & Caribbean
## 1210  2022-09-16 74.37200     258970  15137.2723  Latin America & Caribbean
## 1211  2022-09-16 69.43600     243076          NA  Latin America & Caribbean
## 1212  2022-09-16 79.19000     287021  16678.5495  Latin America & Caribbean
## 1213  2022-09-16 79.30800     287371  14329.1899  Latin America & Caribbean
## 1214  2022-09-16       NA     287708  14512.7794  Latin America & Caribbean
## 1215  2022-09-16 70.93100     248931  12165.8269  Latin America & Caribbean
## 1216  2022-09-16 78.54700     283698  16505.1853  Latin America & Caribbean
## 1217  2022-09-16 78.63300     284294  16232.1870  Latin America & Caribbean
## 1218  2022-09-16 78.36400     282131  16784.4206  Latin America & Caribbean
## 1219  2022-09-16 78.45600     282987  16618.5592  Latin America & Caribbean
## 1220  2022-09-16 74.02900     257117  14358.0093  Latin America & Caribbean
## 1221  2022-09-16 64.47200     230985          NA  Latin America & Caribbean
## 1222  2022-09-16 78.71700     284825  16187.7870  Latin America & Caribbean
## 1223  2022-09-16 69.14900     241523          NA  Latin America & Caribbean
## 1224  2022-09-16 70.50900     247584  11802.1571  Latin America & Caribbean
## 1225  2022-09-16 72.98000     254078  13132.9301  Latin America & Caribbean
## 1226  2022-09-16 65.19800     231718          NA  Latin America & Caribbean
## 1227  2022-09-16 65.83100     232623          NA  Latin America & Caribbean
## 1228  2022-09-16 67.92800     236661          NA  Latin America & Caribbean
## 1229  2022-09-16 77.36200     272494  15834.1936  Latin America & Caribbean
## 1230  2022-09-16 73.30300     254791  13161.8243  Latin America & Caribbean
## 1231  2022-09-16 73.58500     255493  13598.2334  Latin America & Caribbean
## 1232  2022-09-16 73.82500     256260  13706.4274  Latin America & Caribbean
## 1233  2022-09-16 77.16200     271511  16276.5366  Latin America & Caribbean
## 1234  2022-09-16 68.18700     237241          NA  Latin America & Caribbean
## 1235  2022-09-16 69.75600     244643  11666.6782  Latin America & Caribbean
## 1236  2022-09-16 70.11300     246158  11374.5720  Latin America & Caribbean
## 1237  2022-09-16 68.65000     238895          NA  Latin America & Caribbean
## 1238  2022-09-16 68.89000     240093          NA  Latin America & Caribbean
## 1239  2022-09-16 68.42100     237963          NA  Latin America & Caribbean
## 1240  2022-09-16 76.93300     270455  15644.3548  Latin America & Caribbean
## 1241  2022-09-16 70.01590    9411000          NA      Europe & Central Asia
## 1242  2022-09-16 68.63583    8351928          NA      Europe & Central Asia
## 1243  2022-09-16 68.99207    8437232          NA      Europe & Central Asia
## 1244  2022-09-16 70.04827    9367000          NA      Europe & Central Asia
## 1245  2022-09-16 68.21266    8271216          NA      Europe & Central Asia
## 1246  2022-09-16 70.09300    9115576          NA      Europe & Central Asia
## 1247  2022-09-16 70.55366    9461643   5938.2207      Europe & Central Asia
## 1248  2022-09-16 71.96585    9446836   6047.8711      Europe & Central Asia
## 1249  2022-09-16 70.06807    9317584          NA      Europe & Central Asia
## 1250  2022-09-16 70.40488    9483836   5621.9372      Europe & Central Asia
## 1251  2022-09-16 69.40488    9604924   4294.2287      Europe & Central Asia
## 1252  2022-09-16 70.09241    9188968          NA      Europe & Central Asia
## 1253  2022-09-16 69.28993    8524224          NA      Europe & Central Asia
## 1254  2022-09-16 70.07924    9040000          NA      Europe & Central Asia
## 1255  2022-09-16 70.99268    9975000          NA      Europe & Central Asia
## 1256  2022-09-16 71.54951   10043000          NA      Europe & Central Asia
## 1257  2022-09-16 70.08244    9257272          NA      Europe & Central Asia
## 1258  2022-09-16 70.40732    9504583   5203.8549      Europe & Central Asia
## 1259  2022-09-16 69.90632    9525000          NA      Europe & Central Asia
## 1260  2022-09-16 69.84163    9584000          NA      Europe & Central Asia
## 1261  2022-09-16 70.99024   10111000          NA      Europe & Central Asia
## 1262  2022-09-16 69.96741    9463000          NA      Europe & Central Asia
## 1263  2022-09-16 68.97073   10239050   2373.8905      Europe & Central Asia
## 1264  2022-09-16 68.76829   10226955   2098.6243      Europe & Central Asia
## 1265  2022-09-16 70.20732    9560953   4684.9803      Europe & Central Asia
## 1266  2022-09-16 70.45610    9527985   5180.7123      Europe & Central Asia
## 1267  2022-09-16 70.27193    9910000          NA      Europe & Central Asia
## 1268  2022-09-16 67.70810    8198000          NA      Europe & Central Asia
## 1269  2022-09-16 68.46098   10117433   2176.6924      Europe & Central Asia
## 1270  2022-09-16 68.40732   10071963   2370.1865      Europe & Central Asia
## 1271  2022-09-16 67.90732   10026738   2461.8269      Europe & Central Asia
## 1272  2022-09-16 68.91220    9979610   2616.9130      Europe & Central Asia
## 1273  2022-09-16 69.53741    8610000          NA      Europe & Central Asia
## 1274  2022-09-16 69.73461    8696496          NA      Europe & Central Asia
## 1275  2022-09-16 69.88166    8785648          NA      Europe & Central Asia
## 1276  2022-09-16 69.98263    8874552          NA      Europe & Central Asia
## 1277  2022-09-16 70.04515    8960304          NA      Europe & Central Asia
## 1278  2022-09-16 68.85122    9663915   3880.0144      Europe & Central Asia
## 1279  2022-09-16 69.90822    9776000          NA      Europe & Central Asia
## 1280  2022-09-16 70.06466    9843000          NA      Europe & Central Asia
## 1281  2022-09-16       NA    9340314   6418.2376      Europe & Central Asia
## 1282  2022-09-16 68.46098   10193831   1886.4774      Europe & Central Asia
## 1283  2022-09-16 68.51220   10159569   1945.8389      Europe & Central Asia
## 1284  2022-09-16 73.62439    9461076   5967.0522      Europe & Central Asia
## 1285  2022-09-16 71.34146   10140000          NA      Europe & Central Asia
## 1286  2022-09-16 72.47073    9443211   6110.9047      Europe & Central Asia
## 1287  2022-09-16 72.97073    9448515   6212.9128      Europe & Central Asia
## 1288  2022-09-16 74.17561    9438785   6165.9093      Europe & Central Asia
## 1289  2022-09-16 73.82683    9469379   5811.1979      Europe & Central Asia
## 1290  2022-09-16 69.80202    9643000          NA      Europe & Central Asia
## 1291  2022-09-16 69.81917    9710000          NA      Europe & Central Asia
## 1292  2022-09-16 70.83659   10189348   2890.5242      Europe & Central Asia
## 1293  2022-09-16 74.22683    9419758   6264.8610      Europe & Central Asia
## 1294  2022-09-16 74.22683    9379952   6234.8243      Europe & Central Asia
## 1295  2022-09-16 71.48293   10170000          NA      Europe & Central Asia
## 1296  2022-09-16 68.95610    9730146   3522.4899      Europe & Central Asia
## 1297  2022-09-16 70.37805   10194050   2854.5208      Europe & Central Asia
## 1298  2022-09-16 70.02195   10216470   2574.8239      Europe & Central Asia
## 1299  2022-09-16 68.55366    9796749   3139.1210      Europe & Central Asia
## 1300  2022-09-16 74.12927    9458989   5964.8929      Europe & Central Asia
## 1301  2022-09-16 68.50732    9928549   2754.6645      Europe & Central Asia
## 1302  2022-09-16 68.05610    9865548   2912.1234      Europe & Central Asia
## 1303  2022-09-16 76.19220   10004486  29870.1478      Europe & Central Asia
## 1304  2022-09-16 76.05195    9967379  29441.6621      Europe & Central Asia
## 1305  2022-09-16 78.98049   10478617  38426.0519      Europe & Central Asia
## 1306  2022-09-16 76.35122   10045158  30204.5638      Europe & Central Asia
## 1307  2022-09-16 75.63268    9937697  28631.3191      Europe & Central Asia
## 1308  2022-09-16 78.12927   10376133  36617.3804      Europe & Central Asia
## 1309  2022-09-16 74.73171    9861823  26026.2805      Europe & Central Asia
## 1310  2022-09-16 75.36585    9870234  26603.9281      Europe & Central Asia
## 1311  2022-09-16 75.56585    9901664  27772.0520      Europe & Central Asia
## 1312  2022-09-16 81.59512   11427054  42403.5336      Europe & Central Asia
## 1313  2022-09-16 78.87805   10421137  37761.2813      Europe & Central Asia
## 1314  2022-09-16 81.43902   11331422  41318.0196      Europe & Central Asia
## 1315  2022-09-16 81.49268   11375158  41825.7628      Europe & Central Asia
## 1316  2022-09-16 80.03415   10796493  39025.2208      Europe & Central Asia
## 1317  2022-09-16 81.99512   11488980  43065.5151      Europe & Central Asia
## 1318  2022-09-16 80.58537   11038264  39929.0951      Europe & Central Asia
## 1319  2022-09-16 80.38537   11106932  39975.5736      Europe & Central Asia
## 1320  2022-09-16 80.58780   11159407  39970.3175      Europe & Central Asia
## 1321  2022-09-16 78.07561   10332785  36393.2418      Europe & Central Asia
## 1322  2022-09-16 69.70195    9153489  11734.3062      Europe & Central Asia
## 1323  2022-09-16 70.52098    9183948  12277.6347      Europe & Central Asia
## 1324  2022-09-16 70.21951    9220578  12866.2288      Europe & Central Asia
## 1325  2022-09-16 70.05146    9289770  13326.1133      Europe & Central Asia
## 1326  2022-09-16 76.34537   10084475  29797.4063      Europe & Central Asia
## 1327  2022-09-16 76.69171   10115603  30664.3079      Europe & Central Asia
## 1328  2022-09-16 76.84073   10136811  31329.8921      Europe & Central Asia
## 1329  2022-09-16 77.18732   10156637  31681.9364      Europe & Central Asia
## 1330  2022-09-16 80.18293   10895586  39777.9253      Europe & Central Asia
## 1331  2022-09-16 74.52024    9858308  25569.4893      Europe & Central Asia
## 1332  2022-09-16 70.97195    9655549  17849.4947      Europe & Central Asia
## 1333  2022-09-16 71.06049    9673162  18527.1487      Europe & Central Asia
## 1334  2022-09-16 71.40512    9711115  19432.0310      Europe & Central Asia
## 1335  2022-09-16 81.28780   11209057  40421.4208      Europe & Central Asia
## 1336  2022-09-16 80.99268   11274196  41008.2967      Europe & Central Asia
## 1337  2022-09-16 71.97122    9800700  20997.2068      Europe & Central Asia
## 1338  2022-09-16 72.11976    9818227  22144.5236      Europe & Central Asia
## 1339  2022-09-16 70.75512    9378113  14118.9023      Europe & Central Asia
## 1340  2022-09-16 70.62537    9463667  14489.4451      Europe & Central Asia
## 1341  2022-09-16 79.38049   10547958  39147.7636      Europe & Central Asia
## 1342  2022-09-16 79.78293   10625700  40290.2278      Europe & Central Asia
## 1343  2022-09-16 79.68049   10709973  40151.8499      Europe & Central Asia
## 1344  2022-09-16 70.76488    9646032  16922.3544      Europe & Central Asia
## 1345  2022-09-16 74.40488    9855372  25161.4910      Europe & Central Asia
## 1346  2022-09-16 77.61951   10226419  34479.9064      Europe & Central Asia
## 1347  2022-09-16 77.72195   10251250  35674.7913      Europe & Central Asia
## 1348  2022-09-16 77.97317   10286570  35943.2380      Europe & Central Asia
## 1349  2022-09-16 71.63537    9741720  20607.1809      Europe & Central Asia
## 1350  2022-09-16 71.98585    9772419  21480.2613      Europe & Central Asia
## 1351  2022-09-16       NA   11587882  42787.2952      Europe & Central Asia
## 1352  2022-09-16 72.77390    9830358  22255.6844      Europe & Central Asia
## 1353  2022-09-16 73.19366    9848382  23381.1272      Europe & Central Asia
## 1354  2022-09-16 80.79512   11544241  40424.6388      Europe & Central Asia
## 1355  2022-09-16 70.69317    9618756  15915.1957      Europe & Central Asia
## 1356  2022-09-16 73.88805    9856303  24477.1999      Europe & Central Asia
## 1357  2022-09-16 73.86902    9855520  24555.4810      Europe & Central Asia
## 1358  2022-09-16 77.47317   10203008  33376.5748      Europe & Central Asia
## 1359  2022-09-16 72.69805    9839534  22866.8232      Europe & Central Asia
## 1360  2022-09-16 70.70634    9527807  14846.0973      Europe & Central Asia
## 1361  2022-09-16 71.01293    9580991  15334.7679      Europe & Central Asia
## 1362  2022-09-16 77.37073   10181245  32804.3605      Europe & Central Asia
## 1363  2022-09-16 73.20707    9859242  24393.2982      Europe & Central Asia
## 1364  2022-09-16 73.62171    9858982  24325.8133      Europe & Central Asia
## 1365  2022-09-16 65.05800     119269   1454.9716  Latin America & Caribbean
## 1366  2022-09-16 62.82300     106120   1318.2986  Latin America & Caribbean
## 1367  2022-09-16 62.24100     103069   1293.5436  Latin America & Caribbean
## 1368  2022-09-16 72.57000     330236   4729.9901  Latin America & Caribbean
## 1369  2022-09-16 63.40200     109348   1340.4192  Latin America & Caribbean
## 1370  2022-09-16 63.97100     112707   1364.3645  Latin America & Caribbean
## 1371  2022-09-16 64.52500     116065   1422.4983  Latin America & Caribbean
## 1372  2022-09-16 70.28600     291338   4898.0933  Latin America & Caribbean
## 1373  2022-09-16 73.04400     338001   4733.5467  Latin America & Caribbean
## 1374  2022-09-16 65.56600     122184   1488.5414  Latin America & Caribbean
## 1375  2022-09-16 66.04700     124795   1515.1025  Latin America & Caribbean
## 1376  2022-09-16 72.05700     322465   4767.5293  Latin America & Caribbean
## 1377  2022-09-16 70.63600     299031   4827.7500  Latin America & Caribbean
## 1378  2022-09-16 71.05900     306822   4834.7901  Latin America & Caribbean
## 1379  2022-09-16 61.66300     100165   1267.6645  Latin America & Caribbean
## 1380  2022-09-16 70.57500     155820   2296.2025  Latin America & Caribbean
## 1381  2022-09-16 69.57700     144142   2510.8663  Latin America & Caribbean
## 1382  2022-09-16 69.92100     147572   2480.3123  Latin America & Caribbean
## 1383  2022-09-16 71.54100     314655   4728.5675  Latin America & Caribbean
## 1384  2022-09-16 71.40500     174333   2447.2398  Latin America & Caribbean
## 1385  2022-09-16 71.43700     179023   2616.3813  Latin America & Caribbean
## 1386  2022-09-16 71.38600     183471   2885.0697  Latin America & Caribbean
## 1387  2022-09-16 70.25700     151486   2413.6250  Latin America & Caribbean
## 1388  2022-09-16 68.87400     138975   2135.2400  Latin America & Caribbean
## 1389  2022-09-16 69.22900     141302   2257.9395  Latin America & Caribbean
## 1390  2022-09-16 69.43900     206962   3813.9772  Latin America & Caribbean
## 1391  2022-09-16 71.24200     187554   3145.2250  Latin America & Caribbean
## 1392  2022-09-16 68.85800     221575   3741.4354  Latin America & Caribbean
## 1393  2022-09-16 68.73400     230248   3735.1801  Latin America & Caribbean
## 1394  2022-09-16 66.50400     127152   1638.9651  Latin America & Caribbean
## 1395  2022-09-16 69.10000     213660   3747.2107  Latin America & Caribbean
## 1396  2022-09-16 59.98100      92068   1194.3015  Latin America & Caribbean
## 1397  2022-09-16 60.53100      94700   1217.9128  Latin America & Caribbean
## 1398  2022-09-16 61.09200      97392   1242.1898  Latin America & Caribbean
## 1399  2022-09-16 69.51100     269428   4736.3473  Latin America & Caribbean
## 1400  2022-09-16 69.74900     276516   4829.5450  Latin America & Caribbean
## 1401  2022-09-16 69.99800     283798   4809.0534  Latin America & Caribbean
## 1402  2022-09-16       NA     404915   4151.2104  Latin America & Caribbean
## 1403  2022-09-16 70.99600     191136   3440.0941  Latin America & Caribbean
## 1404  2022-09-16 70.66200     194324   3791.6697  Latin America & Caribbean
## 1405  2022-09-16 70.26800     197625   3962.3183  Latin America & Caribbean
## 1406  2022-09-16 69.84500     201679   3888.8218  Latin America & Caribbean
## 1407  2022-09-16 73.45200     345707   4667.1792  Latin America & Caribbean
## 1408  2022-09-16 66.93900     129294   1698.0751  Latin America & Caribbean
## 1409  2022-09-16 74.03400     360926   4805.1969  Latin America & Caribbean
## 1410  2022-09-16 74.21900     368399   4699.2724  Latin America & Caribbean
## 1411  2022-09-16 67.35400     131305   1898.8004  Latin America & Caribbean
## 1412  2022-09-16 67.75100     133264   1938.1055  Latin America & Caribbean
## 1413  2022-09-16 68.13500     135143   1910.5083  Latin America & Caribbean
## 1414  2022-09-16 68.50900     136990   2007.1939  Latin America & Caribbean
## 1415  2022-09-16 74.75400     397621   3851.6982  Latin America & Caribbean
## 1416  2022-09-16 69.04000     255068   4352.8694  Latin America & Caribbean
## 1417  2022-09-16 73.78200     353366   4769.9140  Latin America & Caribbean
## 1418  2022-09-16 71.11000     164918   2234.7129  Latin America & Caribbean
## 1419  2022-09-16 71.29400     169569   2272.0797  Latin America & Caribbean
## 1420  2022-09-16 68.84700     247310   4275.2734  Latin America & Caribbean
## 1421  2022-09-16 69.27200     262387   4448.1690  Latin America & Caribbean
## 1422  2022-09-16 74.49600     383071   4709.8559  Latin America & Caribbean
## 1423  2022-09-16 74.62300     390351   4712.8401  Latin America & Caribbean
## 1424  2022-09-16 70.86500     160341   2275.4643  Latin America & Caribbean
## 1425  2022-09-16 68.73400     238979   3914.6429  Latin America & Caribbean
## 1426  2022-09-16 74.36500     375775   4705.0966  Latin America & Caribbean
## 1427  2022-09-16 51.58100    4535262    797.2660         Sub-Saharan Africa
## 1428  2022-09-16 52.37200    4672844    800.1418         Sub-Saharan Africa
## 1429  2022-09-16 57.35500    7982223    943.6293         Sub-Saharan Africa
## 1430  2022-09-16 55.66800    7076728    925.7161         Sub-Saharan Africa
## 1431  2022-09-16 53.81200    4978489    795.0717         Sub-Saharan Africa
## 1432  2022-09-16 50.79000    4404504    833.4363         Sub-Saharan Africa
## 1433  2022-09-16 61.47000   11485035   1155.3132         Sub-Saharan Africa
## 1434  2022-09-16 53.13200    4820020    753.5700         Sub-Saharan Africa
## 1435  2022-09-16 56.43600    7520556    942.9186         Sub-Saharan Africa
## 1436  2022-09-16 56.88700    7750003    955.5342         Sub-Saharan Africa
## 1437  2022-09-16 59.00900    8944713    995.6942         Sub-Saharan Africa
## 1438  2022-09-16 56.02500    7295400    939.6617         Sub-Saharan Africa
## 1439  2022-09-16 59.59000    9460829    989.7674         Sub-Saharan Africa
## 1440  2022-09-16 59.84200    9729254   1008.7663         Sub-Saharan Africa
## 1441  2022-09-16 60.09200   10004594   1051.5519         Sub-Saharan Africa
## 1442  2022-09-16 55.39100    6865946    905.8263         Sub-Saharan Africa
## 1443  2022-09-16 37.27100    2431617    679.0217         Sub-Saharan Africa
## 1444  2022-09-16 37.72700    2465865    690.6246         Sub-Saharan Africa
## 1445  2022-09-16 38.18800    2502897    657.0928         Sub-Saharan Africa
## 1446  2022-09-16 38.65500    2542864    677.3573         Sub-Saharan Africa
## 1447  2022-09-16 54.36600    5149496    801.1509         Sub-Saharan Africa
## 1448  2022-09-16 54.77600    5331805    796.6429         Sub-Saharan Africa
## 1449  2022-09-16 55.04200    5521761    814.1313         Sub-Saharan Africa
## 1450  2022-09-16 55.17400    5714215    802.6062         Sub-Saharan Africa
## 1451  2022-09-16 59.31800    9199254    988.6108         Sub-Saharan Africa
## 1452  2022-09-16 48.71000    4039940    766.2911         Sub-Saharan Africa
## 1453  2022-09-16 49.33900    4156819    803.8021         Sub-Saharan Africa
## 1454  2022-09-16 50.03400    4278502    839.7489         Sub-Saharan Africa
## 1455  2022-09-16 43.22900    3043563    760.7693         Sub-Saharan Africa
## 1456  2022-09-16 60.34500   10286839   1087.7200         Sub-Saharan Africa
## 1457  2022-09-16 60.60800   10575962   1076.7967         Sub-Saharan Africa
## 1458  2022-09-16 60.88500   10872072   1082.4513         Sub-Saharan Africa
## 1459  2022-09-16 61.17400   11175192   1112.8171         Sub-Saharan Africa
## 1460  2022-09-16 39.13000    2585961    710.3672         Sub-Saharan Africa
## 1461  2022-09-16 39.61500    2632361    734.7887         Sub-Saharan Africa
## 1462  2022-09-16 57.81700    8216893    952.8312         Sub-Saharan Africa
## 1463  2022-09-16 58.25500    8454790    981.4557         Sub-Saharan Africa
## 1464  2022-09-16 58.65400    8696915   1000.8515         Sub-Saharan Africa
## 1465  2022-09-16 41.63000    2850657    758.8828         Sub-Saharan Africa
## 1466  2022-09-16 42.15200    2912338    758.3926         Sub-Saharan Africa
## 1467  2022-09-16 42.68400    2976575    730.9189         Sub-Saharan Africa
## 1468  2022-09-16 55.13900    6470275    861.9871         Sub-Saharan Africa
## 1469  2022-09-16 55.21800    6664102    881.6194         Sub-Saharan Africa
## 1470  2022-09-16 43.78100    3113681    771.1977         Sub-Saharan Africa
## 1471  2022-09-16 44.33700    3187413    778.5152         Sub-Saharan Africa
## 1472  2022-09-16 44.88200    3265167    722.7728         Sub-Saharan Africa
## 1473  2022-09-16 45.88300    3433445    727.9854         Sub-Saharan Africa
## 1474  2022-09-16 61.77100   11801151   1201.5614         Sub-Saharan Africa
## 1475  2022-09-16 62.07700   12123198   1214.6596         Sub-Saharan Africa
## 1476  2022-09-16       NA   12451031   1260.7346         Sub-Saharan Africa
## 1477  2022-09-16 47.19000    3717161    774.5521         Sub-Saharan Africa
## 1478  2022-09-16 47.64300    3820126    828.6980         Sub-Saharan Africa
## 1479  2022-09-16 48.14500    3927717    824.0122         Sub-Saharan Africa
## 1480  2022-09-16 55.13300    6281644    854.0429         Sub-Saharan Africa
## 1481  2022-09-16 40.10900    2682159    746.9336         Sub-Saharan Africa
## 1482  2022-09-16 45.39900    3347169    711.3009         Sub-Saharan Africa
## 1483  2022-09-16 55.20300    5905552    823.5493         Sub-Saharan Africa
## 1484  2022-09-16 55.17000    6094272    832.5564         Sub-Saharan Africa
## 1485  2022-09-16 40.61000    2735308    740.3185         Sub-Saharan Africa
## 1486  2022-09-16 46.76400    3618519    745.1334         Sub-Saharan Africa
## 1487  2022-09-16 41.11700    2791588    753.2653         Sub-Saharan Africa
## 1488  2022-09-16 46.33500    3523933    718.1942         Sub-Saharan Africa
## 1489  2022-09-16 68.89780      50100  43253.5439              North America
## 1490  2022-09-16       NA      54000  54904.6943              North America
## 1491  2022-09-16       NA      52000  53985.6405              North America
## 1492  2022-09-16       NA      53000  54082.1391              North America
## 1493  2022-09-16       NA      47700  39029.4477              North America
## 1494  2022-09-16       NA      51000  48593.3905              North America
## 1495  2022-09-16 70.29000      55000  57309.1584              North America
## 1496  2022-09-16       NA      54600  59713.4403              North America
## 1497  2022-09-16 78.33415      63325 116268.8169              North America
## 1498  2022-09-16       NA      48900  42301.4324              North America
## 1499  2022-09-16 77.88537      62504 115619.4747              North America
## 1500  2022-09-16 78.08780      62912 113172.1206              North America
## 1501  2022-09-16       NA      55050  84633.1605              North America
## 1502  2022-09-16 78.48537      63740 118193.1487              North America
## 1503  2022-09-16 78.68537      64154 119396.4494              North America
## 1504  2022-09-16 72.30463      54670  83239.5346              North America
## 1505  2022-09-16       NA      56898  77902.6542              North America
## 1506  2022-09-16       NA      57382  82395.2732              North America
## 1507  2022-09-16       NA      57849  84794.9969              North America
## 1508  2022-09-16       NA      58347  87481.3788              North America
## 1509  2022-09-16 81.67780      64798 106119.7950              North America
## 1510  2022-09-16 80.57244      65001 105492.4807              North America
## 1511  2022-09-16       NA      53600  76999.1578              North America
## 1512  2022-09-16       NA      53800  78360.6870              North America
## 1513  2022-09-16       NA      58910  86444.6782              North America
## 1514  2022-09-16       NA      59320  86361.9528              North America
## 1515  2022-09-16       NA      54200  61244.5370              North America
## 1516  2022-09-16       NA      53800  62615.3153              North America
## 1517  2022-09-16       NA      44400  37935.8868              North America
## 1518  2022-09-16       NA      45500  38751.2332              North America
## 1519  2022-09-16       NA      46600  39527.7963              North America
## 1520  2022-09-16       NA      60943  97857.3233              North America
## 1521  2022-09-16       NA      61285 100602.9275              North America
## 1522  2022-09-16 77.88537      61833 109001.5860              North America
## 1523  2022-09-16 81.15268      64564 112471.3475              North America
## 1524  2022-09-16       NA      58841  87131.9494              North America
## 1525  2022-09-16 80.79732      65138 101374.4698              North America
## 1526  2022-09-16 81.01220      65237 102005.6256              North America
## 1527  2022-09-16 81.22707      64554 102407.3944              North America
## 1528  2022-09-16 81.44195      63873 107237.0318              North America
## 1529  2022-09-16       NA      55449  79583.1340              North America
## 1530  2022-09-16 78.88780      64523 125294.9594              North America
## 1531  2022-09-16 78.93415      64888 128757.8807              North America
## 1532  2022-09-16       NA      53400  63637.7154              North America
## 1533  2022-09-16       NA      53000  66534.0406              North America
## 1534  2022-09-16       NA      53200  72208.7316              North America
## 1535  2022-09-16       NA      53400  76180.8013              North America
## 1536  2022-09-16       NA      58595  84371.0357              North America
## 1537  2022-09-16       NA      63867 101617.5573              North America
## 1538  2022-09-16       NA      59326  86436.2343              North America
## 1539  2022-09-16 74.02951      59021  83812.1328              North America
## 1540  2022-09-16       NA      56423  80164.5663              North America
## 1541  2022-09-16       NA      59746  89518.2776              North America
## 1542  2022-09-16       NA      60497  94878.4922              North America
## 1543  2022-09-16       NA      55930  80483.7350              North America
## 1544  2022-09-16 79.28854      65124 115839.7960              North America
## 1545  2022-09-16       NA      60129  91261.1515              North America
## 1546  2022-09-16 79.38844      65636 117886.7380              North America
## 1547  2022-09-16 81.65171      63918 106697.7375              North America
## 1548  2022-09-16 81.86659      63911 107036.2393              North America
## 1549  2022-09-16 79.23659      65273 125610.0334              North America
## 1550  2022-09-16 82.05610      63893  99728.6431              North America
## 1551  2022-09-16 46.95400     428938    453.8014                 South Asia
## 1552  2022-09-16 49.90100     478683    544.0795                 South Asia
## 1553  2022-09-16 46.20400     418107    450.0755                 South Asia
## 1554  2022-09-16 57.41800     541471    971.3088                 South Asia
## 1555  2022-09-16 50.63200     494313    679.9561                 South Asia
## 1556  2022-09-16 48.44200     451471    497.8210                 South Asia
## 1557  2022-09-16 49.17300     464264    503.6056                 South Asia
## 1558  2022-09-16 58.23600     551713   1004.5050                 South Asia
## 1559  2022-09-16 47.70200     439823    488.7350                 South Asia
## 1560  2022-09-16 67.88200     678329   2017.9035                 South Asia
## 1561  2022-09-16 68.38400     685502   2235.3227                 South Asia
## 1562  2022-09-16 70.78100     736706   2940.7000                 South Asia
## 1563  2022-09-16 71.12900     745563   3040.9370                 South Asia
## 1564  2022-09-16 56.63600     534629    931.8786                 South Asia
## 1565  2022-09-16 59.08900     564378   1040.0369                 South Asia
## 1566  2022-09-16 68.84000     693297   2386.6211                 South Asia
## 1567  2022-09-16 43.44700     371424          NA                 South Asia
## 1568  2022-09-16 61.80800     603643   1175.8568                 South Asia
## 1569  2022-09-16 71.46000     754396   3097.1484                 South Asia
## 1570  2022-09-16 59.97400     577886   1096.8215                 South Asia
## 1571  2022-09-16 60.88400     591014   1108.4398                 South Asia
## 1572  2022-09-16 67.32500     671611   1909.2459                 South Asia
## 1573  2022-09-16 44.07700     383324          NA                 South Asia
## 1574  2022-09-16 44.75100     395192          NA                 South Asia
## 1575  2022-09-16 45.46400     406883    401.7388                 South Asia
## 1576  2022-09-16 55.87800     531905    874.7688                 South Asia
## 1577  2022-09-16 69.26300     701582   2479.1517                 South Asia
## 1578  2022-09-16 69.66200     710235   2500.8645                 South Asia
## 1579  2022-09-16 70.04600     719053   2612.8863                 South Asia
## 1580  2022-09-16 70.41900     727885   2752.6302                 South Asia
## 1581  2022-09-16 38.46900     278731          NA                 South Asia
## 1582  2022-09-16 39.05700     287886          NA                 South Asia
## 1583  2022-09-16 51.37200     509532    691.0946                 South Asia
## 1584  2022-09-16 52.12200     522173    723.9676                 South Asia
## 1585  2022-09-16 66.70900     664873   1840.2716                 South Asia
## 1586  2022-09-16 65.28900     648744   1489.2118                 South Asia
## 1587  2022-09-16 66.03100     657404   1572.4621                 South Asia
## 1588  2022-09-16 35.29000     234552          NA                 South Asia
## 1589  2022-09-16 35.73400     240529          NA                 South Asia
## 1590  2022-09-16 37.88200     269944          NA                 South Asia
## 1591  2022-09-16 36.22000     246961          NA                 South Asia
## 1592  2022-09-16 36.74500     253993          NA                 South Asia
## 1593  2022-09-16 37.30300     261664          NA                 South Asia
## 1594  2022-09-16 72.08000     771612   2879.6386                 South Asia
## 1595  2022-09-16       NA     779900          NA                 South Asia
## 1596  2022-09-16 39.63500     297307          NA                 South Asia
## 1597  2022-09-16 71.77700     763094   3238.0605                 South Asia
## 1598  2022-09-16 42.86100     359721          NA                 South Asia
## 1599  2022-09-16 63.62400     627840   1352.9790                 South Asia
## 1600  2022-09-16 41.78400     337491          NA                 South Asia
## 1601  2022-09-16 42.31100     348395          NA                 South Asia
## 1602  2022-09-16 62.72800     616025   1278.8778                 South Asia
## 1603  2022-09-16 55.13100     532590    832.4261                 South Asia
## 1604  2022-09-16 52.87800     530801    786.1482                 South Asia
## 1605  2022-09-16 53.63300     534637    777.3242                 South Asia
## 1606  2022-09-16 54.38400     534525    813.2584                 South Asia
## 1607  2022-09-16 34.88900     228849          NA                 South Asia
## 1608  2022-09-16 40.19400     306957          NA                 South Asia
## 1609  2022-09-16 64.48300     638809   1409.6480                 South Asia
## 1610  2022-09-16 34.52600     223284          NA                 South Asia
## 1611  2022-09-16 41.26300     326986          NA                 South Asia
## 1612  2022-09-16 40.73500     316822          NA                 South Asia
## 1613  2022-09-16 43.56800    4038865   1469.5908  Latin America & Caribbean
## 1614  2022-09-16 43.94700    4122517   1543.0107  Latin America & Caribbean
## 1615  2022-09-16 45.14700    4389248   1747.0329  Latin America & Caribbean
## 1616  2022-09-16 64.21000    8905820   2083.4219  Latin America & Caribbean
## 1617  2022-09-16 64.76600    9069044   2131.3071  Latin America & Caribbean
## 1618  2022-09-16 43.19900    3957759   1429.4708  Latin America & Caribbean
## 1619  2022-09-16 42.84000    3879191   1402.9152  Latin America & Caribbean
## 1620  2022-09-16 46.89300    4785916   2022.3205  Latin America & Caribbean
## 1621  2022-09-16 61.83500    8257066   2048.0265  Latin America & Caribbean
## 1622  2022-09-16 44.33700    4208683   1606.8997  Latin America & Caribbean
## 1623  2022-09-16 44.73700    4297522   1707.9079  Latin America & Caribbean
## 1624  2022-09-16 63.64000    8742822   2066.2417  Latin America & Caribbean
## 1625  2022-09-16 48.80600    5228253   2245.6781  Latin America & Caribbean
## 1626  2022-09-16 62.45200    8418270   2059.1853  Latin America & Caribbean
## 1627  2022-09-16 63.05400    8580244   2054.3309  Latin America & Caribbean
## 1628  2022-09-16 52.54300    6054126   1803.0550  Latin America & Caribbean
## 1629  2022-09-16 53.11500    6179460   1736.8716  Latin America & Caribbean
## 1630  2022-09-16 49.31000    5344946   2241.7400  Latin America & Caribbean
## 1631  2022-09-16 45.56800    4484004   1799.5711  Latin America & Caribbean
## 1632  2022-09-16 47.82800    5001413   2137.7110  Latin America & Caribbean
## 1633  2022-09-16 48.31200    5113458   2187.3545  Latin America & Caribbean
## 1634  2022-09-16 47.35500    4892294   2036.5020  Latin America & Caribbean
## 1635  2022-09-16 69.01000   10377677   2692.6075  Latin America & Caribbean
## 1636  2022-09-16 56.72100    7011456   1797.7802  Latin America & Caribbean
## 1637  2022-09-16 45.99900    4581752   1850.3531  Latin America & Caribbean
## 1638  2022-09-16 55.48600    6721117   1702.6792  Latin America & Caribbean
## 1639  2022-09-16 56.09900    6864839   1744.3120  Latin America & Caribbean
## 1640  2022-09-16 41.82000    3656961   1292.8056  Latin America & Caribbean
## 1641  2022-09-16 42.15000    3728954   1294.3351  Latin America & Caribbean
## 1642  2022-09-16 42.49000    3802996   1339.9392  Latin America & Caribbean
## 1643  2022-09-16 61.20400    8096761   2079.6967  Latin America & Caribbean
## 1644  2022-09-16 68.52100   10212951   2602.7185  Latin America & Caribbean
## 1645  2022-09-16 70.62600   11031822   3118.9137  Latin America & Caribbean
## 1646  2022-09-16 69.46800   10542375   2830.6735  Latin America & Caribbean
## 1647  2022-09-16 69.89100   10706517   2939.4775  Latin America & Caribbean
## 1648  2022-09-16 70.27700   10869732   3035.9717  Latin America & Caribbean
## 1649  2022-09-16 66.39500    9558438   2313.8912  Latin America & Caribbean
## 1650  2022-09-16 49.82400    5462413   2196.4573  Latin America & Caribbean
## 1651  2022-09-16 65.31200    9232301   2186.1867  Latin America & Caribbean
## 1652  2022-09-16 65.85300    9395449   2251.2750  Latin America & Caribbean
## 1653  2022-09-16 60.56600    7937453   2019.8516  Latin America & Caribbean
## 1654  2022-09-16 66.93700    9721457   2414.9734  Latin America & Caribbean
## 1655  2022-09-16 67.47600    9884790   2454.8003  Latin America & Caribbean
## 1656  2022-09-16 46.44100    4682392   1954.8409  Latin America & Caribbean
## 1657  2022-09-16 54.88100    6580318   1675.6038  Latin America & Caribbean
## 1658  2022-09-16 51.42700    5814344   1960.4304  Latin America & Caribbean
## 1659  2022-09-16 53.69500    6309129   1657.3881  Latin America & Caribbean
## 1660  2022-09-16 54.28400    6442824   1662.9779  Latin America & Caribbean
## 1661  2022-09-16 50.88300    5697098   2082.8125  Latin America & Caribbean
## 1662  2022-09-16 68.00700   10048597   2514.4348  Latin America & Caribbean
## 1663  2022-09-16 51.98000    5932812   1843.6233  Latin America & Caribbean
## 1664  2022-09-16 50.34900    5579932   2120.7018  Latin America & Caribbean
## 1665  2022-09-16 59.92200    7779268   1963.6408  Latin America & Caribbean
## 1666  2022-09-16 57.35100    7160917   1789.2400  Latin America & Caribbean
## 1667  2022-09-16 57.98900    7312857   1826.8656  Latin America & Caribbean
## 1668  2022-09-16 59.27600    7622334   1920.3180  Latin America & Caribbean
## 1669  2022-09-16 70.94500   11192853   3203.0044  Latin America & Caribbean
## 1670  2022-09-16 71.23900   11353140   3291.1564  Latin America & Caribbean
## 1671  2022-09-16 58.63100    7466792   1872.7099  Latin America & Caribbean
## 1672  2022-09-16       NA   11832936   3125.5291  Latin America & Caribbean
## 1673  2022-09-16 71.51300   11513102   3317.3709  Latin America & Caribbean
## 1674  2022-09-16 71.77100   11673029   2986.0244  Latin America & Caribbean
## 1675  2022-09-16 71.64500    3829049    768.9175      Europe & Central Asia
## 1676  2022-09-16 71.53400    4392135          NA      Europe & Central Asia
## 1677  2022-09-16 71.65000    4435925          NA      Europe & Central Asia
## 1678  2022-09-16 71.31500    4350566          NA      Europe & Central Asia
## 1679  2022-09-16 75.49800    3762791   3909.9716      Europe & Central Asia
## 1680  2022-09-16 70.82000    4265183          NA      Europe & Central Asia
## 1681  2022-09-16       NA    3263459   5854.6673      Europe & Central Asia
## 1682  2022-09-16 75.19800    3765332   3501.5636      Europe & Central Asia
## 1683  2022-09-16 76.21900    3661173   4185.3042      Europe & Central Asia
## 1684  2022-09-16 76.40100    3604972   4215.6199      Europe & Central Asia
## 1685  2022-09-16 71.06100    4307907          NA      Europe & Central Asia
## 1686  2022-09-16 72.30700    3764419   1477.8734      Europe & Central Asia
## 1687  2022-09-16 77.54500    3280815   5437.5102      Europe & Central Asia
## 1688  2022-09-16 70.39900    4179850          NA      Europe & Central Asia
## 1689  2022-09-16 70.60100    4222479          NA      Europe & Central Asia
## 1690  2022-09-16 76.56900    3542598   4390.6489      Europe & Central Asia
## 1691  2022-09-16 72.97600    3736070   2001.1782      Europe & Central Asia
## 1692  2022-09-16 73.56900    3734338   2314.4349      Europe & Central Asia
## 1693  2022-09-16 74.05000    3743353   2530.5118      Europe & Central Asia
## 1694  2022-09-16 75.06800    3764194   3371.2390      Europe & Central Asia
## 1695  2022-09-16 70.64500    4369320          NA      Europe & Central Asia
## 1696  2022-09-16 75.34200    3765422   3691.0502      Europe & Central Asia
## 1697  2022-09-16 70.72500    4078940          NA      Europe & Central Asia
## 1698  2022-09-16 71.09300    3936527    619.1424      Europe & Central Asia
## 1699  2022-09-16 75.66500    3754261   4132.1913      Europe & Central Asia
## 1700  2022-09-16 75.84400    3735945   4027.6914      Europe & Central Asia
## 1701  2022-09-16 76.03100    3705478   4095.9609      Europe & Central Asia
## 1702  2022-09-16 64.49900    3632678          NA      Europe & Central Asia
## 1703  2022-09-16 65.05900    3675448          NA      Europe & Central Asia
## 1704  2022-09-16 71.62600    4479516          NA      Europe & Central Asia
## 1705  2022-09-16 71.46100    4509462          NA      Europe & Central Asia
## 1706  2022-09-16 71.18400    4507819          NA      Europe & Central Asia
## 1707  2022-09-16 70.87700    4463422          NA      Europe & Central Asia
## 1708  2022-09-16 74.94100    3762179   3172.3830      Europe & Central Asia
## 1709  2022-09-16 61.01900    3288604          NA      Europe & Central Asia
## 1710  2022-09-16 61.64600    3353228          NA      Europe & Central Asia
## 1711  2022-09-16 62.24300    3417573          NA      Europe & Central Asia
## 1712  2022-09-16 76.99800    3386263   4940.7599      Europe & Central Asia
## 1713  2022-09-16 62.81800    3478999          NA      Europe & Central Asia
## 1714  2022-09-16 63.38100    3535632          NA      Europe & Central Asia
## 1715  2022-09-16 63.94000    3586630          NA      Europe & Central Asia
## 1716  2022-09-16 70.19300    4138816          NA      Europe & Central Asia
## 1717  2022-09-16 67.32000    3851153          NA      Europe & Central Asia
## 1718  2022-09-16 76.72300    3482106   4518.4659      Europe & Central Asia
## 1719  2022-09-16 76.86500    3429362   4729.6901      Europe & Central Asia
## 1720  2022-09-16 74.40300    3751176   2847.5925      Europe & Central Asia
## 1721  2022-09-16 77.12800    3351534   5150.2733      Europe & Central Asia
## 1722  2022-09-16 77.26200    3323929   5387.2697      Europe & Central Asia
## 1723  2022-09-16 77.40100    3300998   5578.2665      Europe & Central Asia
## 1724  2022-09-16 70.57700    4233673          NA      Europe & Central Asia
## 1725  2022-09-16 74.63700    3755514   2913.2296      Europe & Central Asia
## 1726  2022-09-16 74.80300    3759389   3056.5368      Europe & Central Asia
## 1727  2022-09-16 60.35300    3225664          NA      Europe & Central Asia
## 1728  2022-09-16 69.29600    4025271          NA      Europe & Central Asia
## 1729  2022-09-16 69.95400    4100355          NA      Europe & Central Asia
## 1730  2022-09-16 68.39000    3942221          NA      Europe & Central Asia
## 1731  2022-09-16 68.87200    3985107          NA      Europe & Central Asia
## 1732  2022-09-16 66.18700    3760536          NA      Europe & Central Asia
## 1733  2022-09-16 67.86700    3897259          NA      Europe & Central Asia
## 1734  2022-09-16 65.62100    3717476          NA      Europe & Central Asia
## 1735  2022-09-16 69.65700    4063188          NA      Europe & Central Asia
## 1736  2022-09-16 66.75600    3805286          NA      Europe & Central Asia
## 1737  2022-09-16 49.68400     512688    372.8612         Sub-Saharan Africa
## 1738  2022-09-16 49.17900     502733    357.5632         Sub-Saharan Africa
## 1739  2022-09-16 52.13000    1799077   4986.3280         Sub-Saharan Africa
## 1740  2022-09-16 50.17100     523777    389.2984         Sub-Saharan Africa
## 1741  2022-09-16 51.09900     547870    421.1496         Sub-Saharan Africa
## 1742  2022-09-16 54.85300     667096    977.1685         Sub-Saharan Africa
## 1743  2022-09-16 51.54700     559996    435.9854         Sub-Saharan Africa
## 1744  2022-09-16 50.64100     535692    403.1774         Sub-Saharan Africa
## 1745  2022-09-16 50.62900    1643333   4569.2152         Sub-Saharan Africa
## 1746  2022-09-16 56.52400     741346   1258.4724         Sub-Saharan Africa
## 1747  2022-09-16 50.28100    1674674   4494.9388         Sub-Saharan Africa
## 1748  2022-09-16 50.23200    1704637   4683.9559         Sub-Saharan Africa
## 1749  2022-09-16 51.15000    1765533   4859.6290         Sub-Saharan Africa
## 1750  2022-09-16 54.32700     646350    798.1302         Sub-Saharan Africa
## 1751  2022-09-16 57.09100     769982   1340.6802         Sub-Saharan Africa
## 1752  2022-09-16 57.64900     800532   1444.4143         Sub-Saharan Africa
## 1753  2022-09-16 50.51800    1734387   4816.5700         Sub-Saharan Africa
## 1754  2022-09-16 55.95700     714701   1203.7207         Sub-Saharan Africa
## 1755  2022-09-16 60.91600    1031439   2418.5576         Sub-Saharan Africa
## 1756  2022-09-16 64.97600    2062551   6704.5368         Sub-Saharan Africa
## 1757  2022-09-16 55.39800     689906   1146.1464         Sub-Saharan Africa
## 1758  2022-09-16 51.99100     571957    453.9485         Sub-Saharan Africa
## 1759  2022-09-16 60.01600    1244484   3509.7311         Sub-Saharan Africa
## 1760  2022-09-16 59.19100    1286756   3624.3296         Sub-Saharan Africa
## 1761  2022-09-16 58.23200    1326321   3778.4777         Sub-Saharan Africa
## 1762  2022-09-16 60.10900     962859   2109.5213         Sub-Saharan Africa
## 1763  2022-09-16 60.54300     996124   2307.1467         Sub-Saharan Africa
## 1764  2022-09-16 51.21400    1610260   4572.1809         Sub-Saharan Africa
## 1765  2022-09-16 51.94700    1575827   4260.2389         Sub-Saharan Africa
## 1766  2022-09-16 68.81200    2205076   6855.1603         Sub-Saharan Africa
## 1767  2022-09-16 66.26500    2088619   6895.5744         Sub-Saharan Africa
## 1768  2022-09-16 67.33800    2120716   6402.9102         Sub-Saharan Africa
## 1769  2022-09-16 68.17800    2159925   6729.0656         Sub-Saharan Africa
## 1770  2022-09-16 53.34600     611297    572.6690         Sub-Saharan Africa
## 1771  2022-09-16 69.27500    2254067   6973.0988         Sub-Saharan Africa
## 1772  2022-09-16 52.43500     584098    470.8481         Sub-Saharan Africa
## 1773  2022-09-16 52.88500     596946    509.3981         Sub-Saharan Africa
## 1774  2022-09-16 63.51100    2039551   6089.3991         Sub-Saharan Africa
## 1775  2022-09-16 58.44700    1953495   5286.5749         Sub-Saharan Africa
## 1776  2022-09-16 60.21100    1987106   5642.2200         Sub-Saharan Africa
## 1777  2022-09-16 53.82400     627714    653.1700         Sub-Saharan Africa
## 1778  2022-09-16 61.05900    1154904   2800.4288         Sub-Saharan Africa
## 1779  2022-09-16 60.65100    1200073   3219.2063         Sub-Saharan Africa
## 1780  2022-09-16 61.16700    1069585   2498.4842         Sub-Saharan Africa
## 1781  2022-09-16 61.22700    1110948   2602.0567         Sub-Saharan Africa
## 1782  2022-09-16 54.98300    1875458   5612.3278         Sub-Saharan Africa
## 1783  2022-09-16 56.67900    1915636   5837.7793         Sub-Saharan Africa
## 1784  2022-09-16 59.64700     930412   1946.3095         Sub-Saharan Africa
## 1785  2022-09-16 53.43500    1835911   5294.9697         Sub-Saharan Africa
## 1786  2022-09-16 53.57200    1504724   4100.4435         Sub-Saharan Africa
## 1787  2022-09-16 52.74900    1540424   4338.9003         Sub-Saharan Africa
## 1788  2022-09-16 59.17400     897860   1849.2419         Sub-Saharan Africa
## 1789  2022-09-16 54.41000    1469173   3968.3207         Sub-Saharan Africa
## 1790  2022-09-16 58.18600     832467   1588.0870         Sub-Saharan Africa
## 1791  2022-09-16 58.69200     865073   1713.8877         Sub-Saharan Africa
## 1792  2022-09-16 61.91000    2015406   5899.4628         Sub-Saharan Africa
## 1793  2022-09-16 55.28400    1434061   3798.4366         Sub-Saharan Africa
## 1794  2022-09-16       NA    2397240   6887.7522         Sub-Saharan Africa
## 1795  2022-09-16 56.22200    1399110   3757.0233         Sub-Saharan Africa
## 1796  2022-09-16 69.59200    2303703   7051.3465         Sub-Saharan Africa
## 1797  2022-09-16 69.79300    2351625   6304.8623         Sub-Saharan Africa
## 1798  2022-09-16 57.21900    1363541   3782.5504         Sub-Saharan Africa
## 1799  2022-09-16 67.14100  154259382   5974.5901  Latin America & Caribbean
## 1800  2022-09-16 63.68000  129448815   5679.8974  Latin America & Caribbean
## 1801  2022-09-16 76.08400  212559409   8228.7743  Latin America & Caribbean
## 1802  2022-09-16 75.88100  211049519   8622.0666  Latin America & Caribbean
## 1803  2022-09-16 62.97600  123570327   6079.2440  Latin America & Caribbean
## 1804  2022-09-16 71.89600  186127108   7352.2826  Latin America & Caribbean
## 1805  2022-09-16 73.61900  195713637   8702.2553  Latin America & Caribbean
## 1806  2022-09-16       NA  213993441   8551.2053  Latin America & Caribbean
## 1807  2022-09-16 71.17000  181809244   6896.1372  Latin America & Caribbean
## 1808  2022-09-16 63.32600  126498322   5987.8205  Latin America & Caribbean
## 1809  2022-09-16 75.67200  209469320   8582.3386  Latin America & Caribbean
## 1810  2022-09-16 70.81300  179537523   6904.6253  Latin America & Caribbean
## 1811  2022-09-16 62.28600  117878412   6094.9209  Latin America & Caribbean
## 1812  2022-09-16 62.63000  120694012   6500.3878  Latin America & Caribbean
## 1813  2022-09-16 68.31800  162019889   6584.7392  Latin America & Caribbean
## 1814  2022-09-16 61.94200  115121158   5845.7525  Latin America & Caribbean
## 1815  2022-09-16 69.06100  167209046   6742.7117  Latin America & Caribbean
## 1816  2022-09-16 65.55300  143627505   6471.9527  Latin America & Caribbean
## 1817  2022-09-16 71.53100  184006479   7206.2618  Latin America & Caribbean
## 1818  2022-09-16 68.69500  164614682   6624.1004  Latin America & Caribbean
## 1819  2022-09-16 65.16500  140891606   6601.5891  Latin America & Caribbean
## 1820  2022-09-16 67.53900  156849086   6165.3169  Latin America & Caribbean
## 1821  2022-09-16 67.93200  159432717   6420.4074  Latin America & Caribbean
## 1822  2022-09-16 66.34300  149003225   6155.6454  Latin America & Caribbean
## 1823  2022-09-16 66.74200  151648007   6110.7191  Latin America & Caribbean
## 1824  2022-09-16 58.47500   92746607   3349.5318  Latin America & Caribbean
## 1825  2022-09-16 64.03900  132383569   5853.8973  Latin America & Caribbean
## 1826  2022-09-16 72.96600  192030362   8258.6159  Latin America & Caribbean
## 1827  2022-09-16 73.30000  193886505   8169.2624  Latin America & Caribbean
## 1828  2022-09-16 70.11600  174790339   6787.6690  Latin America & Caribbean
## 1829  2022-09-16 70.46200  177196051   6788.5766  Latin America & Caribbean
## 1830  2022-09-16 55.13000   76514329   2851.4929  Latin America & Caribbean
## 1831  2022-09-16 55.62700   78772647   2786.3624  Latin America & Caribbean
## 1832  2022-09-16 56.12100   81064572   2799.6419  Latin America & Caribbean
## 1833  2022-09-16 72.26000  188167353   7560.7020  Latin America & Caribbean
## 1834  2022-09-16 72.61800  190130445   7936.8244  Latin America & Caribbean
## 1835  2022-09-16 57.09100   85696502   2893.5758  Latin America & Caribbean
## 1836  2022-09-16 57.56300   88035815   2934.9877  Latin America & Caribbean
## 1837  2022-09-16 58.02500   90387079   3138.7857  Latin America & Caribbean
## 1838  2022-09-16 73.92100  197514541   8965.6206  Latin America & Caribbean
## 1839  2022-09-16 64.40600  135274083   6178.5239  Latin America & Caribbean
## 1840  2022-09-16 64.78200  138108915   6504.9757  Latin America & Caribbean
## 1841  2022-09-16 74.74500  202763744   9214.9772  Latin America & Caribbean
## 1842  2022-09-16 74.99400  204471759   8813.9898  Latin America & Caribbean
## 1843  2022-09-16 75.23000  206163056   8455.3123  Latin America & Caribbean
## 1844  2022-09-16 75.45600  207833825   8498.2939  Latin America & Caribbean
## 1845  2022-09-16 61.59500  112425392   5702.5144  Latin America & Caribbean
## 1846  2022-09-16 61.24300  109790943   5564.7634  Latin America & Caribbean
## 1847  2022-09-16 56.61000   83373533   2787.4388  Latin America & Caribbean
## 1848  2022-09-16 54.63400   74311338   2754.2463  Latin America & Caribbean
## 1849  2022-09-16 69.41900  169785253   6662.8534  Latin America & Caribbean
## 1850  2022-09-16 69.76900  172318674   6595.6161  Latin America & Caribbean
## 1851  2022-09-16 54.14300   72179235   2611.0534  Latin America & Caribbean
## 1852  2022-09-16 59.73900   99859388   4280.6683  Latin America & Caribbean
## 1853  2022-09-16 65.94700  146328305   6553.2380  Latin America & Caribbean
## 1854  2022-09-16 60.88400  107216209   5168.2806  Latin America & Caribbean
## 1855  2022-09-16 74.48300  201035904   9247.5734  Latin America & Caribbean
## 1856  2022-09-16 60.13200  102259497   4764.1180  Latin America & Caribbean
## 1857  2022-09-16 74.20900  199287292   9056.5804  Latin America & Caribbean
## 1858  2022-09-16 58.91100   95113265   3605.8705  Latin America & Caribbean
## 1859  2022-09-16 60.51300  104706193   5032.1796  Latin America & Caribbean
## 1860  2022-09-16 59.33200   97482928   3917.2858  Latin America & Caribbean
## 1861  2022-09-16       NA       8053          NA  Latin America & Caribbean
## 1862  2022-09-16       NA      20026          NA  Latin America & Caribbean
## 1863  2022-09-16       NA       8469          NA  Latin America & Caribbean
## 1864  2022-09-16       NA      19068          NA  Latin America & Caribbean
## 1865  2022-09-16       NA      19307          NA  Latin America & Caribbean
## 1866  2022-09-16       NA       8164          NA  Latin America & Caribbean
## 1867  2022-09-16       NA      19820          NA  Latin America & Caribbean
## 1868  2022-09-16       NA      10551          NA  Latin America & Caribbean
## 1869  2022-09-16       NA      19508          NA  Latin America & Caribbean
## 1870  2022-09-16       NA       8319          NA  Latin America & Caribbean
## 1871  2022-09-16       NA       9830          NA  Latin America & Caribbean
## 1872  2022-09-16       NA      10012          NA  Latin America & Caribbean
## 1873  2022-09-16       NA      10697          NA  Latin America & Caribbean
## 1874  2022-09-16       NA      19660          NA  Latin America & Caribbean
## 1875  2022-09-16       NA      10210          NA  Latin America & Caribbean
## 1876  2022-09-16       NA      10391          NA  Latin America & Caribbean
## 1877  2022-09-16       NA      24022          NA  Latin America & Caribbean
## 1878  2022-09-16       NA      25050          NA  Latin America & Caribbean
## 1879  2022-09-16       NA       8644          NA  Latin America & Caribbean
## 1880  2022-09-16       NA       8836          NA  Latin America & Caribbean
## 1881  2022-09-16       NA      15390          NA  Latin America & Caribbean
## 1882  2022-09-16       NA      16155          NA  Latin America & Caribbean
## 1883  2022-09-16       NA      11471          NA  Latin America & Caribbean
## 1884  2022-09-16       NA      11821          NA  Latin America & Caribbean
## 1885  2022-09-16       NA      12250          NA  Latin America & Caribbean
## 1886  2022-09-16       NA      18783          NA  Latin America & Caribbean
## 1887  2022-09-16       NA      30033          NA  Latin America & Caribbean
## 1888  2022-09-16       NA      12755          NA  Latin America & Caribbean
## 1889  2022-09-16       NA      26096          NA  Latin America & Caribbean
## 1890  2022-09-16       NA      27035          NA  Latin America & Caribbean
## 1891  2022-09-16       NA      27796          NA  Latin America & Caribbean
## 1892  2022-09-16       NA      28326          NA  Latin America & Caribbean
## 1893  2022-09-16       NA      10821          NA  Latin America & Caribbean
## 1894  2022-09-16       NA       9022          NA  Latin America & Caribbean
## 1895  2022-09-16       NA       9213          NA  Latin America & Caribbean
## 1896  2022-09-16       NA      21128          NA  Latin America & Caribbean
## 1897  2022-09-16       NA      21674          NA  Latin America & Caribbean
## 1898  2022-09-16       NA       9427          NA  Latin America & Caribbean
## 1899  2022-09-16       NA       9621          NA  Latin America & Caribbean
## 1900  2022-09-16       NA      23106          NA  Latin America & Caribbean
## 1901  2022-09-16       NA      11226          NA  Latin America & Caribbean
## 1902  2022-09-16       NA      13317          NA  Latin America & Caribbean
## 1903  2022-09-16       NA      13951          NA  Latin America & Caribbean
## 1904  2022-09-16       NA      14646          NA  Latin America & Caribbean
## 1905  2022-09-16       NA      11041          NA  Latin America & Caribbean
## 1906  2022-09-16       NA      29355          NA  Latin America & Caribbean
## 1907  2022-09-16       NA      20313          NA  Latin America & Caribbean
## 1908  2022-09-16       NA      20675          NA  Latin America & Caribbean
## 1909  2022-09-16       NA      18443          NA  Latin America & Caribbean
## 1910  2022-09-16       NA      16867          NA  Latin America & Caribbean
## 1911  2022-09-16       NA      29567          NA  Latin America & Caribbean
## 1912  2022-09-16       NA      29795          NA  Latin America & Caribbean
## 1913  2022-09-16       NA      28654          NA  Latin America & Caribbean
## 1914  2022-09-16       NA      28850          NA  Latin America & Caribbean
## 1915  2022-09-16       NA      30237          NA  Latin America & Caribbean
## 1916  2022-09-16       NA      30423          NA  Latin America & Caribbean
## 1917  2022-09-16       NA      22329          NA  Latin America & Caribbean
## 1918  2022-09-16       NA      17489          NA  Latin America & Caribbean
## 1919  2022-09-16       NA      10923          NA  Latin America & Caribbean
## 1920  2022-09-16       NA      28985          NA  Latin America & Caribbean
## 1921  2022-09-16       NA      18007          NA  Latin America & Caribbean
## 1922  2022-09-16       NA      29148          NA  Latin America & Caribbean
## 1923  2022-09-16 75.72200     428960  29802.7829        East Asia & Pacific
## 1924  2022-09-16 66.61000     181201  52870.6152        East Asia & Pacific
## 1925  2022-09-16 67.03100     187596  62590.5458        East Asia & Pacific
## 1926  2022-09-16 75.58500     424481  30101.5288        East Asia & Pacific
## 1927  2022-09-16 70.18500     258714  35154.2312        East Asia & Pacific
## 1928  2022-09-16 74.62300     383902  32991.8236        East Asia & Pacific
## 1929  2022-09-16       NA     441532  29927.0437        East Asia & Pacific
## 1930  2022-09-16 74.49400     379418  33981.3370        East Asia & Pacific
## 1931  2022-09-16 64.19600     148516          NA        East Asia & Pacific
## 1932  2022-09-16 75.86000     433296  30646.1092        East Asia & Pacific
## 1933  2022-09-16 75.99800     437483  30696.8771        East Asia & Pacific
## 1934  2022-09-16 69.93500     251456  35779.1340        East Asia & Pacific
## 1935  2022-09-16 66.16400     174717  51353.1178        East Asia & Pacific
## 1936  2022-09-16 71.20700     289452  35126.3737        East Asia & Pacific
## 1937  2022-09-16 68.42100     212073  43132.0048        East Asia & Pacific
## 1938  2022-09-16 65.69600     168173  48100.4102        East Asia & Pacific
## 1939  2022-09-16 75.45000     419791  30038.7345        East Asia & Pacific
## 1940  2022-09-16 69.20800     230917  38189.7986        East Asia & Pacific
## 1941  2022-09-16 64.70900     155069  43260.9222        East Asia & Pacific
## 1942  2022-09-16 65.20900     161635  41651.0900        East Asia & Pacific
## 1943  2022-09-16 70.69600     273888  35881.1439        East Asia & Pacific
## 1944  2022-09-16 70.95100     281684  34994.3426        East Asia & Pacific
## 1945  2022-09-16 56.80500      89484          NA        East Asia & Pacific
## 1946  2022-09-16 57.75600      93540          NA        East Asia & Pacific
## 1947  2022-09-16 67.42500     193880  56324.5391        East Asia & Pacific
## 1948  2022-09-16 67.78600     200027  43769.5125        East Asia & Pacific
## 1949  2022-09-16 68.11700     206064  44168.2815        East Asia & Pacific
## 1950  2022-09-16 72.80900     333166  34063.6146        East Asia & Pacific
## 1951  2022-09-16 73.07600     340037  34291.1358        East Asia & Pacific
## 1952  2022-09-16 73.33200     346777  34926.6281        East Asia & Pacific
## 1953  2022-09-16 73.57500     353295  35277.8023        East Asia & Pacific
## 1954  2022-09-16 69.45000     237565  37866.9093        East Asia & Pacific
## 1955  2022-09-16 70.43900     266208  35239.4057        East Asia & Pacific
## 1956  2022-09-16 74.18900     370262  35455.6356        East Asia & Pacific
## 1957  2022-09-16 74.35100     374967  35064.8667        East Asia & Pacific
## 1958  2022-09-16 55.81000      85560          NA        East Asia & Pacific
## 1959  2022-09-16 75.07500     404414  32924.9900        East Asia & Pacific
## 1960  2022-09-16 74.74000     388634  33437.1217        East Asia & Pacific
## 1961  2022-09-16 74.85200     393687  34244.2069        East Asia & Pacific
## 1962  2022-09-16 74.96200     398997  34096.9076        East Asia & Pacific
## 1963  2022-09-16 63.13400     135672          NA        East Asia & Pacific
## 1964  2022-09-16 75.19300     409778  31678.9373        East Asia & Pacific
## 1965  2022-09-16 75.31800     414914  31164.0363        East Asia & Pacific
## 1966  2022-09-16 63.67100     142015          NA        East Asia & Pacific
## 1967  2022-09-16 71.72700     304620  35875.9246        East Asia & Pacific
## 1968  2022-09-16 73.80100     359434  34850.1442        East Asia & Pacific
## 1969  2022-09-16 69.69100     244405  37211.0630        East Asia & Pacific
## 1970  2022-09-16 54.81000      81707          NA        East Asia & Pacific
## 1971  2022-09-16 68.96000     224440  40388.6399        East Asia & Pacific
## 1972  2022-09-16 71.99400     311962  34516.2129        East Asia & Pacific
## 1973  2022-09-16 72.26500     319135  33551.9701        East Asia & Pacific
## 1974  2022-09-16 71.46500     297112  35753.4100        East Asia & Pacific
## 1975  2022-09-16 72.53800     326214  33825.7126        East Asia & Pacific
## 1976  2022-09-16 62.58200     129530          NA        East Asia & Pacific
## 1977  2022-09-16 60.14700     107274          NA        East Asia & Pacific
## 1978  2022-09-16 68.70000     218176  42176.9817        East Asia & Pacific
## 1979  2022-09-16 59.43400     102390          NA        East Asia & Pacific
## 1980  2022-09-16 58.63800      97819          NA        East Asia & Pacific
## 1981  2022-09-16 74.00600     365112  34441.1226        East Asia & Pacific
## 1982  2022-09-16 62.01300     123596          NA        East Asia & Pacific
## 1983  2022-09-16 60.80300     112446          NA        East Asia & Pacific
## 1984  2022-09-16 61.42200     117897          NA        East Asia & Pacific
## 1985  2022-09-16 71.06098    8256786   3839.7167      Europe & Central Asia
## 1986  2022-09-16 70.19561    7943118          NA      Europe & Central Asia
## 1987  2022-09-16 71.34683    8472313   3810.2437      Europe & Central Asia
## 1988  2022-09-16 69.24756    7867374          NA      Europe & Central Asia
## 1989  2022-09-16 70.87366    8536395          NA      Europe & Central Asia
## 1990  2022-09-16 70.89951    8576200          NA      Europe & Central Asia
## 1991  2022-09-16 71.05341    8406067   4021.7228      Europe & Central Asia
## 1992  2022-09-16 70.35122    8312068   3674.9318      Europe & Central Asia
## 1993  2022-09-16 70.41390    8310226          NA      Europe & Central Asia
## 1994  2022-09-16 71.22512    8369603          NA      Europe & Central Asia
## 1995  2022-09-16 69.49195    8012946          NA      Europe & Central Asia
## 1996  2022-09-16 70.89732    8362826   4252.9465      Europe & Central Asia
## 1997  2022-09-16 71.25634    8489574          NA      Europe & Central Asia
## 1998  2022-09-16 71.38634    8939738   3773.3160      Europe & Central Asia
## 1999  2022-09-16 71.20878    8443591   3892.7111      Europe & Central Asia
## 2000  2022-09-16 70.43000    8434172          NA      Europe & Central Asia
## 2001  2022-09-16 70.30927    8078145          NA      Europe & Central Asia
## 2002  2022-09-16 71.12122    8144340          NA      Europe & Central Asia
## 2003  2022-09-16 71.49976    8960679   3892.3568      Europe & Central Asia
## 2004  2022-09-16 71.22805    8960547   3996.8648      Europe & Central Asia
## 2005  2022-09-16 71.18463    8814032          NA      Europe & Central Asia
## 2006  2022-09-16 71.30829    8825940          NA      Europe & Central Asia
## 2007  2022-09-16 71.49439    8540164   3836.7640      Europe & Central Asia
## 2008  2022-09-16 72.56098    7658972   5230.9837      Europe & Central Asia
## 2009  2022-09-16 72.61220    7601022   5629.4199      Europe & Central Asia
## 2010  2022-09-16 72.66341    7545338   6044.7594      Europe & Central Asia
## 2011  2022-09-16 72.96341    7492561   6459.6409      Europe & Central Asia
## 2012  2022-09-16 73.41220    7444443   6288.6774      Europe & Central Asia
## 2013  2022-09-16 73.51220    7395599   6427.8101      Europe & Central Asia
## 2014  2022-09-16 71.34220    8620967          NA      Europe & Central Asia
## 2015  2022-09-16 71.41220    8210624   3537.1058      Europe & Central Asia
## 2016  2022-09-16 71.29390    8204168          NA      Europe & Central Asia
## 2017  2022-09-16 71.76829    8009142   3937.4349      Europe & Central Asia
## 2018  2022-09-16 71.86585    7837161   4260.1161      Europe & Central Asia
## 2019  2022-09-16 72.06585    7775327   4518.8782      Europe & Central Asia
## 2020  2022-09-16 71.22341    8258057          NA      Europe & Central Asia
## 2021  2022-09-16 74.96341    7025037   7859.6780      Europe & Central Asia
## 2022  2022-09-16 75.11220    6975761   8234.7813      Europe & Central Asia
## 2023  2022-09-16 71.15756    8861535   3428.4095      Europe & Central Asia
## 2024  2022-09-16 71.57195    8891117   3584.4414      Europe & Central Asia
## 2025  2022-09-16 71.18610    8917457   3657.2878      Europe & Central Asia
## 2026  2022-09-16 71.39488    8758599          NA      Europe & Central Asia
## 2027  2022-09-16 70.81610    8804183          NA      Europe & Central Asia
## 2028  2022-09-16 71.20805    8678745          NA      Europe & Central Asia
## 2029  2022-09-16 71.66341    8170172   3717.6770      Europe & Central Asia
## 2030  2022-09-16 71.56098    8632367   4093.4767      Europe & Central Asia
## 2031  2022-09-16 71.52683    8971359   4411.8862      Europe & Central Asia
## 2032  2022-09-16 74.81220    7127822   7341.0476      Europe & Central Asia
## 2033  2022-09-16 74.81463    7075947   7599.1250      Europe & Central Asia
## 2034  2022-09-16       NA    6899125   8293.5679      Europe & Central Asia
## 2035  2022-09-16 72.56341    7716860   4849.5429      Europe & Central Asia
## 2036  2022-09-16 71.60439    8981446   4889.2563      Europe & Central Asia
## 2037  2022-09-16 73.60732    6934015   7920.9113      Europe & Central Asia
## 2038  2022-09-16 71.04976    8720742          NA      Europe & Central Asia
## 2039  2022-09-16 74.31463    7305888   6693.6124      Europe & Central Asia
## 2040  2022-09-16 74.86098    7265115   6693.4502      Europe & Central Asia
## 2041  2022-09-16 71.73073    8958171   4166.1417      Europe & Central Asia
## 2042  2022-09-16 71.64146    8718289   4427.0107      Europe & Central Asia
## 2043  2022-09-16 71.72244    8876972   4784.0546      Europe & Central Asia
## 2044  2022-09-16 74.16341    7348328   6605.0898      Europe & Central Asia
## 2045  2022-09-16 74.46585    7223938   6796.6891      Europe & Central Asia
## 2046  2022-09-16 74.61463    7177991   7074.6810      Europe & Central Asia
## 2047  2022-09-16 61.17400   19751466    718.6426         Sub-Saharan Africa
## 2048  2022-09-16 59.45000   17586029    647.4287         Sub-Saharan Africa
## 2049  2022-09-16 58.93700   17072791    639.2329         Sub-Saharan Africa
## 2050  2022-09-16 52.60200   13030576    491.1847         Sub-Saharan Africa
## 2051  2022-09-16 51.95600   12654624    484.0971         Sub-Saharan Africa
## 2052  2022-09-16 40.00300    5825174    276.9908         Sub-Saharan Africa
## 2053  2022-09-16 40.49300    5930493    273.2942         Sub-Saharan Africa
## 2054  2022-09-16 60.76800   19193236    693.7264         Sub-Saharan Africa
## 2055  2022-09-16 60.35400   18646350    672.3630         Sub-Saharan Africa
## 2056  2022-09-16 42.34300    6274032    312.7148         Sub-Saharan Africa
## 2057  2022-09-16 43.16600    6398933    307.7464         Sub-Saharan Africa
## 2058  2022-09-16 59.91900   18110616    653.3273         Sub-Saharan Africa
## 2059  2022-09-16 48.48600    7340910    336.0867         Sub-Saharan Africa
## 2060  2022-09-16 58.37400   16571252    622.5197         Sub-Saharan Africa
## 2061  2022-09-16 49.32300    7727908    340.2861         Sub-Saharan Africa
## 2062  2022-09-16 49.49200    7930689    357.9641         Sub-Saharan Africa
## 2063  2022-09-16 41.02500    6040045    290.5729         Sub-Saharan Africa
## 2064  2022-09-16 41.63000    6154554    293.7170         Sub-Saharan Africa
## 2065  2022-09-16 49.45400    8811033    345.2842         Sub-Saharan Africa
## 2066  2022-09-16 49.40900    9050086    366.6537         Sub-Saharan Africa
## 2067  2022-09-16 44.08100    6530820    315.4257         Sub-Saharan Africa
## 2068  2022-09-16 61.57700   20321383    738.2189         Sub-Saharan Africa
## 2069  2022-09-16 61.98100   20903278    731.5221         Sub-Saharan Africa
## 2070  2022-09-16       NA   21497097    760.4409         Sub-Saharan Africa
## 2071  2022-09-16 47.81000    7158259    343.4740         Sub-Saharan Africa
## 2072  2022-09-16 49.55700   10372734    394.4573         Sub-Saharan Africa
## 2073  2022-09-16 49.71300   10665552    407.8607         Sub-Saharan Africa
## 2074  2022-09-16 49.91400   10968722    425.5692         Sub-Saharan Africa
## 2075  2022-09-16 50.16800   11282696    444.3225         Sub-Saharan Africa
## 2076  2022-09-16 49.54500    8356313    358.5714         Sub-Saharan Africa
## 2077  2022-09-16 49.50500    8579818    356.7400         Sub-Saharan Africa
## 2078  2022-09-16 51.38400   12293097    462.2656         Sub-Saharan Africa
## 2079  2022-09-16 34.89700    4894580    248.0226         Sub-Saharan Africa
## 2080  2022-09-16 35.36900    4960328    259.7345         Sub-Saharan Africa
## 2081  2022-09-16 53.31000   13421935    518.1679         Sub-Saharan Africa
## 2082  2022-09-16 54.06300   13829173    534.3567         Sub-Saharan Africa
## 2083  2022-09-16 54.84100   14252029    539.8200         Sub-Saharan Africa
## 2084  2022-09-16 55.61800   14689725    554.1121         Sub-Saharan Africa
## 2085  2022-09-16 56.37700   15141098    553.5167         Sub-Saharan Africa
## 2086  2022-09-16 57.09600   15605211    582.4157         Sub-Saharan Africa
## 2087  2022-09-16 57.76100   16081915    602.5791         Sub-Saharan Africa
## 2088  2022-09-16 39.54200    5723378    275.5481         Sub-Saharan Africa
## 2089  2022-09-16 46.98400    6985166    321.2653         Sub-Saharan Africa
## 2090  2022-09-16 49.55000    8140080    347.9318         Sub-Saharan Africa
## 2091  2022-09-16 50.89300   11944589    455.9077         Sub-Saharan Africa
## 2092  2022-09-16 34.43200    4829289    241.6055         Sub-Saharan Africa
## 2093  2022-09-16 39.09500    5624592    276.4800         Sub-Saharan Africa
## 2094  2022-09-16 49.38000    9816584    355.1484         Sub-Saharan Africa
## 2095  2022-09-16 45.06000    6671656    320.0823         Sub-Saharan Africa
## 2096  2022-09-16 46.04900    6822837    315.4840         Sub-Saharan Africa
## 2097  2022-09-16 49.37400    9297110    357.7423         Sub-Saharan Africa
## 2098  2022-09-16 49.36000    9552473    360.2307         Sub-Saharan Africa
## 2099  2022-09-16 49.44500   10089880    365.2805         Sub-Saharan Africa
## 2100  2022-09-16 48.99200    7531239    321.7663         Sub-Saharan Africa
## 2101  2022-09-16 38.65200    5528172    280.9734         Sub-Saharan Africa
## 2102  2022-09-16 35.84700    5027811    252.9991         Sub-Saharan Africa
## 2103  2022-09-16 50.48900   11607951    440.0284         Sub-Saharan Africa
## 2104  2022-09-16 38.20700    5434046    280.1640         Sub-Saharan Africa
## 2105  2022-09-16 36.81500    5174874    260.8854         Sub-Saharan Africa
## 2106  2022-09-16 37.75400    5343025    276.4476         Sub-Saharan Africa
## 2107  2022-09-16 36.33100    5098891    255.1672         Sub-Saharan Africa
## 2108  2022-09-16 37.29100    5256360    258.2219         Sub-Saharan Africa
## 2109  2022-09-16 47.22600    6122130    310.6911         Sub-Saharan Africa
## 2110  2022-09-16 47.21200    5685569    445.0490         Sub-Saharan Africa
## 2111  2022-09-16 42.54000    3026292    274.7020         Sub-Saharan Africa
## 2112  2022-09-16 46.78600    5898964    386.7793         Sub-Saharan Africa
## 2113  2022-09-16 46.90500    6060110    318.9419         Sub-Saharan Africa
## 2114  2022-09-16 43.33200    3253215    316.3489         Sub-Saharan Africa
## 2115  2022-09-16 43.52300    3336930    307.4938         Sub-Saharan Africa
## 2116  2022-09-16 43.68500    3413909    296.1735         Sub-Saharan Africa
## 2117  2022-09-16 46.75800    5987044    350.9068         Sub-Saharan Africa
## 2118  2022-09-16 42.22500    2964416    263.8824         Sub-Saharan Africa
## 2119  2022-09-16 45.63000    3770870    360.8393         Sub-Saharan Africa
## 2120  2022-09-16 46.95300    5798054    409.1825         Sub-Saharan Africa
## 2121  2022-09-16 42.83800    3094378    279.3160         Sub-Saharan Africa
## 2122  2022-09-16 43.10500    3170496    285.1856         Sub-Saharan Africa
## 2123  2022-09-16 47.08300    4266520    405.5441         Sub-Saharan Africa
## 2124  2022-09-16 47.32400    4379727    390.8993         Sub-Saharan Africa
## 2125  2022-09-16 47.58100    4497544    394.8021         Sub-Saharan Africa
## 2126  2022-09-16 44.86500    3646428    343.3002         Sub-Saharan Africa
## 2127  2022-09-16 45.24200    3700879    340.6100         Sub-Saharan Africa
## 2128  2022-09-16 47.52200    5564923    450.1510         Sub-Saharan Africa
## 2129  2022-09-16 47.82900    5438959    438.6573         Sub-Saharan Africa
## 2130  2022-09-16 53.36900    7364857    295.6999         Sub-Saharan Africa
## 2131  2022-09-16 54.16300    7607850    301.7527         Sub-Saharan Africa
## 2132  2022-09-16 54.94400    7862226    302.0690         Sub-Saharan Africa
## 2133  2022-09-16 55.72100    8126104    306.4688         Sub-Saharan Africa
## 2134  2022-09-16 56.48800    8397661    307.8655         Sub-Saharan Africa
## 2135  2022-09-16 57.22800    8675606    313.2724         Sub-Saharan Africa
## 2136  2022-09-16 47.70800    6185564    322.1114         Sub-Saharan Africa
## 2137  2022-09-16 41.28100    2797925    285.4030         Sub-Saharan Africa
## 2138  2022-09-16 41.59200    2852438    241.4665         Sub-Saharan Africa
## 2139  2022-09-16 49.93000    6525546    305.8160         Sub-Saharan Africa
## 2140  2022-09-16 50.81000    6704118    310.9062         Sub-Saharan Africa
## 2141  2022-09-16 41.90700    2907320    258.3797         Sub-Saharan Africa
## 2142  2022-09-16 52.54700    7131688    302.6440         Sub-Saharan Africa
## 2143  2022-09-16 61.24700   11175379    281.9347         Sub-Saharan Africa
## 2144  2022-09-16 45.99900    3854446    393.5041         Sub-Saharan Africa
## 2145  2022-09-16 46.32700    3949264    380.4441         Sub-Saharan Africa
## 2146  2022-09-16 46.60800    4051239    377.0426         Sub-Saharan Africa
## 2147  2022-09-16 46.85200    4157296    371.0652         Sub-Saharan Africa
## 2148  2022-09-16 44.52800    3605120    349.7761         Sub-Saharan Africa
## 2149  2022-09-16 43.84100    3479070    352.6043         Sub-Saharan Africa
## 2150  2022-09-16 48.33900    6267132    314.7080         Sub-Saharan Africa
## 2151  2022-09-16 49.09100    6378871    306.5459         Sub-Saharan Africa
## 2152  2022-09-16       NA   12255429    267.3191         Sub-Saharan Africa
## 2153  2022-09-16 60.12300   10160034    305.5111         Sub-Saharan Africa
## 2154  2022-09-16 60.52800   10488002    294.1818         Sub-Saharan Africa
## 2155  2022-09-16 60.89800   10827010    286.3955         Sub-Saharan Africa
## 2156  2022-09-16 44.24600    3569655    330.4840         Sub-Saharan Africa
## 2157  2022-09-16 48.24300    4886745    420.0272         Sub-Saharan Africa
## 2158  2022-09-16 61.58400   11530577    278.2026         Sub-Saharan Africa
## 2159  2022-09-16 61.91600   11890781    270.6577         Sub-Saharan Africa
## 2160  2022-09-16 48.08000    5307069    434.3570         Sub-Saharan Africa
## 2161  2022-09-16 58.56800    9245992    319.3983         Sub-Saharan Africa
## 2162  2022-09-16 47.84400    4621096    384.8441         Sub-Saharan Africa
## 2163  2022-09-16 44.02100    3530000    357.0627         Sub-Saharan Africa
## 2164  2022-09-16 57.92500    8958406    315.6172         Sub-Saharan Africa
## 2165  2022-09-16 51.69000    6909161    297.9877         Sub-Saharan Africa
## 2166  2022-09-16 48.30100    5027143    430.7657         Sub-Saharan Africa
## 2167  2022-09-16 48.24400    5168703    440.0463         Sub-Saharan Africa
## 2168  2022-09-16 59.14800    9540302    324.7877         Sub-Saharan Africa
## 2169  2022-09-16 59.66500    9844301    328.1058         Sub-Saharan Africa
## 2170  2022-09-16 48.08000    4750832    418.4433         Sub-Saharan Africa
## 2171  2022-09-16 72.11700     524740   3043.0314         Sub-Saharan Africa
## 2172  2022-09-16 71.24300     498858   3091.2230         Sub-Saharan Africa
## 2173  2022-09-16 71.06200     492644   3010.7222         Sub-Saharan Africa
## 2174  2022-09-16 69.09900     435701   1983.2976         Sub-Saharan Africa
## 2175  2022-09-16 52.69800     263461          NA         Sub-Saharan Africa
## 2176  2022-09-16 71.66100     511740   3070.4637         Sub-Saharan Africa
## 2177  2022-09-16 70.91100     486667   3003.6412         Sub-Saharan Africa
## 2178  2022-09-16 55.63100     271068          NA         Sub-Saharan Africa
## 2179  2022-09-16 71.44500     505241   3085.1917         Sub-Saharan Africa
## 2180  2022-09-16 73.16600     555988   2935.3210         Sub-Saharan Africa
## 2181  2022-09-16 71.88600     518276   3050.2723         Sub-Saharan Africa
## 2182  2022-09-16 61.79400     288678    646.6953         Sub-Saharan Africa
## 2183  2022-09-16 56.60900     270228          NA         Sub-Saharan Africa
## 2184  2022-09-16 53.29800     268633          NA         Sub-Saharan Africa
## 2185  2022-09-16 53.97000     271315          NA         Sub-Saharan Africa
## 2186  2022-09-16 54.74500     271841          NA         Sub-Saharan Africa
## 2187  2022-09-16 62.10100     294244    652.3860         Sub-Saharan Africa
## 2188  2022-09-16 64.01500     325744    827.6898         Sub-Saharan Africa
## 2189  2022-09-16 72.34700     531140   3147.8374         Sub-Saharan Africa
## 2190  2022-09-16 72.57000     537499   3225.7518         Sub-Saharan Africa
## 2191  2022-09-16 63.67800     321137    792.0648         Sub-Saharan Africa
## 2192  2022-09-16 72.98100     549936   3482.4485         Sub-Saharan Africa
## 2193  2022-09-16 65.59800     366057    958.6388         Sub-Saharan Africa
## 2194  2022-09-16 65.89900     376409   1111.1092         Sub-Saharan Africa
## 2195  2022-09-16 66.22400     386288   1236.5619         Sub-Saharan Africa
## 2196  2022-09-16 66.59600     395533   1344.6864         Sub-Saharan Africa
## 2197  2022-09-16 62.68900     306140    712.7151         Sub-Saharan Africa
## 2198  2022-09-16 63.00400     311668    760.5748         Sub-Saharan Africa
## 2199  2022-09-16 63.33800     316613    770.1942         Sub-Saharan Africa
## 2200  2022-09-16 68.58300     428178   1974.0888         Sub-Saharan Africa
## 2201  2022-09-16 48.66000     205321          NA         Sub-Saharan Africa
## 2202  2022-09-16 69.55700     442955   2053.2537         Sub-Saharan Africa
## 2203  2022-09-16 69.93200     449925   2105.8666         Sub-Saharan Africa
## 2204  2022-09-16 72.78200     543764   3333.0661         Sub-Saharan Africa
## 2205  2022-09-16 70.42400     463034   2410.7738         Sub-Saharan Africa
## 2206  2022-09-16 70.56500     469171   2569.1922         Sub-Saharan Africa
## 2207  2022-09-16 70.67600     475067   2922.2331         Sub-Saharan Africa
## 2208  2022-09-16 70.78600     480846   3079.1205         Sub-Saharan Africa
## 2209  2022-09-16 52.11900     256169          NA         Sub-Saharan Africa
## 2210  2022-09-16 51.53200     247522          NA         Sub-Saharan Africa
## 2211  2022-09-16 62.39200     300226    700.2617         Sub-Saharan Africa
## 2212  2022-09-16 67.51200     412513   1612.0238         Sub-Saharan Africa
## 2213  2022-09-16 68.04100     420456   1759.0645         Sub-Saharan Africa
## 2214  2022-09-16 48.46100     201770          NA         Sub-Saharan Africa
## 2215  2022-09-16 60.31200     276182          NA         Sub-Saharan Africa
## 2216  2022-09-16 57.63000     270240          NA         Sub-Saharan Africa
## 2217  2022-09-16 58.62600     271345          NA         Sub-Saharan Africa
## 2218  2022-09-16 59.53500     273335          NA         Sub-Saharan Africa
## 2219  2022-09-16 64.67600     337953    849.0827         Sub-Saharan Africa
## 2220  2022-09-16 60.94100     279729          NA         Sub-Saharan Africa
## 2221  2022-09-16 61.42500     283848    606.4455         Sub-Saharan Africa
## 2222  2022-09-16       NA     561901   3106.3612         Sub-Saharan Africa
## 2223  2022-09-16 50.93400     238655          NA         Sub-Saharan Africa
## 2224  2022-09-16 67.02600     404248   1461.9817         Sub-Saharan Africa
## 2225  2022-09-16 65.29800     355763    907.3612         Sub-Saharan Africa
## 2226  2022-09-16 64.34900     331180    860.4913         Sub-Saharan Africa
## 2227  2022-09-16 48.94400     210141          NA         Sub-Saharan Africa
## 2228  2022-09-16 64.99200     346229    840.4243         Sub-Saharan Africa
## 2229  2022-09-16 49.32300     216087          NA         Sub-Saharan Africa
## 2230  2022-09-16 50.34500     230421          NA         Sub-Saharan Africa
## 2231  2022-09-16 70.21900     456619   2286.5834         Sub-Saharan Africa
## 2232  2022-09-16 49.79700     222949          NA         Sub-Saharan Africa
## 2233  2022-09-16 54.22800    9623899          NA        East Asia & Pacific
## 2234  2022-09-16 53.30200    8691331          NA        East Asia & Pacific
## 2235  2022-09-16 52.58700    8198082          NA        East Asia & Pacific
## 2236  2022-09-16 42.29800    6585034          NA        East Asia & Pacific
## 2237  2022-09-16 42.48600    6685961          NA        East Asia & Pacific
## 2238  2022-09-16 53.59500    8975597          NA        East Asia & Pacific
## 2239  2022-09-16 53.91600    9289298          NA        East Asia & Pacific
## 2240  2022-09-16 41.71000    6183586          NA        East Asia & Pacific
## 2241  2022-09-16 52.99900    8435909          NA        East Asia & Pacific
## 2242  2022-09-16 58.43200   12155241    486.5413        East Asia & Pacific
## 2243  2022-09-16 41.89300    6331443          NA        East Asia & Pacific
## 2244  2022-09-16 42.08300    6467191          NA        East Asia & Pacific
## 2245  2022-09-16 22.74400    6770393          NA        East Asia & Pacific
## 2246  2022-09-16 27.53600    6693759          NA        East Asia & Pacific
## 2247  2022-09-16 33.34200    6749849          NA        East Asia & Pacific
## 2248  2022-09-16 32.66700    7449233          NA        East Asia & Pacific
## 2249  2022-09-16 28.04000    7533332          NA        East Asia & Pacific
## 2250  2022-09-16 51.91600    7960952          NA        East Asia & Pacific
## 2251  2022-09-16 36.67600    7302114          NA        East Asia & Pacific
## 2252  2022-09-16 23.59500    7524457          NA        East Asia & Pacific
## 2253  2022-09-16 59.33500   12405411    515.5754        East Asia & Pacific
## 2254  2022-09-16 60.28300   12637719    539.3939        East Asia & Pacific
## 2255  2022-09-16 41.36600    5872968          NA        East Asia & Pacific
## 2256  2022-09-16 62.18600   13066475    624.6039        East Asia & Pacific
## 2257  2022-09-16 42.55000    6779778          NA        East Asia & Pacific
## 2258  2022-09-16 54.51400    9970727    579.1964        East Asia & Pacific
## 2259  2022-09-16 61.24100   12856171    575.3292        East Asia & Pacific
## 2260  2022-09-16 55.18900   10656145    388.2880        East Asia & Pacific
## 2261  2022-09-16 55.65300   10982919    398.9533        East Asia & Pacific
## 2262  2022-09-16 41.52600    6028434          NA        East Asia & Pacific
## 2263  2022-09-16 41.24200    5722372          NA        East Asia & Pacific
## 2264  2022-09-16 67.48000   14780454    992.5498        East Asia & Pacific
## 2265  2022-09-16 57.60400   11886464    452.3382        East Asia & Pacific
## 2266  2022-09-16 20.31700    7404687          NA        East Asia & Pacific
## 2267  2022-09-16 18.90700    7196042          NA        East Asia & Pacific
## 2268  2022-09-16 19.72500    6957267          NA        East Asia & Pacific
## 2269  2022-09-16 69.28900   16009413   1289.9858        East Asia & Pacific
## 2270  2022-09-16 69.57000   16249795   1365.8291        East Asia & Pacific
## 2271  2022-09-16 42.36900    6880623          NA        East Asia & Pacific
## 2272  2022-09-16 54.82000   10317901    364.8811        East Asia & Pacific
## 2273  2022-09-16 39.69900    7139640          NA        East Asia & Pacific
## 2274  2022-09-16 66.01400   14093605    854.9558        East Asia & Pacific
## 2275  2022-09-16 66.56000   14312205    892.1004        East Asia & Pacific
## 2276  2022-09-16 67.04300   14541421    940.1118        East Asia & Pacific
## 2277  2022-09-16 56.86200   11600510    411.2389        East Asia & Pacific
## 2278  2022-09-16 68.97700   15766290   1224.2204        East Asia & Pacific
## 2279  2022-09-16 67.88800   15026330   1048.1325        East Asia & Pacific
## 2280  2022-09-16 68.27300   15274506   1104.7500        East Asia & Pacific
## 2281  2022-09-16 68.63700   15521435   1162.9050        East Asia & Pacific
## 2282  2022-09-16 39.15700    6919803          NA        East Asia & Pacific
## 2283  2022-09-16 44.17300    7170004          NA        East Asia & Pacific
## 2284  2022-09-16 69.82300   16486542   1441.1792        East Asia & Pacific
## 2285  2022-09-16 41.56600    6996576          NA        East Asia & Pacific
## 2286  2022-09-16 63.92700   13477705    759.6476        East Asia & Pacific
## 2287  2022-09-16 64.69700   13679953    824.8494        East Asia & Pacific
## 2288  2022-09-16 48.02500    7447844          NA        East Asia & Pacific
## 2289  2022-09-16 50.56300    7714894          NA        East Asia & Pacific
## 2290  2022-09-16 56.21200   11298594    403.3448        East Asia & Pacific
## 2291  2022-09-16 65.39400   13883835    867.1215        East Asia & Pacific
## 2292  2022-09-16 63.08800   13273355    696.3394        East Asia & Pacific
## 2293  2022-09-16 70.05400   16718971   1377.1451        East Asia & Pacific
## 2294  2022-09-16       NA   16946446   1399.7778        East Asia & Pacific
## 2295  2022-09-16 57.58300   23298376   1382.5098         Sub-Saharan Africa
## 2296  2022-09-16 55.10100   20341236   1248.1805         Sub-Saharan Africa
## 2297  2022-09-16 52.31200    9166813   1526.2616         Sub-Saharan Africa
## 2298  2022-09-16 55.58100   20906392   1255.4772         Sub-Saharan Africa
## 2299  2022-09-16 54.62700   19789922   1246.8074         Sub-Saharan Africa
## 2300  2022-09-16 57.08300   22681853   1343.9285         Sub-Saharan Africa
## 2301  2022-09-16 47.05300    6689659    914.5959         Sub-Saharan Africa
## 2302  2022-09-16 56.57600   22077300   1306.0275         Sub-Saharan Africa
## 2303  2022-09-16 54.15300   19252674   1249.3752         Sub-Saharan Africa
## 2304  2022-09-16 44.55500    5909874    976.4535         Sub-Saharan Africa
## 2305  2022-09-16 56.07300   21485267   1278.1644         Sub-Saharan Africa
## 2306  2022-09-16 45.50900    6201410    881.6186         Sub-Saharan Africa
## 2307  2022-09-16 46.00800    6357096    902.1817         Sub-Saharan Africa
## 2308  2022-09-16 46.52300    6519754    906.8737         Sub-Saharan Africa
## 2309  2022-09-16 45.02500    6052419    849.4146         Sub-Saharan Africa
## 2310  2022-09-16 47.59300    6867170    914.7770         Sub-Saharan Africa
## 2311  2022-09-16 58.06300   23926549   1407.2745         Sub-Saharan Africa
## 2312  2022-09-16 58.51100   24566070   1419.1761         Sub-Saharan Africa
## 2313  2022-09-16 53.47600   10395481   1783.5491         Sub-Saharan Africa
## 2314  2022-09-16 59.29200   25876387   1449.2775         Sub-Saharan Africa
## 2315  2022-09-16 52.34300   12864091   1028.4435         Sub-Saharan Africa
## 2316  2022-09-16 51.93600   13230978   1018.6920         Sub-Saharan Africa
## 2317  2022-09-16 51.55400   13599984   1019.7331         Sub-Saharan Africa
## 2318  2022-09-16 51.53700    8621409   1289.1472         Sub-Saharan Africa
## 2319  2022-09-16 52.67000    9456496   1581.1025         Sub-Saharan Africa
## 2320  2022-09-16 52.99700    9757849   1646.8039         Sub-Saharan Africa
## 2321  2022-09-16 53.27300   10070806   1724.2865         Sub-Saharan Africa
## 2322  2022-09-16 50.99300   15513944   1106.6540         Sub-Saharan Africa
## 2323  2022-09-16 51.22200   15928910   1124.4323         Sub-Saharan Africa
## 2324  2022-09-16 51.53600   16357605   1143.9854         Sub-Saharan Africa
## 2325  2022-09-16 51.90800   16800869   1174.5405         Sub-Saharan Africa
## 2326  2022-09-16 58.92100   25216261   1437.2715         Sub-Saharan Africa
## 2327  2022-09-16 52.73800   12499499   1149.6311         Sub-Saharan Africa
## 2328  2022-09-16 53.21500   18223677   1230.1392         Sub-Saharan Africa
## 2329  2022-09-16 53.68100   18730283   1248.6626         Sub-Saharan Africa
## 2330  2022-09-16 44.09500    5773538    955.4193         Sub-Saharan Africa
## 2331  2022-09-16 43.63900    5643039    958.1023         Sub-Saharan Africa
## 2332  2022-09-16       NA   27224262   1432.5650         Sub-Saharan Africa
## 2333  2022-09-16 51.93300    8888534   1464.0074         Sub-Saharan Africa
## 2334  2022-09-16 50.88500   14723772   1074.5305         Sub-Saharan Africa
## 2335  2022-09-16 50.87800   15112598   1094.1125         Sub-Saharan Africa
## 2336  2022-09-16 52.76000   17733408   1217.7570         Sub-Saharan Africa
## 2337  2022-09-16 49.71900    7664398   1005.2865         Sub-Saharan Africa
## 2338  2022-09-16 48.13500    7052847    938.3969         Sub-Saharan Africa
## 2339  2022-09-16 48.67500    7247284   1011.2482         Sub-Saharan Africa
## 2340  2022-09-16 51.12300    8365560   1355.2078         Sub-Saharan Africa
## 2341  2022-09-16 51.23800   13970812   1034.5079         Sub-Saharan Africa
## 2342  2022-09-16 50.21300    7887571   1111.0596         Sub-Saharan Africa
## 2343  2022-09-16 50.68200    8121081   1316.5499         Sub-Saharan Africa
## 2344  2022-09-16 53.61100   11075423   1509.9572         Sub-Saharan Africa
## 2345  2022-09-16 49.20500    7451057   1094.1979         Sub-Saharan Africa
## 2346  2022-09-16 51.00900   14344444   1053.1774         Sub-Saharan Africa
## 2347  2022-09-16 53.59100   10731058   1690.6855         Sub-Saharan Africa
## 2348  2022-09-16 42.72100    5398730    932.2625         Sub-Saharan Africa
## 2349  2022-09-16 43.18200    5518104    946.2303         Sub-Saharan Africa
## 2350  2022-09-16 53.36200   11780086   1308.7077         Sub-Saharan Africa
## 2351  2022-09-16 53.08800   12137912   1221.7529         Sub-Saharan Africa
## 2352  2022-09-16 42.25500    5285015    924.2111         Sub-Saharan Africa
## 2353  2022-09-16 59.62600   26545864   1419.6767         Sub-Saharan Africa
## 2354  2022-09-16 41.78500    5176920    932.4713         Sub-Saharan Africa
## 2355  2022-09-16 52.32100   17259322   1223.9342         Sub-Saharan Africa
## 2356  2022-09-16 53.53600   11425807   1437.0272         Sub-Saharan Africa
## 2357  2022-09-16 76.91951   26791747          NA              North America
## 2358  2022-09-16 71.38073   18964000          NA              North America
## 2359  2022-09-16 76.36829   25842116          NA              North America
## 2360  2022-09-16 76.71951   26446601          NA              North America
## 2361  2022-09-16 71.36707   18614000          NA              North America
## 2362  2022-09-16 71.77634   19325000          NA              North America
## 2363  2022-09-16 76.21707   25607053          NA              North America
## 2364  2022-09-16 76.51951   26100278          NA              North America
## 2365  2022-09-16 73.85610   23449808          NA              North America
## 2366  2022-09-16 73.16268   22491777          NA              North America
## 2367  2022-09-16 73.23756   22807969          NA              North America
## 2368  2022-09-16 71.34610   18271000          NA              North America
## 2369  2022-09-16 72.70049   21324000          NA              North America
## 2370  2022-09-16 73.02927   21962032          NA              North America
## 2371  2022-09-16 76.06585   25366451          NA              North America
## 2372  2022-09-16 73.52171   23143275          NA              North America
## 2373  2022-09-16 78.18049   29610218          NA              North America
## 2374  2022-09-16 78.43171   29905948  31222.7248              North America
## 2375  2022-09-16 78.63415   30155173  31830.6171              North America
## 2376  2022-09-16 71.13317   17909009          NA              North America
## 2377  2022-09-16 79.13659   30685730  34121.6092              North America
## 2378  2022-09-16 71.87220   19678000          NA              North America
## 2379  2022-09-16 77.11951   27276781          NA              North America
## 2380  2022-09-16 78.88537   30401286  32826.5308              North America
## 2381  2022-09-16 77.62195   28037420          NA              North America
## 2382  2022-09-16 77.72439   28371264          NA              North America
## 2383  2022-09-16 77.82439   28684764          NA              North America
## 2384  2022-09-16 75.76341   25116942          NA              North America
## 2385  2022-09-16 80.69512   33247118  42063.6331              North America
## 2386  2022-09-16 80.99512   33628895  40368.2920              North America
## 2387  2022-09-16 81.24634   34004889  41155.3236              North America
## 2388  2022-09-16 81.44878   34339328  42036.9978              North America
## 2389  2022-09-16 72.93390   22218463          NA              North America
## 2390  2022-09-16 81.74878   35082954  42846.2842              North America
## 2391  2022-09-16 81.80000   35437435  43635.0955              North America
## 2392  2022-09-16 72.00439   20048000          NA              North America
## 2393  2022-09-16 77.42195   27691138          NA              North America
## 2394  2022-09-16 72.35341   20744000          NA              North America
## 2395  2022-09-16 72.50146   21028000          NA              North America
## 2396  2022-09-16 80.34390   32571174  39776.1795              North America
## 2397  2022-09-16 80.54390   32889025  42097.4351              North America
## 2398  2022-09-16 75.46341   24819915          NA              North America
## 2399  2022-09-16 78.02927   29302311          NA              North America
## 2400  2022-09-16 74.52976   23963203          NA              North America
## 2401  2022-09-16 81.90000   35702908  43596.1355              North America
## 2402  2022-09-16 72.20780   20412000          NA              North America
## 2403  2022-09-16 81.64878   34714222  42315.8074              North America
## 2404  2022-09-16 79.74146   31644028  36024.0992              North America
## 2405  2022-09-16 74.86634   24201544          NA              North America
## 2406  2022-09-16 75.07805   24515667          NA              North America
## 2407  2022-09-16 74.21561   23725843          NA              North America
## 2408  2022-09-16       NA   38246108  43945.5570              North America
## 2409  2022-09-16 79.89268   31940655  37086.4493              North America
## 2410  2022-09-16 79.33902   31020902  34227.3417              North America
## 2411  2022-09-16 77.82683   29000663          NA              North America
## 2412  2022-09-16 81.90000   36545236  44325.4883              North America
## 2413  2022-09-16 80.19268   32243753  38573.1998              North America
## 2414  2022-09-16 79.49024   31360079  35015.7950              North America
## 2415  2022-09-16 81.90000   36109487  43536.9134              North America
## 2416  2022-09-16 82.04878   37065084  44917.4837              North America
## 2417  2022-09-16 81.74878   38037204  42258.6910              North America
## 2418  2022-09-16 82.04878   37601230  45109.2445              North America
## 2419  2022-09-16 71.92354    6696985   9218.3120                 Aggregates
## 2420  2022-09-16 63.80444    4432240          NA                 Aggregates
## 2421  2022-09-16 71.79199    6650981   8929.3233                 Aggregates
## 2422  2022-09-16 64.94362    4712556   5187.1854                 Aggregates
## 2423  2022-09-16 72.05571    6742657   9488.3207                 Aggregates
## 2424  2022-09-16 72.31606    6833394  10333.1054                 Aggregates
## 2425  2022-09-16 63.47645    4353623          NA                 Aggregates
## 2426  2022-09-16 64.11380    4508189          NA                 Aggregates
## 2427  2022-09-16 64.40772    4580382          NA                 Aggregates
## 2428  2022-09-16 71.71336    6604966   8513.8911                 Aggregates
## 2429  2022-09-16 64.68466    4648353   5035.1665                 Aggregates
## 2430  2022-09-16 73.27302    7222197  10181.8062                 Aggregates
## 2431  2022-09-16 67.62785    5360562   6169.2728                 Aggregates
## 2432  2022-09-16 72.18704    6788122  10067.7067                 Aggregates
## 2433  2022-09-16 72.56175    6925446   9963.7861                 Aggregates
## 2434  2022-09-16 68.30313    5548521   6485.7754                 Aggregates
## 2435  2022-09-16 65.18699    4773890   5423.2888                 Aggregates
## 2436  2022-09-16 67.86142    5419911   6417.9196                 Aggregates
## 2437  2022-09-16 71.53800    6559097   8275.7979                 Aggregates
## 2438  2022-09-16 69.54872    5894820   6275.3442                 Aggregates
## 2439  2022-09-16 69.76319    5930153   6373.7438                 Aggregates
## 2440  2022-09-16 72.44079    6878973  10398.4859                 Aggregates
## 2441  2022-09-16 70.19763    6009262   6609.3275                 Aggregates
## 2442  2022-09-16 68.08671    5482191   6502.2769                 Aggregates
## 2443  2022-09-16 70.58807    6112784   6727.8155                 Aggregates
## 2444  2022-09-16 69.98419    5967028   6596.8624                 Aggregates
## 2445  2022-09-16 70.83449    6227332   6987.2916                 Aggregates
## 2446  2022-09-16 70.93751    6281204   7130.0378                 Aggregates
## 2447  2022-09-16 72.67940    6973193  10029.6732                 Aggregates
## 2448  2022-09-16 70.71254    6170324   6859.5412                 Aggregates
## 2449  2022-09-16 72.91181    7072640  10138.0092                 Aggregates
## 2450  2022-09-16 69.32978    5855445   6203.6904                 Aggregates
## 2451  2022-09-16 71.41918    6513486   8167.4401                 Aggregates
## 2452  2022-09-16 63.12613    4274052          NA                 Aggregates
## 2453  2022-09-16 67.13337    5246547   5737.5434                 Aggregates
## 2454  2022-09-16 67.38521    5303289   5894.8936                 Aggregates
## 2455  2022-09-16 73.39596    7269385   9949.4161                 Aggregates
## 2456  2022-09-16 73.51749    7314956   9930.1922                 Aggregates
## 2457  2022-09-16 73.63711    7358929  10012.8163                 Aggregates
## 2458  2022-09-16 73.75473    7401389  10065.1249                 Aggregates
## 2459  2022-09-16 65.41993    4833839   5655.3970                 Aggregates
## 2460  2022-09-16 65.64882    4893444   5836.8617                 Aggregates
## 2461  2022-09-16 72.79530    7022367  10071.4687                 Aggregates
## 2462  2022-09-16 69.12268    5808206   6172.5326                 Aggregates
## 2463  2022-09-16 66.36500    5071912   6131.4852                 Aggregates
## 2464  2022-09-16 66.61829    5130797   5867.0473                 Aggregates
## 2465  2022-09-16 66.87568    5189174   5730.0831                 Aggregates
## 2466  2022-09-16 73.03014    7123315  10142.2789                 Aggregates
## 2467  2022-09-16 73.15059    7173443  10139.9499                 Aggregates
## 2468  2022-09-16 73.87091    7442291   9074.1279                 Aggregates
## 2469  2022-09-16 70.39401    6058334   6642.6054                 Aggregates
## 2470  2022-09-16 65.88039    4953088   5890.8501                 Aggregates
## 2471  2022-09-16 66.11889    5012600   6241.0865                 Aggregates
## 2472  2022-09-16 68.92094    5751508   6228.9254                 Aggregates
## 2473  2022-09-16       NA    7481631   9491.6662                 Aggregates
## 2474  2022-09-16 62.74631    4194711          NA                 Aggregates
## 2475  2022-09-16 68.51781    5617902   6472.4708                 Aggregates
## 2476  2022-09-16 68.71894    5687113   6238.3365                 Aggregates
## 2477  2022-09-16 71.31028    6468461   7928.4577                 Aggregates
## 2478  2022-09-16 71.16377    6378551   7562.5086                 Aggregates
## 2479  2022-09-16 71.21031    6423851   7598.9366                 Aggregates
## 2480  2022-09-16 71.02899    6331277   7321.2423                 Aggregates
## 2481  2022-09-16       NA      24028          NA  Latin America & Caribbean
## 2482  2022-09-16       NA      20426          NA  Latin America & Caribbean
## 2483  2022-09-16       NA      22775          NA  Latin America & Caribbean
## 2484  2022-09-16       NA      18662          NA  Latin America & Caribbean
## 2485  2022-09-16       NA      19460          NA  Latin America & Caribbean
## 2486  2022-09-16       NA      21539          NA  Latin America & Caribbean
## 2487  2022-09-16       NA      10135          NA  Latin America & Caribbean
## 2488  2022-09-16       NA      10778          NA  Latin America & Caribbean
## 2489  2022-09-16       NA       8518          NA  Latin America & Caribbean
## 2490  2022-09-16       NA      12234          NA  Latin America & Caribbean
## 2491  2022-09-16       NA       8299          NA  Latin America & Caribbean
## 2492  2022-09-16       NA       8370          NA  Latin America & Caribbean
## 2493  2022-09-16       NA      11488          NA  Latin America & Caribbean
## 2494  2022-09-16       NA       8219          NA  Latin America & Caribbean
## 2495  2022-09-16       NA      38330          NA  Latin America & Caribbean
## 2496  2022-09-16       NA      40423          NA  Latin America & Caribbean
## 2497  2022-09-16       NA       8444          NA  Latin America & Caribbean
## 2498  2022-09-16       NA      17436          NA  Latin America & Caribbean
## 2499  2022-09-16       NA      45347          NA  Latin America & Caribbean
## 2500  2022-09-16       NA      25307          NA  Latin America & Caribbean
## 2501  2022-09-16       NA      42305          NA  Latin America & Caribbean
## 2502  2022-09-16       NA      43934          NA  Latin America & Caribbean
## 2503  2022-09-16       NA      29068          NA  Latin America & Caribbean
## 2504  2022-09-16       NA      30521          NA  Latin America & Caribbean
## 2505  2022-09-16       NA      18005          NA  Latin America & Caribbean
## 2506  2022-09-16       NA      16857          NA  Latin America & Caribbean
## 2507  2022-09-16       NA      36155          NA  Latin America & Caribbean
## 2508  2022-09-16       NA      57877  75165.9870  Latin America & Caribbean
## 2509  2022-09-16       NA      58963  74688.8864  Latin America & Caribbean
## 2510  2022-09-16       NA       8638          NA  Latin America & Caribbean
## 2511  2022-09-16       NA       8833          NA  Latin America & Caribbean
## 2512  2022-09-16       NA       9143          NA  Latin America & Caribbean
## 2513  2022-09-16       NA      46624          NA  Latin America & Caribbean
## 2514  2022-09-16       NA      26540          NA  Latin America & Caribbean
## 2515  2022-09-16       NA      27784          NA  Latin America & Caribbean
## 2516  2022-09-16       NA       8141          NA  Latin America & Caribbean
## 2517  2022-09-16       NA      52280  91434.5367  Latin America & Caribbean
## 2518  2022-09-16       NA      53835  88476.1416  Latin America & Caribbean
## 2519  2022-09-16       NA      55321  79899.9647  Latin America & Caribbean
## 2520  2022-09-16 82.19024      56672  75877.1675  Latin America & Caribbean
## 2521  2022-09-16       NA      60848  75246.8262  Latin America & Caribbean
## 2522  2022-09-16       NA       9588          NA  Latin America & Caribbean
## 2523  2022-09-16       NA       7870          NA  Latin America & Caribbean
## 2524  2022-09-16       NA      59933  74420.1192  Latin America & Caribbean
## 2525  2022-09-16       NA      13848          NA  Latin America & Caribbean
## 2526  2022-09-16       NA      14681          NA  Latin America & Caribbean
## 2527  2022-09-16       NA      15485          NA  Latin America & Caribbean
## 2528  2022-09-16       NA       8024          NA  Latin America & Caribbean
## 2529  2022-09-16       NA      34065          NA  Latin America & Caribbean
## 2530  2022-09-16       NA      49261          NA  Latin America & Caribbean
## 2531  2022-09-16       NA      61721  76284.1943  Latin America & Caribbean
## 2532  2022-09-16       NA      16207          NA  Latin America & Caribbean
## 2533  2022-09-16       NA      47899          NA  Latin America & Caribbean
## 2534  2022-09-16       NA      66498          NA  Latin America & Caribbean
## 2535  2022-09-16       NA      50729  91341.2941  Latin America & Caribbean
## 2536  2022-09-16       NA      62564  77694.6107  Latin America & Caribbean
## 2537  2022-09-16       NA      32161          NA  Latin America & Caribbean
## 2538  2022-09-16       NA      65720  77959.1105  Latin America & Caribbean
## 2539  2022-09-16       NA      13023          NA  Latin America & Caribbean
## 2540  2022-09-16       NA      64948  83639.8336  Latin America & Caribbean
## 2541  2022-09-16       NA      63382  79133.8002  Latin America & Caribbean
## 2542  2022-09-16       NA      64172  81494.8887  Latin America & Caribbean
## 2543  2022-09-16 44.74400    4038380    454.5074         Sub-Saharan Africa
## 2544  2022-09-16 45.15800    4118075    466.9768         Sub-Saharan Africa
## 2545  2022-09-16 44.41300    3959883    459.3453         Sub-Saharan Africa
## 2546  2022-09-16 44.18200    3881185    442.1528         Sub-Saharan Africa
## 2547  2022-09-16 37.68300    1579375    622.8525         Sub-Saharan Africa
## 2548  2022-09-16 38.20100    1608618    624.2515         Sub-Saharan Africa
## 2549  2022-09-16 45.63600    4198004    479.1922         Sub-Saharan Africa
## 2550  2022-09-16 46.16100    4273368    480.4109         Sub-Saharan Africa
## 2551  2022-09-16 52.24000    4596023    404.0025         Sub-Saharan Africa
## 2552  2022-09-16 47.64800    2039914    700.5088         Sub-Saharan Africa
## 2553  2022-09-16 48.23300    2087662    692.7642         Sub-Saharan Africa
## 2554  2022-09-16 38.75400    1639706    618.2191         Sub-Saharan Africa
## 2555  2022-09-16 39.35500    1673019    609.8160         Sub-Saharan Africa
## 2556  2022-09-16 40.00500    1708306    625.1492         Sub-Saharan Africa
## 2557  2022-09-16 46.71900    4337623    513.9374         Sub-Saharan Africa
## 2558  2022-09-16 47.31200    4386765    531.7130         Sub-Saharan Africa
## 2559  2022-09-16 44.06300    3802129    477.0976         Sub-Saharan Africa
## 2560  2022-09-16 49.39700    2745735    555.6043         Sub-Saharan Africa
## 2561  2022-09-16 49.10400    2806740    531.8557         Sub-Saharan Africa
## 2562  2022-09-16 48.72800    2878507    515.7300         Sub-Saharan Africa
## 2563  2022-09-16 48.73700    2140778    658.9218         Sub-Saharan Africa
## 2564  2022-09-16 49.15300    2199359    612.6464         Sub-Saharan Africa
## 2565  2022-09-16 49.47600    2264441    585.8482         Sub-Saharan Africa
## 2566  2022-09-16 49.71300    2335339    611.8931         Sub-Saharan Africa
## 2567  2022-09-16 45.92200    3308235    454.8332         Sub-Saharan Africa
## 2568  2022-09-16 47.95000    4418639    550.0199         Sub-Saharan Africa
## 2569  2022-09-16 48.63800    4436411    575.5019         Sub-Saharan Africa
## 2570  2022-09-16 49.37100    4447945    365.1161         Sub-Saharan Africa
## 2571  2022-09-16 49.79700    2646836    555.6860         Sub-Saharan Africa
## 2572  2022-09-16 49.62400    2693974    555.2997         Sub-Saharan Africa
## 2573  2022-09-16 36.71500    1526057    674.2440         Sub-Saharan Africa
## 2574  2022-09-16 37.19000    1551908    638.3898         Sub-Saharan Africa
## 2575  2022-09-16 46.99200    1997017    689.3190         Sub-Saharan Africa
## 2576  2022-09-16 51.59300    4537683    391.4735         Sub-Saharan Africa
## 2577  2022-09-16 48.26700    2959236    469.4336         Sub-Saharan Africa
## 2578  2022-09-16 52.80500    4666375    412.9902         Sub-Saharan Africa
## 2579  2022-09-16 53.28300    4745179    418.7217         Sub-Saharan Africa
## 2580  2022-09-16 40.70300    1744198    620.8821         Sub-Saharan Africa
## 2581  2022-09-16 41.44400    1778870    651.9524         Sub-Saharan Africa
## 2582  2022-09-16 42.22300    1811157    655.2684         Sub-Saharan Africa
## 2583  2022-09-16 49.91200    2597765    595.5993         Sub-Saharan Africa
## 2584  2022-09-16 43.86600    1867786    642.5772         Sub-Saharan Africa
## 2585  2022-09-16 44.69500    1894850    645.3638         Sub-Saharan Africa
## 2586  2022-09-16 45.50400    1924386    675.7405         Sub-Saharan Africa
## 2587  2022-09-16 46.27500    1958367    666.7045         Sub-Saharan Africa
## 2588  2022-09-16 50.88100    4493171    377.4229         Sub-Saharan Africa
## 2589  2022-09-16 53.67900    4829764    415.0910         Sub-Saharan Africa
## 2590  2022-09-16       NA    4919987    411.1463         Sub-Saharan Africa
## 2591  2022-09-16 47.73100    3046148    457.5689         Sub-Saharan Africa
## 2592  2022-09-16 47.14300    3135017    466.3831         Sub-Saharan Africa
## 2593  2022-09-16 49.96600    2542170    587.6003         Sub-Saharan Africa
## 2594  2022-09-16 44.19000    3640421    460.3452         Sub-Saharan Africa
## 2595  2022-09-16 49.87200    2408322    545.1313         Sub-Saharan Africa
## 2596  2022-09-16 43.03600    1840517    652.1032         Sub-Saharan Africa
## 2597  2022-09-16 49.95500    2478382    579.9480         Sub-Saharan Africa
## 2598  2022-09-16 46.53000    3222662    486.3657         Sub-Saharan Africa
## 2599  2022-09-16 44.06100    3722016    470.3560         Sub-Saharan Africa
## 2600  2022-09-16 36.24900    1501668    652.8550         Sub-Saharan Africa
## 2601  2022-09-16 50.12900    4464171    364.0840         Sub-Saharan Africa
## 2602  2022-09-16 44.46100    3558019    483.0313         Sub-Saharan Africa
## 2603  2022-09-16 44.85700    3475485    477.3187         Sub-Saharan Africa
## 2604  2022-09-16 45.35300    3392432    467.0523         Sub-Saharan Africa
## 2605  2022-09-16 69.89051  106541316          NA                 Aggregates
## 2606  2022-09-16 70.37205  107129392          NA                 Aggregates
## 2607  2022-09-16 70.65633  110743128   6308.5478                 Aggregates
## 2608  2022-09-16 70.45547  107730380          NA                 Aggregates
## 2609  2022-09-16 70.23940  105948616          NA                 Aggregates
## 2610  2022-09-16 70.73197  110801640          NA                 Aggregates
## 2611  2022-09-16 69.92544  100357161          NA                 Aggregates
## 2612  2022-09-16 69.05248   94715795          NA                 Aggregates
## 2613  2022-09-16 70.38979  108297837          NA                 Aggregates
## 2614  2022-09-16 69.52707   96146336          NA                 Aggregates
## 2615  2022-09-16 68.69605   93840016          NA                 Aggregates
## 2616  2022-09-16 77.26684  102398494  14844.3166                 Aggregates
## 2617  2022-09-16 76.14417  102172351  14316.2584                 Aggregates
## 2618  2022-09-16       NA  101669618  15187.5802                 Aggregates
## 2619  2022-09-16 69.27274   97043270          NA                 Aggregates
## 2620  2022-09-16 70.84599  110041924   5703.8778                 Aggregates
## 2621  2022-09-16 70.86954  110021594   5939.1689                 Aggregates
## 2622  2022-09-16 67.82139   91401764          NA                 Aggregates
## 2623  2022-09-16 70.73284  110111454   5613.4095                 Aggregates
## 2624  2022-09-16 70.34911  108838073          NA                 Aggregates
## 2625  2022-09-16 70.31288  109338285          NA                 Aggregates
## 2626  2022-09-16 69.27700   95440988          NA                 Aggregates
## 2627  2022-09-16 76.94744  102740078  13605.0467                 Aggregates
## 2628  2022-09-16 76.97682  102538451  14244.0241                 Aggregates
## 2629  2022-09-16 73.24242  106959751   8025.2415                 Aggregates
## 2630  2022-09-16 73.38225  106624167   8379.3178                 Aggregates
## 2631  2022-09-16 70.57522  110469467   5706.5689                 Aggregates
## 2632  2022-09-16 69.27573   98606630          NA                 Aggregates
## 2633  2022-09-16 69.44696   99134548          NA                 Aggregates
## 2634  2022-09-16 69.48517   99635258          NA                 Aggregates
## 2635  2022-09-16 74.57595  105001883  11149.1079                 Aggregates
## 2636  2022-09-16 68.26220   92232738          NA                 Aggregates
## 2637  2022-09-16 68.00693   93009498          NA                 Aggregates
## 2638  2022-09-16 71.89824  109238340   6945.4498                 Aggregates
## 2639  2022-09-16 72.18456  109060951   7089.6327                 Aggregates
## 2640  2022-09-16 72.71972  108447824   7411.7233                 Aggregates
## 2641  2022-09-16 73.09615  107660041   7695.4741                 Aggregates
## 2642  2022-09-16 70.14793  105329397          NA                 Aggregates
## 2643  2022-09-16 76.96981  102994278  12940.1793                 Aggregates
## 2644  2022-09-16 69.53603   97884022          NA                 Aggregates
## 2645  2022-09-16 73.73043  106331716   8892.7063                 Aggregates
## 2646  2022-09-16 73.84500  106041911   9364.5451                 Aggregates
## 2647  2022-09-16 74.09260  105772481  10006.8693                 Aggregates
## 2648  2022-09-16 74.25065  105378748  10689.3952                 Aggregates
## 2649  2022-09-16 71.02542  109864246   6287.4336                 Aggregates
## 2650  2022-09-16 70.06778  101112680          NA                 Aggregates
## 2651  2022-09-16 70.30594  101939916          NA                 Aggregates
## 2652  2022-09-16 70.17441  102860571          NA                 Aggregates
## 2653  2022-09-16 70.31915  103776068          NA                 Aggregates
## 2654  2022-09-16 70.24237  104616884          NA                 Aggregates
## 2655  2022-09-16 70.86171  110686740          NA                 Aggregates
## 2656  2022-09-16 76.57188  103257886  12522.6611                 Aggregates
## 2657  2022-09-16 75.88847  104174038  11366.5397                 Aggregates
## 2658  2022-09-16 70.56514  109824166          NA                 Aggregates
## 2659  2022-09-16 71.33606  109626194   6587.4083                 Aggregates
## 2660  2022-09-16 71.51726  109422013   6752.6852                 Aggregates
## 2661  2022-09-16 75.29397  104421447  11002.4434                 Aggregates
## 2662  2022-09-16 74.93036  104800475  10779.6995                 Aggregates
## 2663  2022-09-16 70.61176  110296425          NA                 Aggregates
## 2664  2022-09-16 76.67562  103496179  12019.3545                 Aggregates
## 2665  2022-09-16 75.99349  103935318  11479.5755                 Aggregates
## 2666  2022-09-16 76.35516  103713726  11646.6681                 Aggregates
## 2667  2022-09-16 48.05700    9373913    464.5003         Sub-Saharan Africa
## 2668  2022-09-16 48.54900   10096630    676.1621         Sub-Saharan Africa
## 2669  2022-09-16 49.82000   11183589    653.8712         Sub-Saharan Africa
## 2670  2022-09-16 50.34600   11560142    659.2523         Sub-Saharan Africa
## 2671  2022-09-16 48.90700   10457122    657.0847         Sub-Saharan Africa
## 2672  2022-09-16 49.33500   10818031    655.9426         Sub-Saharan Africa
## 2673  2022-09-16 42.68100    3907891    434.9141         Sub-Saharan Africa
## 2674  2022-09-16 52.78900   13663562    779.8466         Sub-Saharan Africa
## 2675  2022-09-16 48.27000    9734761    597.7004         Sub-Saharan Africa
## 2676  2022-09-16 38.02000    3001604    565.3522         Sub-Saharan Africa
## 2677  2022-09-16 38.27900    3060365    562.2475         Sub-Saharan Africa
## 2678  2022-09-16 38.53600    3121226    580.8337         Sub-Saharan Africa
## 2679  2022-09-16 38.79500    3183576    560.3499         Sub-Saharan Africa
## 2680  2022-09-16 39.05900    3246527    535.6873         Sub-Saharan Africa
## 2681  2022-09-16 42.26400    3815253    486.2241         Sub-Saharan Africa
## 2682  2022-09-16 52.38600   13220433    753.9626         Sub-Saharan Africa
## 2683  2022-09-16 46.91000    5773930    452.0901         Sub-Saharan Africa
## 2684  2022-09-16 43.05900    3999918    445.9913         Sub-Saharan Africa
## 2685  2022-09-16 43.39600    4088568    475.6348         Sub-Saharan Africa
## 2686  2022-09-16 43.69800    4173131    479.8870         Sub-Saharan Africa
## 2687  2022-09-16 43.97900    4255242    481.1436         Sub-Saharan Africa
## 2688  2022-09-16 47.34500    6781057    401.3949         Sub-Saharan Africa
## 2689  2022-09-16 47.42600    7010159    393.0779         Sub-Saharan Africa
## 2690  2022-09-16 50.89000   11952134    724.0306         Sub-Saharan Africa
## 2691  2022-09-16 51.42400   12360986    700.6627         Sub-Saharan Africa
## 2692  2022-09-16 46.16200    5095400    451.7405         Sub-Saharan Africa
## 2693  2022-09-16 46.39700    5247281    420.7602         Sub-Saharan Africa
## 2694  2022-09-16 46.60100    5412844    398.1466         Sub-Saharan Africa
## 2695  2022-09-16 46.77200    5589624    445.2476         Sub-Saharan Africa
## 2696  2022-09-16 47.90000    9019226    420.8159         Sub-Saharan Africa
## 2697  2022-09-16 41.81300    3726189    492.1877         Sub-Saharan Africa
## 2698  2022-09-16 47.01900    5963250    419.4465         Sub-Saharan Africa
## 2699  2022-09-16 53.13700   14110971    776.0198         Sub-Saharan Africa
## 2700  2022-09-16 53.43800   14561658    704.9601         Sub-Saharan Africa
## 2701  2022-09-16 53.71200   15016761    663.1647         Sub-Saharan Africa
## 2702  2022-09-16 53.97700   15477727    658.6889         Sub-Saharan Africa
## 2703  2022-09-16 44.25100    4337292    469.8248         Sub-Saharan Africa
## 2704  2022-09-16 45.90300    4957561    381.2218         Sub-Saharan Africa
## 2705  2022-09-16 39.66500    3372182    509.4767         Sub-Saharan Africa
## 2706  2022-09-16 40.02800    3434817    504.0237         Sub-Saharan Africa
## 2707  2022-09-16 40.43500    3499370    492.4640         Sub-Saharan Africa
## 2708  2022-09-16 40.87800    3568402    516.1695         Sub-Saharan Africa
## 2709  2022-09-16 41.34400    3643608    514.9163         Sub-Saharan Africa
## 2710  2022-09-16 51.92800   12784748    737.6126         Sub-Saharan Africa
## 2711  2022-09-16 45.07100    4612858    329.4529         Sub-Saharan Africa
## 2712  2022-09-16 47.10800    6157085    440.9149         Sub-Saharan Africa
## 2713  2022-09-16 47.18700    6356741    461.2379         Sub-Saharan Africa
## 2714  2022-09-16 47.26500    6563925    376.5068         Sub-Saharan Africa
## 2715  2022-09-16 47.55900    7503494    396.5873         Sub-Saharan Africa
## 2716  2022-09-16 45.35100    4718157    339.3217         Sub-Saharan Africa
## 2717  2022-09-16 39.34400    3309583    528.6667         Sub-Saharan Africa
## 2718  2022-09-16 44.79300    4514427    333.1616         Sub-Saharan Africa
## 2719  2022-09-16 54.23900   15946882    660.0699         Sub-Saharan Africa
## 2720  2022-09-16 47.61000    7770053    409.6053         Sub-Saharan Africa
## 2721  2022-09-16 45.63000    4832316    383.2500         Sub-Saharan Africa
## 2722  2022-09-16 47.78900    8678049    403.1297         Sub-Saharan Africa
## 2723  2022-09-16 54.50500   16425859    630.5691         Sub-Saharan Africa
## 2724  2022-09-16 47.65700    8053532    392.4890         Sub-Saharan Africa
## 2725  2022-09-16 44.52100    4422743    361.9581         Sub-Saharan Africa
## 2726  2022-09-16       NA   16914985    604.9872         Sub-Saharan Africa
## 2727  2022-09-16 47.71300    8355654    374.9696         Sub-Saharan Africa
## 2728  2022-09-16 47.49800    7250974    388.4388         Sub-Saharan Africa
## 2729  2022-09-16 72.98300     127395          NA      Europe & Central Asia
## 2730  2022-09-16 73.89000     129976          NA      Europe & Central Asia
## 2731  2022-09-16 74.10100     131153          NA      Europe & Central Asia
## 2732  2022-09-16 72.77300     127186          NA      Europe & Central Asia
## 2733  2022-09-16 75.41000     140677          NA      Europe & Central Asia
## 2734  2022-09-16 73.43900     128204          NA      Europe & Central Asia
## 2735  2022-09-16 73.66800     128986          NA      Europe & Central Asia
## 2736  2022-09-16 71.62300     118725          NA      Europe & Central Asia
## 2737  2022-09-16 73.20800     127691          NA      Europe & Central Asia
## 2738  2022-09-16 83.24000     173859          NA      Europe & Central Asia
## 2739  2022-09-16 71.03000     112591          NA      Europe & Central Asia
## 2740  2022-09-16 71.14300     113777          NA      Europe & Central Asia
## 2741  2022-09-16 71.72600     119975          NA      Europe & Central Asia
## 2742  2022-09-16 76.75500     142867          NA      Europe & Central Asia
## 2743  2022-09-16       NA     175244          NA      Europe & Central Asia
## 2744  2022-09-16 75.98800     142006          NA      Europe & Central Asia
## 2745  2022-09-16 83.08600     172264          NA      Europe & Central Asia
## 2746  2022-09-16 74.48600     133800          NA      Europe & Central Asia
## 2747  2022-09-16 74.66000     135242          NA      Europe & Central Asia
## 2748  2022-09-16 74.82900     136762          NA      Europe & Central Asia
## 2749  2022-09-16 76.35100     142407          NA      Europe & Central Asia
## 2750  2022-09-16 75.19200     139580          NA      Europe & Central Asia
## 2751  2022-09-16 79.79500     150070          NA      Europe & Central Asia
## 2752  2022-09-16 75.67300     141469          NA      Europe & Central Asia
## 2753  2022-09-16 72.58000     126908          NA      Europe & Central Asia
## 2754  2022-09-16 71.39100     116229          NA      Europe & Central Asia
## 2755  2022-09-16 71.51200     117469          NA      Europe & Central Asia
## 2756  2022-09-16 81.04100     156441          NA      Europe & Central Asia
## 2757  2022-09-16 71.26500     114989          NA      Europe & Central Asia
## 2758  2022-09-16 74.30000     132445          NA      Europe & Central Asia
## 2759  2022-09-16 70.73900     109419          NA      Europe & Central Asia
## 2760  2022-09-16 70.83300     110398          NA      Europe & Central Asia
## 2761  2022-09-16 70.92800     111464          NA      Europe & Central Asia
## 2762  2022-09-16 79.30000     149097          NA      Europe & Central Asia
## 2763  2022-09-16 79.54800     149591          NA      Europe & Central Asia
## 2764  2022-09-16 82.92800     170496          NA      Europe & Central Asia
## 2765  2022-09-16 80.04500     150722          NA      Europe & Central Asia
## 2766  2022-09-16 77.18400     143480          NA      Europe & Central Asia
## 2767  2022-09-16 80.29800     151674          NA      Europe & Central Asia
## 2768  2022-09-16 80.55300     152999          NA      Europe & Central Asia
## 2769  2022-09-16 80.80200     154644          NA      Europe & Central Asia
## 2770  2022-09-16 72.13300     124722          NA      Europe & Central Asia
## 2771  2022-09-16 71.82300     121200          NA      Europe & Central Asia
## 2772  2022-09-16 71.91900     122405          NA      Europe & Central Asia
## 2773  2022-09-16 72.02000     123611          NA      Europe & Central Asia
## 2774  2022-09-16 78.40600     146500          NA      Europe & Central Asia
## 2775  2022-09-16 72.26100     125680          NA      Europe & Central Asia
## 2776  2022-09-16 72.40900     126420          NA      Europe & Central Asia
## 2777  2022-09-16 82.76600     168666          NA      Europe & Central Asia
## 2778  2022-09-16 81.88300     162051          NA      Europe & Central Asia
## 2779  2022-09-16 78.74200     147553          NA      Europe & Central Asia
## 2780  2022-09-16 77.61600     144348          NA      Europe & Central Asia
## 2781  2022-09-16 78.02800     145387          NA      Europe & Central Asia
## 2782  2022-09-16 82.60000     166922          NA      Europe & Central Asia
## 2783  2022-09-16 82.07100     163039          NA      Europe & Central Asia
## 2784  2022-09-16 79.03700     148439          NA      Europe & Central Asia
## 2785  2022-09-16 75.00400     138250          NA      Europe & Central Asia
## 2786  2022-09-16 81.68800     160990          NA      Europe & Central Asia
## 2787  2022-09-16 82.25200     164107          NA      Europe & Central Asia
## 2788  2022-09-16 82.42900     165387          NA      Europe & Central Asia
## 2789  2022-09-16 81.26800     158187          NA      Europe & Central Asia
## 2790  2022-09-16 81.48300     159718          NA      Europe & Central Asia
## 2791  2022-09-16 76.09200   15162801   8247.2695  Latin America & Caribbean
## 2792  2022-09-16 76.36600   15342350   8555.9776  Latin America & Caribbean
## 2793  2022-09-16 77.39100   16014972   9748.0051  Latin America & Caribbean
## 2794  2022-09-16 75.81300   14977736   8372.0814  Latin America & Caribbean
## 2795  2022-09-16 78.98600   17233584  12339.2611  Latin America & Caribbean
## 2796  2022-09-16 76.63400   15516112   8726.9973  Latin America & Caribbean
## 2797  2022-09-16 76.89400   15684413   8909.8615  Latin America & Caribbean
## 2798  2022-09-16 77.14600   15849649   9233.4216  Latin America & Caribbean
## 2799  2022-09-16 58.03100    8476895   3458.8124  Latin America & Caribbean
## 2800  2022-09-16 64.23100   10265827   4068.0283  Latin America & Caribbean
## 2801  2022-09-16 57.21900    8132988   3292.8073  Latin America & Caribbean
## 2802  2022-09-16 63.55500   10103675   4352.1982  Latin America & Caribbean
## 2803  2022-09-16 78.77900   17062531  11732.7300  Latin America & Caribbean
## 2804  2022-09-16 58.46700    8650390   3587.3895  Latin America & Caribbean
## 2805  2022-09-16 58.92700    8821855   3607.6180  Latin America & Caribbean
## 2806  2022-09-16 57.61600    8303804   3394.2354  Latin America & Caribbean
## 2807  2022-09-16 65.60900   10592310   3515.3557  Latin America & Caribbean
## 2808  2022-09-16 71.28200   12078137   4178.4434  Latin America & Caribbean
## 2809  2022-09-16 71.73700   12257238   4282.4924  Latin America & Caribbean
## 2810  2022-09-16 64.91700   10428803   4099.8474  Latin America & Caribbean
## 2811  2022-09-16 77.63000   16182713  10210.0603  Latin America & Caribbean
## 2812  2022-09-16 66.30700   10756876   3594.2432  Latin America & Caribbean
## 2813  2022-09-16 73.19800   13058758   5321.0428  Latin America & Caribbean
## 2814  2022-09-16 73.50900   13274617   5409.0132  Latin America & Caribbean
## 2815  2022-09-16 70.23900   11743909   4346.0202  Latin America & Caribbean
## 2816  2022-09-16 70.78200   11907955   4071.0946  Latin America & Caribbean
## 2817  2022-09-16 75.53000   14786227   8140.1835  Latin America & Caribbean
## 2818  2022-09-16 62.89500    9942716   4468.2279  Latin America & Caribbean
## 2819  2022-09-16 79.64600   17969356  13495.0106  Latin America & Caribbean
## 2820  2022-09-16 79.17600   17400359  12973.2383  Latin America & Caribbean
## 2821  2022-09-16 79.34900   17571511  13271.9148  Latin America & Caribbean
## 2822  2022-09-16 79.50400   17758969  13367.2283  Latin America & Caribbean
## 2823  2022-09-16 78.33000   16708255  11447.1328  Latin America & Caribbean
## 2824  2022-09-16 79.77900   18209072  13550.8119  Latin America & Caribbean
## 2825  2022-09-16 77.86500   16354507  10714.0290  Latin America & Caribbean
## 2826  2022-09-16 78.09900   16530201  11147.9936  Latin America & Caribbean
## 2827  2022-09-16 78.55800   16886184  11199.8802  Latin America & Caribbean
## 2828  2022-09-16 61.04400    9468851   4051.2596  Latin America & Caribbean
## 2829  2022-09-16 61.63700    9625304   4142.3538  Latin America & Caribbean
## 2830  2022-09-16 62.25400    9783134   4150.0658  Latin America & Caribbean
## 2831  2022-09-16 72.87200   12847712   4920.1999  Latin America & Caribbean
## 2832  2022-09-16 60.47400    9312091   3976.6180  Latin America & Caribbean
## 2833  2022-09-16 72.14800   12445833   4444.4081  Latin America & Caribbean
## 2834  2022-09-16 72.52400   12642917   4657.7802  Latin America & Caribbean
## 2835  2022-09-16 59.93100    9152848   3904.6132  Latin America & Caribbean
## 2836  2022-09-16 67.69800   11089165   4147.2457  Latin America & Caribbean
## 2837  2022-09-16 69.03300   11419350   4715.0878  Latin America & Caribbean
## 2838  2022-09-16 59.41500    8989607   3573.9399  Latin America & Caribbean
## 2839  2022-09-16 75.24400   14587367   7683.2291  Latin America & Caribbean
## 2840  2022-09-16       NA   19212362  14322.2894  Latin America & Caribbean
## 2841  2022-09-16 68.37800   11254877   4430.1707  Latin America & Caribbean
## 2842  2022-09-16 69.65500   11582020   4952.2198  Latin America & Caribbean
## 2843  2022-09-16 67.00500   10922777   3909.3575  Latin America & Caribbean
## 2844  2022-09-16 80.32900   19116209  12890.2643  Latin America & Caribbean
## 2845  2022-09-16 79.90900   18470435  13540.4387  Latin America & Caribbean
## 2846  2022-09-16 74.67100   14166346   6800.1593  Latin America & Caribbean
## 2847  2022-09-16 74.95700   14380864   7297.1387  Latin America & Caribbean
## 2848  2022-09-16 74.38600   13944934   6577.2793  Latin America & Caribbean
## 2849  2022-09-16 80.04200   18729166  13886.1906  Latin America & Caribbean
## 2850  2022-09-16 80.18100   18952035  13828.6344  Latin America & Caribbean
## 2851  2022-09-16 73.80800   13495255   5735.8185  Latin America & Caribbean
## 2852  2022-09-16 74.10000   13719818   6271.9544  Latin America & Caribbean
## 2853  2022-09-16 67.94900 1023310000    524.4084        East Asia & Pacific
## 2854  2022-09-16 69.14500 1135185000    905.0309        East Asia & Pacific
## 2855  2022-09-16 44.78300  665770000    163.9068        East Asia & Pacific
## 2856  2022-09-16 67.62700 1008630000    480.3105        East Asia & Pacific
## 2857  2022-09-16 53.84700  754550000    229.8759        East Asia & Pacific
## 2858  2022-09-16 66.37700  969005000    404.5959        East Asia & Pacific
## 2859  2022-09-16 65.85700  956165000    381.0987        East Asia & Pacific
## 2860  2022-09-16 65.27800  943455000    346.9385        East Asia & Pacific
## 2861  2022-09-16 44.05100  660330000    175.0234        East Asia & Pacific
## 2862  2022-09-16 55.84300  774510000    214.7697        East Asia & Pacific
## 2863  2022-09-16 66.84400  981235000    430.8546        East Asia & Pacific
## 2864  2022-09-16 67.26000  993885000    447.1190        East Asia & Pacific
## 2865  2022-09-16 76.91200 1407745000  10155.4929        East Asia & Pacific
## 2866  2022-09-16 76.21000 1387790000   8516.5137        East Asia & Pacific
## 2867  2022-09-16 76.47000 1396215000   9053.2127        East Asia & Pacific
## 2868  2022-09-16 76.70400 1402760000   9619.1925        East Asia & Pacific
## 2869  2022-09-16 43.72500  667070000    238.2166        East Asia & Pacific
## 2870  2022-09-16 77.09700 1411100000  10358.2594        East Asia & Pacific
## 2871  2022-09-16       NA 1412360000  11188.3025        East Asia & Pacific
## 2872  2022-09-16 69.88500 1204855000   1520.0268        East Asia & Pacific
## 2873  2022-09-16 69.24200 1150780000    975.4612        East Asia & Pacific
## 2874  2022-09-16 64.63100  930685000    326.9489        East Asia & Pacific
## 2875  2022-09-16 69.05400 1118650000    883.7626        East Asia & Pacific
## 2876  2022-09-16 72.38100 1288400000   2797.1717        East Asia & Pacific
## 2877  2022-09-16 51.69600  735400000    250.3045        East Asia & Pacific
## 2878  2022-09-16 69.35500 1164970000   1100.6442        East Asia & Pacific
## 2879  2022-09-16 69.49600 1178440000   1239.1272        East Asia & Pacific
## 2880  2022-09-16 69.67000 1191835000   1384.9277        East Asia & Pacific
## 2881  2022-09-16 68.67300 1066790000    716.1041        East Asia & Pacific
## 2882  2022-09-16 68.83100 1084035000    786.8635        East Asia & Pacific
## 2883  2022-09-16 71.73200 1271850000   2359.5682        East Asia & Pacific
## 2884  2022-09-16 72.06100 1280400000   2557.8871        East Asia & Pacific
## 2885  2022-09-16 63.91500  916395000    337.3435        East Asia & Pacific
## 2886  2022-09-16 72.68900 1296075000   3061.8278        East Asia & Pacific
## 2887  2022-09-16 45.97200  682335000    176.4001        East Asia & Pacific
## 2888  2022-09-16 47.59200  698355000    203.6875        East Asia & Pacific
## 2889  2022-09-16 49.54900  715185000    232.6068        East Asia & Pacific
## 2890  2022-09-16 73.55300 1317885000   4319.0238        East Asia & Pacific
## 2891  2022-09-16 73.83500 1324655000   4711.6351        East Asia & Pacific
## 2892  2022-09-16 68.23100 1036825000    596.2001        East Asia & Pacific
## 2893  2022-09-16 68.47300 1051040000    667.1274        East Asia & Pacific
## 2894  2022-09-16 60.30300  841105000    295.3796        East Asia & Pacific
## 2895  2022-09-16 61.34400  862030000    299.1904        East Asia & Pacific
## 2896  2022-09-16 62.28100  881940000    315.1291        East Asia & Pacific
## 2897  2022-09-16 63.13400  900350000    315.8161        East Asia & Pacific
## 2898  2022-09-16 75.62900 1371860000   7532.7720        East Asia & Pacific
## 2899  2022-09-16 75.92800 1379860000   8016.4314        East Asia & Pacific
## 2900  2022-09-16 71.06300 1252735000   2038.2029        East Asia & Pacific
## 2901  2022-09-16 72.98500 1303720000   3390.7102        East Asia & Pacific
## 2902  2022-09-16 73.27100 1311020000   3800.7591        East Asia & Pacific
## 2903  2022-09-16 70.73700 1241935000   1909.6190        East Asia & Pacific
## 2904  2022-09-16 59.08500  818315000    283.5849        East Asia & Pacific
## 2905  2022-09-16 70.14000 1217550000   1653.4309        East Asia & Pacific
## 2906  2022-09-16 70.42800 1230075000   1787.7638        East Asia & Pacific
## 2907  2022-09-16 57.60300  796025000    244.3635        East Asia & Pacific
## 2908  2022-09-16 71.39700 1262645000   2193.8930        East Asia & Pacific
## 2909  2022-09-16 68.95400 1101630000    861.1920        East Asia & Pacific
## 2910  2022-09-16 75.32100 1363240000   7056.4106        East Asia & Pacific
## 2911  2022-09-16 74.70800 1345035000   6152.6860        East Asia & Pacific
## 2912  2022-09-16 75.01300 1354190000   6591.6509        East Asia & Pacific
## 2913  2022-09-16 74.40900 1337705000   5647.0588        East Asia & Pacific
## 2914  2022-09-16 74.11900 1331260000   5128.8951        East Asia & Pacific
## 2915  2022-09-16 71.88700   37723803   4197.3953  Latin America & Caribbean
## 2916  2022-09-16 73.51700   40875363   4003.4658  Latin America & Caribbean
## 2917  2022-09-16 71.49700   37076387   4129.0503  Latin America & Caribbean
## 2918  2022-09-16 62.15200   21480064   2345.8116  Latin America & Caribbean
## 2919  2022-09-16 73.24100   40255956   3965.7641  Latin America & Caribbean
## 2920  2022-09-16 72.94500   39629965   3961.9297  Latin America & Caribbean
## 2921  2022-09-16 57.26900   16057714   1906.0150  Latin America & Caribbean
## 2922  2022-09-16 72.26400   38364307   4150.8353  Latin America & Caribbean
## 2923  2022-09-16 61.67500   20942453   2265.3993  Latin America & Caribbean
## 2924  2022-09-16 75.19300   44750054   4992.8232  Latin America & Caribbean
## 2925  2022-09-16 75.42400   45222699   5162.7056  Latin America & Caribbean
## 2926  2022-09-16 57.81300   16567817   1941.3458  Latin America & Caribbean
## 2927  2022-09-16 72.61900   38999468   3911.5734  Latin America & Caribbean
## 2928  2022-09-16 63.10500   22516429   2553.0857  Latin America & Caribbean
## 2929  2022-09-16 63.57800   23024512   2664.6018  Latin America & Caribbean
## 2930  2022-09-16 68.18700   28714183   3146.6162  Latin America & Caribbean
## 2931  2022-09-16 62.62900   22003983   2426.4555  Latin America & Caribbean
## 2932  2022-09-16 73.77700   41483872   4099.3064  Latin America & Caribbean
## 2933  2022-09-16 74.02600   42075953   4257.1627  Latin America & Caribbean
## 2934  2022-09-16 64.04700   23538390   2756.1887  Latin America & Caribbean
## 2935  2022-09-16 69.43600   31822527   3510.7979  Latin America & Caribbean
## 2936  2022-09-16 66.92600   26900508   3202.7307  Latin America & Caribbean
## 2937  2022-09-16 67.38000   27496608   3204.6398  Latin America & Caribbean
## 2938  2022-09-16 67.80200   28101824   3165.3619  Latin America & Caribbean
## 2939  2022-09-16 61.20100   20393704   2192.5550  Latin America & Caribbean
## 2940  2022-09-16 74.96200   44254972   4991.7892  Latin America & Caribbean
## 2941  2022-09-16 68.52900   29331230   3183.6354  Latin America & Caribbean
## 2942  2022-09-16 75.65500   45662747   5468.1955  Latin America & Caribbean
## 2943  2022-09-16 75.88200   46075721   5631.2174  Latin America & Caribbean
## 2944  2022-09-16 76.10500   46495492   5866.8738  Latin America & Caribbean
## 2945  2022-09-16 76.32200   46967706   6069.1868  Latin America & Caribbean
## 2946  2022-09-16 58.32900   17092919   1983.5427  Latin America & Caribbean
## 2947  2022-09-16 74.26500   42647731   4402.8991  Latin America & Caribbean
## 2948  2022-09-16 74.50000   43200901   4638.4719  Latin America & Caribbean
## 2949  2022-09-16 59.78400   18725242   2056.9508  Latin America & Caribbean
## 2950  2022-09-16 60.25700   19279734   2102.4112  Latin America & Caribbean
## 2951  2022-09-16 60.72900   19837508   2127.7850  Latin America & Caribbean
## 2952  2022-09-16       NA   51265841   6442.8592  Latin America & Caribbean
## 2953  2022-09-16 69.26600   31195417   3441.5055  Latin America & Caribbean
## 2954  2022-09-16 65.96400   25733669   3052.2961  Latin America & Caribbean
## 2955  2022-09-16 68.82300   29951194   3214.6082  Latin America & Caribbean
## 2956  2022-09-16 69.06500   30572479   3332.6985  Latin America & Caribbean
## 2957  2022-09-16 59.30800   18175187   2045.5620  Latin America & Caribbean
## 2958  2022-09-16 65.47700   25164544   2877.5976  Latin America & Caribbean
## 2959  2022-09-16 64.51800   24065502   2758.4501  Latin America & Caribbean
## 2960  2022-09-16 58.82500   17629978   1986.3257  Latin America & Caribbean
## 2961  2022-09-16 71.11200   36421438   4118.6280  Latin America & Caribbean
## 2962  2022-09-16 74.73200   43737512   4890.2776  Latin America & Caribbean
## 2963  2022-09-16 66.45100   26312996   3145.6662  Latin America & Caribbean
## 2964  2022-09-16 77.46000   50882884   5871.1617  Latin America & Caribbean
## 2965  2022-09-16 64.99400   24608102   2825.1810  Latin America & Caribbean
## 2966  2022-09-16 76.53100   47520667   6175.8760  Latin America & Caribbean
## 2967  2022-09-16 70.16100   34422568   3714.6188  Latin America & Caribbean
## 2968  2022-09-16 69.59100   32457497   3559.6329  Latin America & Caribbean
## 2969  2022-09-16 70.75200   35758978   3987.4822  Latin America & Caribbean
## 2970  2022-09-16 77.28700   50339443   6384.5358  Latin America & Caribbean
## 2971  2022-09-16 76.73200   48175048   6219.1497  Latin America & Caribbean
## 2972  2022-09-16 70.43300   35091272   3840.0678  Latin America & Caribbean
## 2973  2022-09-16 77.10900   49661056   6271.8751  Latin America & Caribbean
## 2974  2022-09-16 76.92500   48909844   6208.9870  Latin America & Caribbean
## 2975  2022-09-16 69.93600   33758328   3640.4550  Latin America & Caribbean
## 2976  2022-09-16 69.75000   33102569   3639.7192  Latin America & Caribbean
## 2977  2022-09-16 46.55700     239229          NA         Sub-Saharan Africa
## 2978  2022-09-16 52.58000     336088   1366.5159         Sub-Saharan Africa
## 2979  2022-09-16 48.35600     265958          NA         Sub-Saharan Africa
## 2980  2022-09-16 43.44600     207429          NA         Sub-Saharan Africa
## 2981  2022-09-16 46.10300     234645          NA         Sub-Saharan Africa
## 2982  2022-09-16 51.92500     326944   1340.1220         Sub-Saharan Africa
## 2983  2022-09-16 41.44700     191122          NA         Sub-Saharan Africa
## 2984  2022-09-16 47.00100     244207          NA         Sub-Saharan Africa
## 2985  2022-09-16 47.44100     250107          NA         Sub-Saharan Africa
## 2986  2022-09-16 47.88700     257285          NA         Sub-Saharan Africa
## 2987  2022-09-16 63.21400     759390   1257.6825         Sub-Saharan Africa
## 2988  2022-09-16 62.24000     706578   1228.2846         Sub-Saharan Africa
## 2989  2022-09-16 62.59500     723865   1236.9389         Sub-Saharan Africa
## 2990  2022-09-16 62.92200     741511   1261.4331         Sub-Saharan Africa
## 2991  2022-09-16 45.64200     230055          NA         Sub-Saharan Africa
## 2992  2022-09-16 63.47100     777435   1242.5856         Sub-Saharan Africa
## 2993  2022-09-16 63.70000     795597   1254.5372         Sub-Saharan Africa
## 2994  2022-09-16 58.97200     488625   1109.3164         Sub-Saharan Africa
## 2995  2022-09-16 53.22100     345455   1384.1077         Sub-Saharan Africa
## 2996  2022-09-16 61.86200     689696   1208.2845         Sub-Saharan Africa
## 2997  2022-09-16 58.72200     475394   1155.1110         Sub-Saharan Africa
## 2998  2022-09-16 55.03300     376647   1344.3388         Sub-Saharan Africa
## 2999  2022-09-16 63.91200     813890   1273.1344         Sub-Saharan Africa
## 3000  2022-09-16 53.84300     355337   1376.2949         Sub-Saharan Africa
## 3001  2022-09-16 54.44600     365765   1362.0276         Sub-Saharan Africa
## 3002  2022-09-16 64.52500     869595   1253.0445         Sub-Saharan Africa
## 3003  2022-09-16       NA     888456   1255.2382         Sub-Saharan Africa
## 3004  2022-09-16 58.03800     449270   1245.4062         Sub-Saharan Africa
## 3005  2022-09-16 58.40700     462280   1146.4887         Sub-Saharan Africa
## 3006  2022-09-16 45.17900     225324          NA         Sub-Saharan Africa
## 3007  2022-09-16 61.47500     673251   1192.7394         Sub-Saharan Africa
## 3008  2022-09-16 41.84600     194149          NA         Sub-Saharan Africa
## 3009  2022-09-16 42.24500     197202          NA         Sub-Saharan Africa
## 3010  2022-09-16 42.64400     200371          NA         Sub-Saharan Africa
## 3011  2022-09-16 43.04300     203762          NA         Sub-Saharan Africa
## 3012  2022-09-16 59.52900     555895   1187.8264         Sub-Saharan Africa
## 3013  2022-09-16 64.11800     832322   1290.2869         Sub-Saharan Africa
## 3014  2022-09-16 64.32100     850891   1284.3523         Sub-Saharan Africa
## 3015  2022-09-16 59.90400     597230   1177.2964         Sub-Saharan Africa
## 3016  2022-09-16 43.85800     211477          NA         Sub-Saharan Africa
## 3017  2022-09-16 44.28300     215900          NA         Sub-Saharan Africa
## 3018  2022-09-16 44.72400     220574          NA         Sub-Saharan Africa
## 3019  2022-09-16 51.26500     317617   1296.7028         Sub-Saharan Africa
## 3020  2022-09-16 61.09400     657227   1183.4668         Sub-Saharan Africa
## 3021  2022-09-16 59.46000     542358   1189.7190         Sub-Saharan Africa
## 3022  2022-09-16 59.16000     501955   1123.3771         Sub-Saharan Africa
## 3023  2022-09-16 59.29400     515382   1108.1425         Sub-Saharan Africa
## 3024  2022-09-16 59.38800     528853   1100.6977         Sub-Saharan Africa
## 3025  2022-09-16 49.40600     286628          NA         Sub-Saharan Africa
## 3026  2022-09-16 55.60500     387964   1340.1978         Sub-Saharan Africa
## 3027  2022-09-16 56.15400     399638   1259.6720         Sub-Saharan Africa
## 3028  2022-09-16 48.86000     275903          NA         Sub-Saharan Africa
## 3029  2022-09-16 56.67700     411598   1285.3384         Sub-Saharan Africa
## 3030  2022-09-16 49.99200     297451          NA         Sub-Saharan Africa
## 3031  2022-09-16 50.61500     307831   1288.1395         Sub-Saharan Africa
## 3032  2022-09-16 60.73400     641624   1166.0182         Sub-Saharan Africa
## 3033  2022-09-16 57.16800     423873   1180.7723         Sub-Saharan Africa
## 3034  2022-09-16 57.62300     436454   1244.5638         Sub-Saharan Africa
## 3035  2022-09-16 60.40700     626427   1184.8265         Sub-Saharan Africa
## 3036  2022-09-16 59.61700     569480   1186.4482         Sub-Saharan Africa
## 3037  2022-09-16 59.73800     583213   1182.8843         Sub-Saharan Africa
## 3038  2022-09-16 60.12600     611625   1182.2081         Sub-Saharan Africa
## 3039  2022-09-16 49.11100   41576239    485.4171         Sub-Saharan Africa
## 3040  2022-09-16 42.86800   18378620   1235.1155         Sub-Saharan Africa
## 3041  2022-09-16 49.23300   44849968    413.5363         Sub-Saharan Africa
## 3042  2022-09-16 55.09100   58453687    381.4556         Sub-Saharan Africa
## 3043  2022-09-16 49.04000   42757239    467.1799         Sub-Saharan Africa
## 3044  2022-09-16 49.06600   43827191    430.1735         Sub-Saharan Africa
## 3045  2022-09-16 42.54900   17862052   1283.4867         Sub-Saharan Africa
## 3046  2022-09-16 49.55700   45919615    386.6562         Sub-Saharan Africa
## 3047  2022-09-16 50.04100   47105830    350.8708         Sub-Saharan Africa
## 3048  2022-09-16 50.66700   48428534    334.1200         Sub-Saharan Africa
## 3049  2022-09-16 43.56300   19459818   1330.5673         Sub-Saharan Africa
## 3050  2022-09-16 54.40100   56578046    370.8858         Sub-Saharan Africa
## 3051  2022-09-16 46.65100   27040329   1019.4749         Sub-Saharan Africa
## 3052  2022-09-16 43.20800   18913874   1252.1617         Sub-Saharan Africa
## 3053  2022-09-16 48.22100   31528702   1006.2651         Sub-Saharan Africa
## 3054  2022-09-16 43.91500   20011033   1290.7453         Sub-Saharan Africa
## 3055  2022-09-16 44.24700   20564062   1331.4583         Sub-Saharan Africa
## 3056  2022-09-16 47.95500   30683877   1007.0263         Sub-Saharan Africa
## 3057  2022-09-16 45.83300   24956387   1051.5347         Sub-Saharan Africa
## 3058  2022-09-16 46.08600   25663598   1026.9555         Sub-Saharan Africa
## 3059  2022-09-16 46.36300   26358905   1021.8122         Sub-Saharan Africa
## 3060  2022-09-16 49.22000   40252973    497.8893         Sub-Saharan Africa
## 3061  2022-09-16 41.75500   16461828   1323.7084         Sub-Saharan Africa
## 3062  2022-09-16 41.99500   16903830   1257.6392         Sub-Saharan Africa
## 3063  2022-09-16 42.25700   17369882   1236.1019         Sub-Saharan Africa
## 3064  2022-09-16 56.35000   62448572    390.1121         Sub-Saharan Africa
## 3065  2022-09-16 56.90900   64563853    404.1516         Sub-Saharan Africa
## 3066  2022-09-16 57.42700   66755151    417.7570         Sub-Saharan Africa
## 3067  2022-09-16 44.54500   21121360   1298.2863         Sub-Saharan Africa
## 3068  2022-09-16 51.38500   49871670    334.0157         Sub-Saharan Africa
## 3069  2022-09-16 52.14400   51425583    341.9907         Sub-Saharan Africa
## 3070  2022-09-16 52.91700   53068869    353.7319         Sub-Saharan Africa
## 3071  2022-09-16 41.09800   15248256   1257.0627         Sub-Saharan Africa
## 3072  2022-09-16 41.31200   15637700   1092.7452         Sub-Saharan Africa
## 3073  2022-09-16 41.52900   16041187   1291.1015         Sub-Saharan Africa
## 3074  2022-09-16 60.68100   86790568    512.5863         Sub-Saharan Africa
## 3075  2022-09-16 46.93700   27717293    990.0235         Sub-Saharan Africa
## 3076  2022-09-16 47.20800   28403858    979.7314         Sub-Saharan Africa
## 3077  2022-09-16 47.46100   29119663   1008.6013         Sub-Saharan Africa
## 3078  2022-09-16 47.70500   29881222    987.4944         Sub-Saharan Africa
## 3079  2022-09-16       NA   92377986    517.9268         Sub-Saharan Africa
## 3080  2022-09-16 45.41000   23560470   1167.8514         Sub-Saharan Africa
## 3081  2022-09-16 44.80400   21690448   1367.0968         Sub-Saharan Africa
## 3082  2022-09-16 45.02600   22282127   1372.4566         Sub-Saharan Africa
## 3083  2022-09-16 45.22200   22903587   1268.7012         Sub-Saharan Africa
## 3084  2022-09-16 49.04300   34612023    849.5526         Sub-Saharan Africa
## 3085  2022-09-16 45.60900   24249127   1143.3179         Sub-Saharan Africa
## 3086  2022-09-16 60.36800   84068092    506.9583         Sub-Saharan Africa
## 3087  2022-09-16 53.67500   54785894    363.6675         Sub-Saharan Africa
## 3088  2022-09-16 58.38100   71358804    453.9989         Sub-Saharan Africa
## 3089  2022-09-16 49.22500   35908240    749.9266         Sub-Saharan Africa
## 3090  2022-09-16 55.74300   60411195    392.0747         Sub-Saharan Africa
## 3091  2022-09-16 60.97100   89561404    505.3483         Sub-Saharan Africa
## 3092  2022-09-16 60.02600   81398765    494.7812         Sub-Saharan Africa
## 3093  2022-09-16 58.82800   73767445    480.7662         Sub-Saharan Africa
## 3094  2022-09-16 48.50200   32443784    982.4830         Sub-Saharan Africa
## 3095  2022-09-16 48.78700   33464767    940.4490         Sub-Saharan Africa
## 3096  2022-09-16 49.31100   37333917    645.5536         Sub-Saharan Africa
## 3097  2022-09-16 49.30200   38815835    537.2772         Sub-Saharan Africa
## 3098  2022-09-16 59.25400   76244532    497.3170         Sub-Saharan Africa
## 3099  2022-09-16 57.91400   69020749    432.6784         Sub-Saharan Africa
## 3100  2022-09-16 59.65500   78789130    492.8028         Sub-Saharan Africa
## 3101  2022-09-16 52.94400    1582361   1766.7615         Sub-Saharan Africa
## 3102  2022-09-16 51.51400    1406510   1565.7439         Sub-Saharan Africa
## 3103  2022-09-16 51.12600    1365891   1484.3882         Sub-Saharan Africa
## 3104  2022-09-16 46.92800    1069236   1336.9081         Sub-Saharan Africa
## 3105  2022-09-16 52.60000    1536658   1802.7895         Sub-Saharan Africa
## 3106  2022-09-16 60.78500    4394842   2407.8936         Sub-Saharan Africa
## 3107  2022-09-16 61.42300    4510197   2579.6990         Sub-Saharan Africa
## 3108  2022-09-16 50.72500    1326894   1418.0704         Sub-Saharan Africa
## 3109  2022-09-16 46.33800    1043119   1302.6147         Sub-Saharan Africa
## 3110  2022-09-16 63.55600    4980996   2129.7155         Sub-Saharan Africa
## 3111  2022-09-16 51.88800    1448632   1645.3485         Sub-Saharan Africa
## 3112  2022-09-16 52.24900    1492055   1723.4326         Sub-Saharan Africa
## 3113  2022-09-16 50.31300    1289519   1371.9371         Sub-Saharan Africa
## 3114  2022-09-16 54.76000    1884873   2697.3044         Sub-Saharan Africa
## 3115  2022-09-16 54.97800    1940454   2773.4212         Sub-Saharan Africa
## 3116  2022-09-16 62.02200    4622757   2498.9545         Sub-Saharan Africa
## 3117  2022-09-16 62.58200    4736965   2602.5048         Sub-Saharan Africa
## 3118  2022-09-16 63.09700    4856093   2448.5238         Sub-Saharan Africa
## 3119  2022-09-16 55.24700    2171319   2444.8555         Sub-Saharan Africa
## 3120  2022-09-16 63.95400    5110701   1984.6985         Sub-Saharan Africa
## 3121  2022-09-16 64.29000    5244363   1841.1739         Sub-Saharan Africa
## 3122  2022-09-16 64.57000    5380504   1793.0281         Sub-Saharan Africa
## 3123  2022-09-16 64.80400    5518092   1639.2374         Sub-Saharan Africa
## 3124  2022-09-16       NA    5657017   1543.0167         Sub-Saharan Africa
## 3125  2022-09-16 54.22600    1777932   1967.0091         Sub-Saharan Africa
## 3126  2022-09-16 52.98400    2632345   2091.0877         Sub-Saharan Africa
## 3127  2022-09-16 52.58300    2707532   2114.0415         Sub-Saharan Africa
## 3128  2022-09-16 52.25200    2785815   2142.7895         Sub-Saharan Africa
## 3129  2022-09-16 52.01600    2867283   2068.8985         Sub-Saharan Africa
## 3130  2022-09-16 55.26000    2054308   2769.2392         Sub-Saharan Africa
## 3131  2022-09-16 55.29400    2112359   2508.3459         Sub-Saharan Africa
## 3132  2022-09-16 45.72100    1018254   1231.5779         Sub-Saharan Africa
## 3133  2022-09-16 52.51700    3217930   2080.3242         Sub-Saharan Africa
## 3134  2022-09-16 47.48600    1096638   1250.9804         Sub-Saharan Africa
## 3135  2022-09-16 48.01600    1125354   1265.5877         Sub-Saharan Africa
## 3136  2022-09-16 55.60000    3622775   2172.3166         Sub-Saharan Africa
## 3137  2022-09-16 48.51700    1155389   1278.0074         Sub-Saharan Africa
## 3138  2022-09-16 48.99300    1186782   1261.1098         Sub-Saharan Africa
## 3139  2022-09-16 49.44800    1219547   1253.1996         Sub-Saharan Africa
## 3140  2022-09-16 49.88700    1253761   1312.0269         Sub-Saharan Africa
## 3141  2022-09-16 60.09300    4273738   2422.6831         Sub-Saharan Africa
## 3142  2022-09-16 52.12300    3127420   2062.1164         Sub-Saharan Africa
## 3143  2022-09-16 55.15000    1996994   2882.8982         Sub-Saharan Africa
## 3144  2022-09-16 51.89900    2951651   2084.8785         Sub-Saharan Africa
## 3145  2022-09-16 51.92500    3038432   1973.0339         Sub-Saharan Africa
## 3146  2022-09-16 53.61100    1677326   1614.0126         Sub-Saharan Africa
## 3147  2022-09-16 55.11900    2231462   2420.9798         Sub-Saharan Africa
## 3148  2022-09-16 54.91700    2293161   2417.0907         Sub-Saharan Africa
## 3149  2022-09-16 53.28200    1629218   1562.3124         Sub-Saharan Africa
## 3150  2022-09-16 59.32100    4145400   2272.0445         Sub-Saharan Africa
## 3151  2022-09-16 53.92700    1726865   1721.5540         Sub-Saharan Africa
## 3152  2022-09-16 53.42400    2559880   2275.2642         Sub-Saharan Africa
## 3153  2022-09-16 54.50600    1830629   2246.9910         Sub-Saharan Africa
## 3154  2022-09-16 54.63800    2356740   2375.4025         Sub-Saharan Africa
## 3155  2022-09-16 54.28100    2422312   2366.4597         Sub-Saharan Africa
## 3156  2022-09-16 53.86700    2489945   2362.3126         Sub-Saharan Africa
## 3157  2022-09-16 57.54100    3876123   2047.4681         Sub-Saharan Africa
## 3158  2022-09-16 58.46600    4011487   2103.1421         Sub-Saharan Africa
## 3159  2022-09-16 53.09100    3310376   2114.8847         Sub-Saharan Africa
## 3160  2022-09-16 53.81700    3406915   2071.6692         Sub-Saharan Africa
## 3161  2022-09-16 56.57300    3745143   2269.1567         Sub-Saharan Africa
## 3162  2022-09-16 54.66700    3510468   2080.4581         Sub-Saharan Africa
## 3163  2022-09-16 77.87100    4164053   8157.6512  Latin America & Caribbean
## 3164  2022-09-16 75.84400    3202083   6018.8573  Latin America & Caribbean
## 3165  2022-09-16 76.02800    3286525   6403.7847  Latin America & Caribbean
## 3166  2022-09-16 75.65400    3119436   6041.4439  Latin America & Caribbean
## 3167  2022-09-16 76.39400    3458829   6811.1119  Latin America & Caribbean
## 3168  2022-09-16 76.57900    3545524   6920.5790  Latin America & Caribbean
## 3169  2022-09-16 76.76500    3632361   6846.3576  Latin America & Caribbean
## 3170  2022-09-16 76.21100    3372298   6683.8362  Latin America & Caribbean
## 3171  2022-09-16 77.74000    4100922   7940.4302  Latin America & Caribbean
## 3172  2022-09-16 69.50100    2148681   5648.3667  Latin America & Caribbean
## 3173  2022-09-16 70.18200    2205618   5992.5305  Latin America & Caribbean
## 3174  2022-09-16 63.86200    1645076   4012.4854  Latin America & Caribbean
## 3175  2022-09-16 64.35800    1696742   4110.1119  Latin America & Caribbean
## 3176  2022-09-16 64.84700    1747690   4328.4053  Latin America & Caribbean
## 3177  2022-09-16 72.67800    2455593   5910.7288  Latin America & Caribbean
## 3178  2022-09-16 73.19300    2523358   5332.9300  Latin America & Caribbean
## 3179  2022-09-16 68.17000    2042242   5516.1596  Latin America & Caribbean
## 3180  2022-09-16 68.82500    2094186   5492.3072  Latin America & Caribbean
## 3181  2022-09-16 75.45600    3039015   5988.5411  Latin America & Caribbean
## 3182  2022-09-16 62.23600    1486555   3701.3723  Latin America & Caribbean
## 3183  2022-09-16 62.80700    1539942   3703.7921  Latin America & Caribbean
## 3184  2022-09-16 63.34800    1592834   3874.0898  Latin America & Caribbean
## 3185  2022-09-16 78.11700    4285504   8606.3337  Latin America & Caribbean
## 3186  2022-09-16 78.23900    4345421   9109.5303  Latin America & Caribbean
## 3187  2022-09-16 78.36200    4404626   9725.3849  Latin America & Caribbean
## 3188  2022-09-16 78.49100    4463123  10052.6829  Latin America & Caribbean
## 3189  2022-09-16 76.94800    3718952   7053.1374  Latin America & Caribbean
## 3190  2022-09-16 77.12400    3803893   7389.0451  Latin America & Caribbean
## 3191  2022-09-16 77.45200    3962369   7678.4916  Latin America & Caribbean
## 3192  2022-09-16 60.38100    1330787   3600.4830  Latin America & Caribbean
## 3193  2022-09-16 61.01800    1381187   3534.2941  Latin America & Caribbean
## 3194  2022-09-16 61.63800    1433346   3591.0329  Latin America & Caribbean
## 3195  2022-09-16 79.56500    4847805  11642.7781  Latin America & Caribbean
## 3196  2022-09-16 79.73800    4899336  12004.6713  Latin America & Caribbean
## 3197  2022-09-16 70.85300    2264942   6201.3279  Latin America & Caribbean
## 3198  2022-09-16 71.50100    2326460   6335.5398  Latin America & Caribbean
## 3199  2022-09-16 72.11300    2389973   6213.5450  Latin America & Caribbean
## 3200  2022-09-16       NA    5139053  12931.6913  Latin America & Caribbean
## 3201  2022-09-16 80.46500    5094114  12126.6259  Latin America & Caribbean
## 3202  2022-09-16 65.33900    1797891   4438.6170  Latin America & Caribbean
## 3203  2022-09-16 65.84400    1847394   4643.7906  Latin America & Caribbean
## 3204  2022-09-16 77.29300    3885428   7538.8863  Latin America & Caribbean
## 3205  2022-09-16 66.94300    1944170   5097.0733  Latin America & Caribbean
## 3206  2022-09-16 67.54100    1992522   5356.7780  Latin America & Caribbean
## 3207  2022-09-16 79.39800    4795390  11355.3311  Latin America & Caribbean
## 3208  2022-09-16 77.60100    4034074   7805.3119  Latin America & Caribbean
## 3209  2022-09-16 80.09500    4999443  12573.9558  Latin America & Caribbean
## 3210  2022-09-16 80.27900    5047561  12755.1684  Latin America & Caribbean
## 3211  2022-09-16 77.99600    4225156   8395.4011  Latin America & Caribbean
## 3212  2022-09-16 79.91400    4949955  12375.9237  Latin America & Caribbean
## 3213  2022-09-16 66.37800    1896074   4831.2633  Latin America & Caribbean
## 3214  2022-09-16 74.73800    2810245   5655.9388  Latin America & Caribbean
## 3215  2022-09-16 73.65700    2593015   5338.2497  Latin America & Caribbean
## 3216  2022-09-16 74.07000    2664220   5612.4763  Latin America & Caribbean
## 3217  2022-09-16 78.62600    4520739   9837.8766  Latin America & Caribbean
## 3218  2022-09-16 78.76900    4577371  10236.9803  Latin America & Caribbean
## 3219  2022-09-16 75.00600    2884856   5772.1689  Latin America & Caribbean
## 3220  2022-09-16 75.24300    2960932   5816.8823  Latin America & Caribbean
## 3221  2022-09-16 79.23400    4742111  11090.0884  Latin America & Caribbean
## 3222  2022-09-16 78.91900    4633086  10559.2060  Latin America & Caribbean
## 3223  2022-09-16 79.07400    4688003  10945.0350  Latin America & Caribbean
## 3224  2022-09-16 74.42900    2736719   5503.2218  Latin America & Caribbean
## 3225  2022-09-16 44.97900    5328735   2601.4443         Sub-Saharan Africa
## 3226  2022-09-16 44.12300    5102070   2482.2764         Sub-Saharan Africa
## 3227  2022-09-16 51.09100   19171250   1557.9083         Sub-Saharan Africa
## 3228  2022-09-16 51.68200   19605568   1596.2552         Sub-Saharan Africa
## 3229  2022-09-16 43.27600    4897470   2342.9009         Sub-Saharan Africa
## 3230  2022-09-16 47.41800    6121295   2608.9795         Sub-Saharan Africa
## 3231  2022-09-16 48.14700    6412409   2696.0767         Sub-Saharan Africa
## 3232  2022-09-16 45.82400    5576026   2591.3985         Sub-Saharan Africa
## 3233  2022-09-16 46.64000    5841513   2620.5372         Sub-Saharan Africa
## 3234  2022-09-16 42.44900    4713134   2222.5231         Sub-Saharan Africa
## 3235  2022-09-16 58.10400   26378275   2313.7934         Sub-Saharan Africa
## 3236  2022-09-16 54.90600   22087506   1769.2149         Sub-Saharan Africa
## 3237  2022-09-16 52.31300   20059147   1616.3782         Sub-Saharan Africa
## 3238  2022-09-16 52.96400   20532944   1687.2165         Sub-Saharan Africa
## 3239  2022-09-16 53.62000   21028652   1558.9687         Sub-Saharan Africa
## 3240  2022-09-16       NA   27053629   2414.4403         Sub-Saharan Africa
## 3241  2022-09-16 53.28600   10698188   2064.7879         Sub-Saharan Africa
## 3242  2022-09-16 55.50800   22647672   1887.1649         Sub-Saharan Africa
## 3243  2022-09-16 56.06500   23226148   1972.5457         Sub-Saharan Africa
## 3244  2022-09-16 54.27100   21547188   1637.3928         Sub-Saharan Africa
## 3245  2022-09-16 57.01700   24437475   2157.2452         Sub-Saharan Africa
## 3246  2022-09-16 57.42200   25069226   2247.7766         Sub-Saharan Africa
## 3247  2022-09-16 52.42300   13271638   1707.1777         Sub-Saharan Africa
## 3248  2022-09-16 52.01300   13735438   1662.9131         Sub-Saharan Africa
## 3249  2022-09-16 51.56900   14199759   1723.1574         Sub-Saharan Africa
## 3250  2022-09-16 51.10900   14665125   1797.4387         Sub-Saharan Africa
## 3251  2022-09-16 52.64500    9530103   2155.5373         Sub-Saharan Africa
## 3252  2022-09-16 52.92200    9918204   2164.4197         Sub-Saharan Africa
## 3253  2022-09-16 53.13900   10307268   2150.6034         Sub-Saharan Africa
## 3254  2022-09-16 36.09500    3503559   1567.7618         Sub-Saharan Africa
## 3255  2022-09-16 36.94800    3631547   1662.7393         Sub-Saharan Africa
## 3256  2022-09-16 37.78000    3770756   1621.0027         Sub-Saharan Africa
## 3257  2022-09-16 56.56700   23822726   2061.2152         Sub-Saharan Africa
## 3258  2022-09-16 38.58300    3918630   1785.8576         Sub-Saharan Africa
## 3259  2022-09-16 39.35800    4071411   2021.5840         Sub-Saharan Africa
## 3260  2022-09-16 40.11500    4226843   1886.6925         Sub-Saharan Africa
## 3261  2022-09-16 40.87300    4383723   2029.7858         Sub-Saharan Africa
## 3262  2022-09-16 41.64700    4544168   2048.1556         Sub-Saharan Africa
## 3263  2022-09-16 51.94000    8764991   2506.5257         Sub-Saharan Africa
## 3264  2022-09-16 52.31400    9144940   2308.6871         Sub-Saharan Africa
## 3265  2022-09-16 50.65700   15130674   1910.2299         Sub-Saharan Africa
## 3266  2022-09-16 50.24200   15589407   1933.0732         Sub-Saharan Africa
## 3267  2022-09-16 49.89100   16032573   1901.5727         Sub-Saharan Africa
## 3268  2022-09-16 49.63500   16454660   1847.8700         Sub-Saharan Africa
## 3269  2022-09-16 53.35700   11094740   2013.6148         Sub-Saharan Africa
## 3270  2022-09-16 48.82500    6713949   2907.5851         Sub-Saharan Africa
## 3271  2022-09-16 49.45600    7026497   2981.4659         Sub-Saharan Africa
## 3272  2022-09-16 50.04100    7350269   3161.0695         Sub-Saharan Africa
## 3273  2022-09-16 50.57900    7685927   3095.4035         Sub-Saharan Africa
## 3274  2022-09-16 57.78300   25716554   2327.7454         Sub-Saharan Africa
## 3275  2022-09-16 51.52500    8393689   2612.1582         Sub-Saharan Africa
## 3276  2022-09-16 50.56100   18754914   1575.1428         Sub-Saharan Africa
## 3277  2022-09-16 53.06200   12362404   1840.7741         Sub-Saharan Africa
## 3278  2022-09-16 52.77900   12812428   1771.7750         Sub-Saharan Africa
## 3279  2022-09-16 53.35000   11502453   1999.4981         Sub-Saharan Africa
## 3280  2022-09-16 53.25400   11924873   1907.5326         Sub-Saharan Africa
## 3281  2022-09-16 51.07200    8033652   2636.9196         Sub-Saharan Africa
## 3282  2022-09-16 49.47500   17231539   1679.4065         Sub-Saharan Africa
## 3283  2022-09-16 49.78800   17970493   1583.1120         Sub-Saharan Africa
## 3284  2022-09-16 50.12000   18354513   1565.4285         Sub-Saharan Africa
## 3285  2022-09-16 49.57200   17599613   1566.5772         Sub-Saharan Africa
## 3286  2022-09-16 49.49500   16853027   1765.3281         Sub-Saharan Africa
## 3287  2022-09-16 71.48829    4755207          NA      Europe & Central Asia
## 3288  2022-09-16 71.84463    4767260          NA      Europe & Central Asia
## 3289  2022-09-16 71.24146    4575818          NA      Europe & Central Asia
## 3290  2022-09-16 71.52244    4600463          NA      Europe & Central Asia
## 3291  2022-09-16 72.17049    4777368          NA      Europe & Central Asia
## 3292  2022-09-16 72.18537    4689022          NA      Europe & Central Asia
## 3293  2022-09-16 71.47024    4739745          NA      Europe & Central Asia
## 3294  2022-09-16 69.25271    4490660          NA      Europe & Central Asia
## 3295  2022-09-16 65.40824    4196712          NA      Europe & Central Asia
## 3296  2022-09-16 65.78788    4225675          NA      Europe & Central Asia
## 3297  2022-09-16 66.15444    4252876          NA      Europe & Central Asia
## 3298  2022-09-16 66.51205    4280923          NA      Europe & Central Asia
## 3299  2022-09-16 70.42732    4594778          NA      Europe & Central Asia
## 3300  2022-09-16 70.17537    4599782          NA      Europe & Central Asia
## 3301  2022-09-16 70.34439    4611509          NA      Europe & Central Asia
## 3302  2022-09-16 69.02924    4470161          NA      Europe & Central Asia
## 3303  2022-09-16 74.71732    4302174   9962.0449      Europe & Central Asia
## 3304  2022-09-16 68.50163    4431275          NA      Europe & Central Asia
## 3305  2022-09-16 65.01551    4167292          NA      Europe & Central Asia
## 3306  2022-09-16 74.61390    4303399  10509.5497      Europe & Central Asia
## 3307  2022-09-16 75.52024    4304600  10942.5724      Europe & Central Asia
## 3308  2022-09-16 64.60866    4140181          NA      Europe & Central Asia
## 3309  2022-09-16 75.83683    4311159  11959.9232      Europe & Central Asia
## 3310  2022-09-16 71.80341    4652024          NA      Europe & Central Asia
## 3311  2022-09-16 72.08439    4620030   7263.5709      Europe & Central Asia
## 3312  2022-09-16 75.24463    4310145  11399.7753      Europe & Central Asia
## 3313  2022-09-16 72.49512    4534920   8322.9639      Europe & Central Asia
## 3314  2022-09-16 68.77873    4450564          NA      Europe & Central Asia
## 3315  2022-09-16 74.51293    4299642   9428.4107      Europe & Central Asia
## 3316  2022-09-16 77.12683    4255689  11536.8602      Europe & Central Asia
## 3317  2022-09-16 77.47805    4238389  11543.8763      Europe & Central Asia
## 3318  2022-09-16 70.00195    4512082          NA      Europe & Central Asia
## 3319  2022-09-16 70.45537    4535934          NA      Europe & Central Asia
## 3320  2022-09-16 70.74439    4559571          NA      Europe & Central Asia
## 3321  2022-09-16 70.53878    4581085          NA      Europe & Central Asia
## 3322  2022-09-16 78.42439    4065253  14068.0445      Europe & Central Asia
## 3323  2022-09-16 66.86278    4310701          NA      Europe & Central Asia
## 3324  2022-09-16 67.20873    4338683          NA      Europe & Central Asia
## 3325  2022-09-16 72.36537    4557097   7803.9220      Europe & Central Asia
## 3326  2022-09-16 67.88137    4391490          NA      Europe & Central Asia
## 3327  2022-09-16 68.20049    4412252          NA      Europe & Central Asia
## 3328  2022-09-16 76.92439    4267558  11546.7017      Europe & Central Asia
## 3329  2022-09-16 71.41902    4721446          NA      Europe & Central Asia
## 3330  2022-09-16 72.64195    4512597   8473.7105      Europe & Central Asia
## 3331  2022-09-16 72.80780    4468302   8805.5004      Europe & Central Asia
## 3332  2022-09-16 77.72439    4047680  12984.6959      Europe & Central Asia
## 3333  2022-09-16 77.27561    4203604  11933.3774      Europe & Central Asia
## 3334  2022-09-16 78.02195    4174349  12441.5025      Europe & Central Asia
## 3335  2022-09-16 77.82683    4124531  13021.6717      Europe & Central Asia
## 3336  2022-09-16 70.21854    4680285          NA      Europe & Central Asia
## 3337  2022-09-16       NA    3899000  14888.3306      Europe & Central Asia
## 3338  2022-09-16 67.54893    4365628          NA      Europe & Central Asia
## 3339  2022-09-16 70.27488    4658254          NA      Europe & Central Asia
## 3340  2022-09-16 76.16829    4305181  11870.7940      Europe & Central Asia
## 3341  2022-09-16 70.88610    4701417          NA      Europe & Central Asia
## 3342  2022-09-16 72.31707    4532135   8511.7819      Europe & Central Asia
## 3343  2022-09-16 75.91220    4309705  12789.6358      Europe & Central Asia
## 3344  2022-09-16 78.07073    4087843  13519.5588      Europe & Central Asia
## 3345  2022-09-16 75.70561    4310217  12550.2339      Europe & Central Asia
## 3346  2022-09-16 76.47561    4295427  11748.9448      Europe & Central Asia
## 3347  2022-09-16 76.77561    4280622  11779.5300      Europe & Central Asia
## 3348  2022-09-16 70.48268    4634234          NA      Europe & Central Asia
## 3349  2022-09-16 68.17100    8266373          NA  Latin America & Caribbean
## 3350  2022-09-16 66.95600    7958171          NA  Latin America & Caribbean
## 3351  2022-09-16 67.57300    8115487          NA  Latin America & Caribbean
## 3352  2022-09-16 69.29000    8561391          NA  Latin America & Caribbean
## 3353  2022-09-16 69.80900    8712535   2653.7340  Latin America & Caribbean
## 3354  2022-09-16 68.74400    8413549          NA  Latin America & Caribbean
## 3355  2022-09-16 66.32700    7793258          NA  Latin America & Caribbean
## 3356  2022-09-16 77.49900   11250369   4665.3866  Latin America & Caribbean
## 3357  2022-09-16 77.86400   11261241   5808.3496  Latin America & Caribbean
## 3358  2022-09-16 78.80200   11333484   8031.0354  Latin America & Caribbean
## 3359  2022-09-16 78.01900   11251117   6235.7659  Latin America & Caribbean
## 3360  2022-09-16 78.15000   11236975   6500.6526  Latin America & Caribbean
## 3361  2022-09-16 77.68800   11261586   5182.8197  Latin America & Caribbean
## 3362  2022-09-16 78.33800   11225833   6759.3428  Latin America & Caribbean
## 3363  2022-09-16 78.40000   11236671   6942.0577  Latin America & Caribbean
## 3364  2022-09-16 78.44600   11257112   7138.3682  Latin America & Caribbean
## 3365  2022-09-16 78.25600   11226711   6601.0264  Latin America & Caribbean
## 3366  2022-09-16 78.52100   11306909   7378.6963  Latin America & Caribbean
## 3367  2022-09-16 78.56100   11324777   7694.0146  Latin America & Caribbean
## 3368  2022-09-16 74.59500   10286645   5060.5367  Latin America & Caribbean
## 3369  2022-09-16 74.60700   10397519   5192.0942  Latin America & Caribbean
## 3370  2022-09-16 74.61500   10503967   5174.4299  Latin America & Caribbean
## 3371  2022-09-16 74.63800   10596986   4977.7772  Latin America & Caribbean
## 3372  2022-09-16       NA   11317498          NA  Latin America & Caribbean
## 3373  2022-09-16 73.54300    9790850   3795.9801  Latin America & Caribbean
## 3374  2022-09-16 73.79400    9849457   3590.4044  Latin America & Caribbean
## 3375  2022-09-16 74.00400    9898891   4275.8350  Latin America & Caribbean
## 3376  2022-09-16 75.41200   10888246   3360.3172  Latin America & Caribbean
## 3377  2022-09-16 75.68600   10939285   3606.8170  Latin America & Caribbean
## 3378  2022-09-16 78.48500   11282722   7317.8540  Latin America & Caribbean
## 3379  2022-09-16 76.23000   11038706   3679.6675  Latin America & Caribbean
## 3380  2022-09-16 63.83400    7141241          NA  Latin America & Caribbean
## 3381  2022-09-16 64.44600    7291201          NA  Latin America & Caribbean
## 3382  2022-09-16 65.06600    7453535          NA  Latin America & Caribbean
## 3383  2022-09-16 65.69500    7623300          NA  Latin America & Caribbean
## 3384  2022-09-16 77.30300   11229185   4419.1776  Latin America & Caribbean
## 3385  2022-09-16 72.91500    9646142   3575.6037  Latin America & Caribbean
## 3386  2022-09-16 78.89200   11326616   7156.1068  Latin America & Caribbean
## 3387  2022-09-16 74.80100   10736386   3879.6650  Latin America & Caribbean
## 3388  2022-09-16 74.95700   10789312   3286.2416  Latin America & Caribbean
## 3389  2022-09-16 75.16400   10838461   3294.7927  Latin America & Caribbean
## 3390  2022-09-16 74.17500    9940314   4637.7569  Latin America & Caribbean
## 3391  2022-09-16 74.31500    9981303   4868.6518  Latin America & Caribbean
## 3392  2022-09-16 70.30600    8868087   2830.9829  Latin America & Caribbean
## 3393  2022-09-16 70.78700    9025347   2915.9169  Latin America & Caribbean
## 3394  2022-09-16 71.25500    9178809   2965.6377  Latin America & Caribbean
## 3395  2022-09-16 78.60700   11335108   7726.4950  Latin America & Caribbean
## 3396  2022-09-16 78.66200   11339255   7863.3947  Latin America & Caribbean
## 3397  2022-09-16 78.72600   11338146   8040.9880  Latin America & Caribbean
## 3398  2022-09-16 72.54300    9554186   3320.7932  Latin America & Caribbean
## 3399  2022-09-16 74.69600   10673534   4413.6364  Latin America & Caribbean
## 3400  2022-09-16 73.24900    9724044   3780.9159  Latin America & Caribbean
## 3401  2022-09-16 74.42700   10031651   5228.3491  Latin America & Caribbean
## 3402  2022-09-16 74.51100   10097910   5276.9744  Latin America & Caribbean
## 3403  2022-09-16 74.56600   10183894   5237.4069  Latin America & Caribbean
## 3404  2022-09-16 76.69900   11126423   4105.8795  Latin America & Caribbean
## 3405  2022-09-16 76.90500   11164676   4222.1371  Latin America & Caribbean
## 3406  2022-09-16 77.10500   11199664   4268.9171  Latin America & Caribbean
## 3407  2022-09-16 75.96400   10989730   3690.1933  Latin America & Caribbean
## 3408  2022-09-16 76.47500   11084673   3891.1896  Latin America & Caribbean
## 3409  2022-09-16 71.70700    9320943   2949.1662  Latin America & Caribbean
## 3410  2022-09-16 72.13800    9446441   3185.7486  Latin America & Caribbean
## 3411  2022-09-16       NA     145400          NA  Latin America & Caribbean
## 3412  2022-09-16       NA     144299          NA  Latin America & Caribbean
## 3413  2022-09-16       NA     146937          NA  Latin America & Caribbean
## 3414  2022-09-16       NA     144403          NA  Latin America & Caribbean
## 3415  2022-09-16       NA     143912          NA  Latin America & Caribbean
## 3416  2022-09-16       NA     149254          NA  Latin America & Caribbean
## 3417  2022-09-16       NA     147851          NA  Latin America & Caribbean
## 3418  2022-09-16       NA     128414          NA  Latin America & Caribbean
## 3419  2022-09-16       NA     151456          NA  Latin America & Caribbean
## 3420  2022-09-16       NA     148341          NA  Latin America & Caribbean
## 3421  2022-09-16       NA     144739          NA  Latin America & Caribbean
## 3422  2022-09-16       NA     148041          NA  Latin America & Caribbean
## 3423  2022-09-16       NA     130860          NA  Latin America & Caribbean
## 3424  2022-09-16       NA     146912          NA  Latin America & Caribbean
## 3425  2022-09-16       NA     139428          NA  Latin America & Caribbean
## 3426  2022-09-16       NA     126125          NA  Latin America & Caribbean
## 3427  2022-09-16       NA     124826          NA  Latin America & Caribbean
## 3428  2022-09-16       NA     129047  22171.0657  Latin America & Caribbean
## 3429  2022-09-16       NA     129205  22231.8795  Latin America & Caribbean
## 3430  2022-09-16       NA     131897  21840.8911  Latin America & Caribbean
## 3431  2022-09-16       NA     133148          NA  Latin America & Caribbean
## 3432  2022-09-16       NA     144630          NA  Latin America & Caribbean
## 3433  2022-09-16       NA     145139          NA  Latin America & Caribbean
## 3434  2022-09-16       NA     146306          NA  Latin America & Caribbean
## 3435  2022-09-16       NA     147389          NA  Latin America & Caribbean
## 3436  2022-09-16       NA     147710          NA  Latin America & Caribbean
## 3437  2022-09-16       NA     152662          NA  Latin America & Caribbean
## 3438  2022-09-16 77.47317     150831  20539.3601  Latin America & Caribbean
## 3439  2022-09-16       NA     148351          NA  Latin America & Caribbean
## 3440  2022-09-16       NA     149129          NA  Latin America & Caribbean
## 3441  2022-09-16       NA     149399          NA  Latin America & Caribbean
## 3442  2022-09-16       NA     149459          NA  Latin America & Caribbean
## 3443  2022-09-16 77.97561     155909  19459.4944  Latin America & Caribbean
## 3444  2022-09-16 78.07561     157980  19260.2698  Latin America & Caribbean
## 3445  2022-09-16       NA     135266          NA  Latin America & Caribbean
## 3446  2022-09-16       NA     136682          NA  Latin America & Caribbean
## 3447  2022-09-16       NA     138140          NA  Latin America & Caribbean
## 3448  2022-09-16       NA     140298          NA  Latin America & Caribbean
## 3449  2022-09-16       NA     142581          NA  Latin America & Caribbean
## 3450  2022-09-16       NA     148703  20706.4372  Latin America & Caribbean
## 3451  2022-09-16       NA     152369          NA  Latin America & Caribbean
## 3452  2022-09-16       NA     144472          NA  Latin America & Caribbean
## 3453  2022-09-16 77.82683     153822  19963.3453  Latin America & Caribbean
## 3454  2022-09-16       NA     133860  21523.6459  Latin America & Caribbean
## 3455  2022-09-16       NA     148629          NA  Latin America & Caribbean
## 3456  2022-09-16 77.52439     152088  20356.1818  Latin America & Caribbean
## 3457  2022-09-16       NA     151159          NA  Latin America & Caribbean
## 3458  2022-09-16 77.71951     159664  18890.7588  Latin America & Caribbean
## 3459  2022-09-16       NA     152711          NA  Latin America & Caribbean
## 3460  2022-09-16       NA     150101          NA  Latin America & Caribbean
## 3461  2022-09-16 74.70976     141239  20913.6631  Latin America & Caribbean
## 3462  2022-09-16       NA     151940          NA  Latin America & Caribbean
## 3463  2022-09-16       NA     134192  21512.1115  Latin America & Caribbean
## 3464  2022-09-16       NA     146956          NA  Latin America & Caribbean
## 3465  2022-09-16       NA     154947  14748.8955  Latin America & Caribbean
## 3466  2022-09-16 75.36341     144056  21011.1569  Latin America & Caribbean
## 3467  2022-09-16 75.30976     145880  21202.4307  Latin America & Caribbean
## 3468  2022-09-16       NA     137658  21112.3220  Latin America & Caribbean
## 3469  2022-09-16       NA     157441  17796.6996  Latin America & Caribbean
## 3470  2022-09-16 78.01707     160175  18504.3057  Latin America & Caribbean
## 3471  2022-09-16 76.15610     146833  20952.8997  Latin America & Caribbean
## 3472  2022-09-16       NA     159336  18198.6641  Latin America & Caribbean
## 3473  2022-09-16 71.19700     580972          NA      Europe & Central Asia
## 3474  2022-09-16 70.58700     577918          NA      Europe & Central Asia
## 3475  2022-09-16 78.38500     993562  23929.0996      Europe & Central Asia
## 3476  2022-09-16 70.89500     578628          NA      Europe & Central Asia
## 3477  2022-09-16 70.27200     577696          NA      Europe & Central Asia
## 3478  2022-09-16 71.77600     591301          NA      Europe & Central Asia
## 3479  2022-09-16 80.51300    1170189  24805.2031      Europe & Central Asia
## 3480  2022-09-16 78.63000    1027657  25629.5840      Europe & Central Asia
## 3481  2022-09-16 71.49100     585313          NA      Europe & Central Asia
## 3482  2022-09-16 78.26400     976968  23602.5312      Europe & Central Asia
## 3483  2022-09-16 78.91000    1063708  27154.9004      Europe & Central Asia
## 3484  2022-09-16 78.50600    1010410  24797.9199      Europe & Central Asia
## 3485  2022-09-16 80.98200    1198574  28211.0645      Europe & Central Asia
## 3486  2022-09-16 78.76400    1045508  26393.6777      Europe & Central Asia
## 3487  2022-09-16 79.62100    1124837  25466.1074      Europe & Central Asia
## 3488  2022-09-16 79.07100    1081568  27447.2402      Europe & Central Asia
## 3489  2022-09-16 79.24500    1098089  26181.7441      Europe & Central Asia
## 3490  2022-09-16 69.94900     576402          NA      Europe & Central Asia
## 3491  2022-09-16 75.89300     712335  13457.5859      Europe & Central Asia
## 3492  2022-09-16 76.06400     723384  14252.5625      Europe & Central Asia
## 3493  2022-09-16 76.23100     736476  15321.6162      Europe & Central Asia
## 3494  2022-09-16 76.39400     751043  16305.1885      Europe & Central Asia
## 3495  2022-09-16 81.13500    1207361  26502.8477      Europe & Central Asia
## 3496  2022-09-16       NA    1215588  27714.7461      Europe & Central Asia
## 3497  2022-09-16 76.86600     800610  17927.2871      Europe & Central Asia
## 3498  2022-09-16 77.01700     818750  17622.0527      Europe & Central Asia
## 3499  2022-09-16 79.43000    1112617  26019.7637      Europe & Central Asia
## 3500  2022-09-16 77.45600     873426  19383.9395      Europe & Central Asia
## 3501  2022-09-16 79.81200    1135046  24216.5293      Europe & Central Asia
## 3502  2022-09-16 79.99900    1143866  22682.2656      Europe & Central Asia
## 3503  2022-09-16 75.71800     703694  13126.6104      Europe & Central Asia
## 3504  2022-09-16 69.61800     572933          NA      Europe & Central Asia
## 3505  2022-09-16 78.13900     960274  23017.6367      Europe & Central Asia
## 3506  2022-09-16 73.53000     642322          NA      Europe & Central Asia
## 3507  2022-09-16 80.67200    1179685  26013.8320      Europe & Central Asia
## 3508  2022-09-16 80.82800    1189262  27161.4043      Europe & Central Asia
## 3509  2022-09-16 74.18300     665521   8707.8418      Europe & Central Asia
## 3510  2022-09-16 74.39000     673253   9350.3369      Europe & Central Asia
## 3511  2022-09-16 74.59200     680010  10196.9492      Europe & Central Asia
## 3512  2022-09-16 74.79000     685408  10667.0938      Europe & Central Asia
## 3513  2022-09-16 72.05200     598495          NA      Europe & Central Asia
## 3514  2022-09-16 72.31800     606121          NA      Europe & Central Asia
## 3515  2022-09-16 72.57600     613618          NA      Europe & Central Asia
## 3516  2022-09-16 72.82500     620860          NA      Europe & Central Asia
## 3517  2022-09-16 80.17800    1152297  22513.7793      Europe & Central Asia
## 3518  2022-09-16 80.35000    1160987  23408.3359      Europe & Central Asia
## 3519  2022-09-16 73.30200     635105          NA      Europe & Central Asia
## 3520  2022-09-16 75.35800     694076  11800.3682      Europe & Central Asia
## 3521  2022-09-16 73.75300     649753   6172.8872      Europe & Central Asia
## 3522  2022-09-16 76.55400     766616  17143.2715      Europe & Central Asia
## 3523  2022-09-16 76.71200     783121  16828.7363      Europe & Central Asia
## 3524  2022-09-16 77.16600     837104  18279.7441      Europe & Central Asia
## 3525  2022-09-16 75.54000     697715  12668.6104      Europe & Central Asia
## 3526  2022-09-16 74.98300     689170  10755.5059      Europe & Central Asia
## 3527  2022-09-16 75.17300     691716  11269.0283      Europe & Central Asia
## 3528  2022-09-16 73.06700     628002          NA      Europe & Central Asia
## 3529  2022-09-16 77.59800     891190  19615.8145      Europe & Central Asia
## 3530  2022-09-16 77.87500     926049  21348.2539      Europe & Central Asia
## 3531  2022-09-16 78.00900     943288  22382.3965      Europe & Central Asia
## 3532  2022-09-16 77.73800     908710  20560.8555      Europe & Central Asia
## 3533  2022-09-16 73.97100     657524   7484.3091      Europe & Central Asia
## 3534  2022-09-16 77.31200     855391  19452.4883      Europe & Central Asia
## 3535  2022-09-16 70.26415    9852899          NA                       <NA>
## 3536  2022-09-16 69.84073    9876346          NA                       <NA>
## 3537  2022-09-16 69.36707    9896580          NA                       <NA>
## 3538  2022-09-16 69.44024    9858071          NA                       <NA>
## 3539  2022-09-16 69.67707    9826815          NA                       <NA>
## 3540  2022-09-16 70.17659    9867632          NA                       <NA>
## 3541  2022-09-16 70.02268    9922266          NA                       <NA>
## 3542  2022-09-16 70.08659    9988459          NA                       <NA>
## 3543  2022-09-16 70.41463   10058620          NA                       <NA>
## 3544  2022-09-16 70.53268   10125939          NA                       <NA>
## 3545  2022-09-16 70.57341   10186755          NA                       <NA>
## 3546  2022-09-16 70.64390   10242098          NA                       <NA>
## 3547  2022-09-16 70.74951   10292341          NA                       <NA>
## 3548  2022-09-16 70.27805   10304193          NA                       <NA>
## 3549  2022-09-16 70.72220   10300591          NA                       <NA>
## 3550  2022-09-16 70.80780   10314826          NA                       <NA>
## 3551  2022-09-16 70.59146   10323856          NA                       <NA>
## 3552  2022-09-16 70.83756   10330213          NA                       <NA>
## 3553  2022-09-16 71.04634   10337118          NA                       <NA>
## 3554  2022-09-16 70.99732   10342227          NA                       <NA>
## 3555  2022-09-16 71.44561   10347318          NA                       <NA>
## 3556  2022-09-16 71.64146   10355276          NA                       <NA>
## 3557  2022-09-16 71.67561   10361068          NA                       <NA>
## 3558  2022-09-16 71.38390   10333355  11626.6259                       <NA>
## 3559  2022-09-16 71.89829   10308578  10300.8992                       <NA>
## 3560  2022-09-16 72.27171   10319123  10238.2477                       <NA>
## 3561  2022-09-16 72.76780   10329855  10233.9422                       <NA>
## 3562  2022-09-16 73.07488   10327253  11219.1501                       <NA>
## 3563  2022-09-16 73.71463   10315241  11711.3154                       <NA>
## 3564  2022-09-16 70.34878    9602006          NA                       <NA>
## 3565  2022-09-16 70.51268    9586651          NA                       <NA>
## 3566  2022-09-16 69.78683    9624660          NA                       <NA>
## 3567  2022-09-16 70.30439    9670685          NA                       <NA>
## 3568  2022-09-16 70.45951    9727804          NA                       <NA>
## 3569  2022-09-16 70.16317    9779358          NA                       <NA>
## 3570  2022-09-16 70.38488    9821040          NA                       <NA>
## 3571  2022-09-16 72.97268   10333587  10527.8757                       <NA>
## 3572  2022-09-16 73.82488   10304131  11663.1738                       <NA>
## 3573  2022-09-16 74.51463   10294373  11632.6029                       <NA>
## 3574  2022-09-16 74.66829   10283860  11805.6718                       <NA>
## 3575  2022-09-16 74.96829   10255063  12312.4978                       <NA>
## 3576  2022-09-16 75.17317   10216605  12734.9220                       <NA>
## 3577  2022-09-16 75.22195   10196916  12959.8175                       <NA>
## 3578  2022-09-16 75.17073   10193998  13428.0996                       <NA>
## 3579  2022-09-16 75.72195   10197101  14070.2805                       <NA>
## 3580  2022-09-16 75.92439   10211216  14978.4132                       <NA>
## 3581  2022-09-16 76.52439   10238905  15948.7453                       <NA>
## 3582  2022-09-16 76.72439   10298828  16739.1787                       <NA>
## 3583  2022-09-16 76.97561   10384603  17046.8850                       <NA>
## 3584  2022-09-16 77.07805   10443936  16160.6206                       <NA>
## 3585  2022-09-16 77.42439   10474410  16505.9537                       <NA>
## 3586  2022-09-16 77.87317   10496088  16761.8273                       <NA>
## 3587  2022-09-16 78.07561   10510785  16606.9925                       <NA>
## 3588  2022-09-16 78.17561   10514272  16593.8642                       <NA>
## 3589  2022-09-16 78.82439   10525347  16951.3791                       <NA>
## 3590  2022-09-16 78.57805   10546059  17829.6983                       <NA>
## 3591  2022-09-16 79.02683   10566332  18247.0117                       <NA>
## 3592  2022-09-16 78.97805   10594438  19139.2399                       <NA>
## 3593  2022-09-16 79.02927   10629928  19685.4945                       <NA>
## 3594  2022-09-16 79.22927   10671870  20202.1516                       <NA>
## 3595  2022-09-16 78.22683   10697858  18984.6373                       <NA>
## 3596  2022-09-16       NA   10703446  19608.9851                       <NA>
## 3597  2022-09-16 72.31976    4647727  20055.6437      Europe & Central Asia
## 3598  2022-09-16 72.92220    4835354  24031.1274      Europe & Central Asia
## 3599  2022-09-16 72.44415    4797381  22952.0113      Europe & Central Asia
## 3600  2022-09-16 74.69122    5127024  38585.4029      Europe & Central Asia
## 3601  2022-09-16 72.40049    4684483  20025.0368      Europe & Central Asia
## 3602  2022-09-16 72.43829    4611687  19128.4044      Europe & Central Asia
## 3603  2022-09-16 75.15780    5154298  39739.6099      Europe & Central Asia
## 3604  2022-09-16 75.19415    5171370  40383.5588      Europe & Central Asia
## 3605  2022-09-16 75.11683    5188628  40253.5399      Europe & Central Asia
## 3606  2022-09-16 72.37073    4759012  22519.8115      Europe & Central Asia
## 3607  2022-09-16 74.57976    5120534  38536.3229      Europe & Central Asia
## 3608  2022-09-16 76.59268    5339616  49241.9280      Europe & Central Asia
## 3609  2022-09-16 74.56220    5111619  35382.2346      Europe & Central Asia
## 3610  2022-09-16 72.48512    4722072  21707.1637      Europe & Central Asia
## 3611  2022-09-16 77.14390    5390574  49599.9970      Europe & Central Asia
## 3612  2022-09-16 77.49268    5404523  50792.0010      Europe & Central Asia
## 3613  2022-09-16 74.77171    5129516  38561.4119      Europe & Central Asia
## 3614  2022-09-16 78.09512    5437272  53687.4415      Europe & Central Asia
## 3615  2022-09-16 78.19512    5461438  53935.8702      Europe & Central Asia
## 3616  2022-09-16 78.44634    5493621  53345.3576      Europe & Central Asia
## 3617  2022-09-16 77.84390    5419432  51835.8327      Europe & Central Asia
## 3618  2022-09-16 79.10000    5547683  51173.4662      Europe & Central Asia
## 3619  2022-09-16 74.42756    5113691  36783.9410      Europe & Central Asia
## 3620  2022-09-16 72.17659    4579603  18107.3759      Europe & Central Asia
## 3621  2022-09-16 80.30000    5614932  51831.7979      Europe & Central Asia
## 3622  2022-09-16 76.79268    5358783  49469.6888      Europe & Central Asia
## 3623  2022-09-16 76.89512    5375931  49541.8556      Europe & Central Asia
## 3624  2022-09-16 81.10244    5764980  55735.7649      Europe & Central Asia
## 3625  2022-09-16 80.95366    5793636  56563.4885      Europe & Central Asia
## 3626  2022-09-16 81.45122    5814422  57553.1312      Europe & Central Asia
## 3627  2022-09-16 81.55122    5831404  56202.1659      Europe & Central Asia
## 3628  2022-09-16       NA    5856733  58585.5077      Europe & Central Asia
## 3629  2022-09-16 74.23049    5121572  31869.0422      Europe & Central Asia
## 3630  2022-09-16 78.59756    5523095  50457.2325      Europe & Central Asia
## 3631  2022-09-16 74.42049    5114297  33949.3314      Europe & Central Asia
## 3632  2022-09-16 75.59146    5263074  44314.7905      Europe & Central Asia
## 3633  2022-09-16 75.94512    5284991  45570.0798      Europe & Central Asia
## 3634  2022-09-16 76.13902    5304219  46412.0390      Europe & Central Asia
## 3635  2022-09-16 76.34146    5321799  47622.4391      Europe & Central Asia
## 3636  2022-09-16 80.70000    5643475  52404.7640      Europe & Central Asia
## 3637  2022-09-16 74.79976    5132594  38786.9310      Europe & Central Asia
## 3638  2022-09-16 74.80537    5140939  39295.2434      Europe & Central Asia
## 3639  2022-09-16 74.63244    5088419  30559.4559      Europe & Central Asia
## 3640  2022-09-16 74.39293    5104248  31142.9246      Europe & Central Asia
## 3641  2022-09-16 74.21927    5116801  32268.5203      Europe & Central Asia
## 3642  2022-09-16 74.10171    5123027  32073.6413      Europe & Central Asia
## 3643  2022-09-16 74.55122    5117810  33067.5698      Europe & Central Asia
## 3644  2022-09-16 75.21268    5233373  43310.2501      Europe & Central Asia
## 3645  2022-09-16 73.34341    4928757  26927.9590      Europe & Central Asia
## 3646  2022-09-16 79.80000    5570572  51644.4635      Europe & Central Asia
## 3647  2022-09-16 80.05122    5591572  51567.0402      Europe & Central Asia
## 3648  2022-09-16 73.68220    5021861  29450.5971      Europe & Central Asia
## 3649  2022-09-16 73.22098    4891860  26704.6332      Europe & Central Asia
## 3650  2022-09-16 80.70244    5683483  53254.8564      Europe & Central Asia
## 3651  2022-09-16 80.85366    5728010  54556.0690      Europe & Central Asia
## 3652  2022-09-16 73.73976    5072596  30091.9728      Europe & Central Asia
## 3653  2022-09-16 73.43902    4991596  28464.1398      Europe & Central Asia
## 3654  2022-09-16 75.37512    5206180  42257.0983      Europe & Central Asia
## 3655  2022-09-16 73.80829    5045297  28984.7792      Europe & Central Asia
## 3656  2022-09-16 73.12146    4864883  25211.6295      Europe & Central Asia
## 3657  2022-09-16 73.41463    4963126  27545.0669      Europe & Central Asia
## 3658  2022-09-16 74.07512    5059862  28480.3555      Europe & Central Asia
## 3659  2022-09-16 47.81400     140462          NA Middle East & North Africa
## 3660  2022-09-16 50.98200     190569          NA Middle East & North Africa
## 3661  2022-09-16 51.44200     205180          NA Middle East & North Africa
## 3662  2022-09-16 50.44200     179237          NA Middle East & North Africa
## 3663  2022-09-16 54.04900     374934          NA Middle East & North Africa
## 3664  2022-09-16 46.16600     114976          NA Middle East & North Africa
## 3665  2022-09-16 49.82700     169372          NA Middle East & North Africa
## 3666  2022-09-16 55.48800     425608          NA Middle East & North Africa
## 3667  2022-09-16 55.77200     454359          NA Middle East & North Africa
## 3668  2022-09-16 56.03200     490337          NA Middle East & North Africa
## 3669  2022-09-16 44.03800      83634          NA Middle East & North Africa
## 3670  2022-09-16 44.46900      88503          NA Middle East & North Africa
## 3671  2022-09-16 45.72700     107582          NA Middle East & North Africa
## 3672  2022-09-16 45.30900     100618          NA Middle East & North Africa
## 3673  2022-09-16 46.65400     122876          NA Middle East & North Africa
## 3674  2022-09-16 47.20300     131405          NA Middle East & North Africa
## 3675  2022-09-16 57.99100     783248          NA Middle East & North Africa
## 3676  2022-09-16 54.45100     385268          NA Middle East & North Africa
## 3677  2022-09-16 54.82800     393800          NA Middle East & North Africa
## 3678  2022-09-16 55.17400     406018          NA Middle East & North Africa
## 3679  2022-09-16 59.56100     827820          NA Middle East & North Africa
## 3680  2022-09-16 60.06200     840194          NA Middle East & North Africa
## 3681  2022-09-16 60.66700     853671          NA Middle East & North Africa
## 3682  2022-09-16 61.39500     868136          NA Middle East & North Africa
## 3683  2022-09-16 51.83200     224177          NA Middle East & North Africa
## 3684  2022-09-16 44.89200      94203          NA Middle East & North Africa
## 3685  2022-09-16 52.51300     277472          NA Middle East & North Africa
## 3686  2022-09-16 57.42700     759639          NA Middle East & North Africa
## 3687  2022-09-16 57.68200     771599          NA Middle East & North Africa
## 3688  2022-09-16 53.63900     358960          NA Middle East & North Africa
## 3689  2022-09-16 58.34000     794554          NA Middle East & North Africa
## 3690  2022-09-16 48.47600     149889          NA Middle East & North Africa
## 3691  2022-09-16 49.16000     159662          NA Middle East & North Africa
## 3692  2022-09-16 67.49000     988002   3102.3587 Middle East & North Africa
## 3693  2022-09-16       NA    1002197   3190.2247 Middle East & North Africa
## 3694  2022-09-16 57.02200     660858          NA Middle East & North Africa
## 3695  2022-09-16 56.99800     680465          NA Middle East & North Africa
## 3696  2022-09-16 56.27100     528993          NA Middle East & North Africa
## 3697  2022-09-16 56.48800     563855          NA Middle East & North Africa
## 3698  2022-09-16 56.67800     590393          NA Middle East & North Africa
## 3699  2022-09-16 52.86500     308008          NA Middle East & North Africa
## 3700  2022-09-16 53.24100     336080          NA Middle East & North Africa
## 3701  2022-09-16 57.05600     622364          NA Middle East & North Africa
## 3702  2022-09-16 65.89300     944100   2901.0098 Middle East & North Africa
## 3703  2022-09-16 66.58200     958923   2992.5313 Middle East & North Africa
## 3704  2022-09-16 67.11200     973557   3110.9946 Middle East & North Africa
## 3705  2022-09-16 57.06500     630385          NA Middle East & North Africa
## 3706  2022-09-16 57.05000     643649          NA Middle East & North Africa
## 3707  2022-09-16 57.10000     733019          NA Middle East & North Africa
## 3708  2022-09-16 57.23500     746947          NA Middle East & North Africa
## 3709  2022-09-16 56.99200     699973          NA Middle East & North Africa
## 3710  2022-09-16 57.02200     717577          NA Middle East & North Africa
## 3711  2022-09-16 65.06400     929117   2795.2257 Middle East & North Africa
## 3712  2022-09-16 57.01700     618504          NA Middle East & North Africa
## 3713  2022-09-16 63.17100     898707   2508.8272 Middle East & North Africa
## 3714  2022-09-16 64.13600     913998   2652.5132 Middle East & North Africa
## 3715  2022-09-16 59.12400     816361          NA Middle East & North Africa
## 3716  2022-09-16 52.17700     248556          NA Middle East & North Africa
## 3717  2022-09-16 62.23900     883296   2384.2353 Middle East & North Africa
## 3718  2022-09-16 58.71900     805456          NA Middle East & North Africa
## 3719  2022-09-16 56.83100     606843          NA Middle East & North Africa
## 3720  2022-09-16 56.94300     615050          NA Middle East & North Africa
## 3721  2022-09-16       NA      75318   2873.0034  Latin America & Caribbean
## 3722  2022-09-16       NA      73207   3696.9791  Latin America & Caribbean
## 3723  2022-09-16       NA      60020          NA  Latin America & Caribbean
## 3724  2022-09-16       NA      61036          NA  Latin America & Caribbean
## 3725  2022-09-16       NA      73846   3613.6412  Latin America & Caribbean
## 3726  2022-09-16       NA      72172   6978.3688  Latin America & Caribbean
## 3727  2022-09-16       NA      72531   3995.3733  Latin America & Caribbean
## 3728  2022-09-16       NA      74484   3438.3911  Latin America & Caribbean
## 3729  2022-09-16       NA      74960   2545.9901  Latin America & Caribbean
## 3730  2022-09-16       NA      70933   5530.7791  Latin America & Caribbean
## 3731  2022-09-16 75.95122      70592   5678.9621  Latin America & Caribbean
## 3732  2022-09-16       NA      70183   5927.6429  Latin America & Caribbean
## 3733  2022-09-16       NA      69828   5978.8738  Latin America & Caribbean
## 3734  2022-09-16       NA      69650   6134.4300  Latin America & Caribbean
## 3735  2022-09-16       NA      69671   6128.6656  Latin America & Caribbean
## 3736  2022-09-16 76.59756      69840   5940.9362  Latin America & Caribbean
## 3737  2022-09-16       NA      70102   6294.7577  Latin America & Caribbean
## 3738  2022-09-16       NA      70387   6460.5259  Latin America & Caribbean
## 3739  2022-09-16       NA      70580   6485.1160  Latin America & Caribbean
## 3740  2022-09-16       NA      73443   2879.5613  Latin America & Caribbean
## 3741  2022-09-16       NA      74280   3147.0786  Latin America & Caribbean
## 3742  2022-09-16       NA      71105   5351.2856  Latin America & Caribbean
## 3743  2022-09-16       NA      70848   7613.1670  Latin America & Caribbean
## 3744  2022-09-16       NA      70877   7661.2399  Latin America & Caribbean
## 3745  2022-09-16       NA      71019   7472.5637  Latin America & Caribbean
## 3746  2022-09-16       NA      71091   7819.8656  Latin America & Caribbean
## 3747  2022-09-16       NA      71175   7597.2889  Latin America & Caribbean
## 3748  2022-09-16       NA      71307   7792.7988  Latin America & Caribbean
## 3749  2022-09-16       NA      71460   7261.4134  Latin America & Caribbean
## 3750  2022-09-16       NA      71626   7501.5922  Latin America & Caribbean
## 3751  2022-09-16       NA      71808   7894.3068  Latin America & Caribbean
## 3752  2022-09-16       NA      71991   6566.7291  Latin America & Caribbean
## 3753  2022-09-16       NA      72662          NA  Latin America & Caribbean
## 3754  2022-09-16       NA      70422   4962.5668  Latin America & Caribbean
## 3755  2022-09-16       NA      70377   5032.6664  Latin America & Caribbean
## 3756  2022-09-16 73.95122      70546   5122.4995  Latin America & Caribbean
## 3757  2022-09-16       NA      70818   5213.1180  Latin America & Caribbean
## 3758  2022-09-16       NA      75314   3184.2996  Latin America & Caribbean
## 3759  2022-09-16 71.46341      75012   3329.0866  Latin America & Caribbean
## 3760  2022-09-16       NA      70954   7554.9543  Latin America & Caribbean
## 3761  2022-09-16       NA      71084          NA  Latin America & Caribbean
## 3762  2022-09-16       NA      71569          NA  Latin America & Caribbean
## 3763  2022-09-16       NA      71731          NA  Latin America & Caribbean
## 3764  2022-09-16       NA      71739          NA  Latin America & Caribbean
## 3765  2022-09-16       NA      71212   4664.2060  Latin America & Caribbean
## 3766  2022-09-16       NA      70722   4687.5453  Latin America & Caribbean
## 3767  2022-09-16       NA      70718   6774.0423  Latin America & Caribbean
## 3768  2022-09-16       NA      70797   7196.3562  Latin America & Caribbean
## 3769  2022-09-16       NA      70829   7705.3301  Latin America & Caribbean
## 3770  2022-09-16       NA      66300          NA  Latin America & Caribbean
## 3771  2022-09-16       NA      71044   5198.3262  Latin America & Caribbean
## 3772  2022-09-16       NA      70912   7640.3402  Latin America & Caribbean
## 3773  2022-09-16       NA      69034          NA  Latin America & Caribbean
## 3774  2022-09-16       NA      70214          NA  Latin America & Caribbean
## 3775  2022-09-16       NA      61978          NA  Latin America & Caribbean
## 3776  2022-09-16       NA      67687          NA  Latin America & Caribbean
## 3777  2022-09-16       NA      62917          NA  Latin America & Caribbean
## 3778  2022-09-16       NA      71814          NA  Latin America & Caribbean
## 3779  2022-09-16       NA      65044          NA  Latin America & Caribbean
## 3780  2022-09-16       NA      72088          NA  Latin America & Caribbean
## 3781  2022-09-16 71.96341      71842   4288.1184  Latin America & Caribbean
## 3782  2022-09-16       NA      63921          NA  Latin America & Caribbean
## 3783  2022-09-16 58.67100    4627202   1903.2408  Latin America & Caribbean
## 3784  2022-09-16 59.22900    4755464   2044.3978  Latin America & Caribbean
## 3785  2022-09-16 59.76400    4884460   2247.0845  Latin America & Caribbean
## 3786  2022-09-16 57.49800    4373127   1536.3310  Latin America & Caribbean
## 3787  2022-09-16 58.09300    4499722   1765.2520  Latin America & Caribbean
## 3788  2022-09-16 53.67500    3638110   1516.5916  Latin America & Caribbean
## 3789  2022-09-16 63.23400    5935895   2777.0784  Latin America & Caribbean
## 3790  2022-09-16 65.06500    6596967   2727.8216  Latin America & Caribbean
## 3791  2022-09-16 65.44300    6729930   2944.4593  Latin America & Caribbean
## 3792  2022-09-16 64.32600    6331760   2804.9201  Latin America & Caribbean
## 3793  2022-09-16 64.69200    6464229   2689.1246  Latin America & Caribbean
## 3794  2022-09-16 54.34000    3757123   1567.8966  Latin America & Caribbean
## 3795  2022-09-16 54.99300    3877768   1329.5027  Latin America & Caribbean
## 3796  2022-09-16 55.63500    3999796   1462.4761  Latin America & Caribbean
## 3797  2022-09-16 52.99700    3521018   1471.3459  Latin America & Caribbean
## 3798  2022-09-16 56.26700    4123100   1465.9490  Latin America & Caribbean
## 3799  2022-09-16 63.60100    6067769   2762.8719  Latin America & Caribbean
## 3800  2022-09-16 63.96400    6199657   2829.2402  Latin America & Caribbean
## 3801  2022-09-16 70.22700    8850317   4255.7662  Latin America & Caribbean
## 3802  2022-09-16 71.30400    9338856   5308.6324  Latin America & Caribbean
## 3803  2022-09-16 71.55900    9458079   5409.9479  Latin America & Caribbean
## 3804  2022-09-16 71.80600    9576736   5393.4703  Latin America & Caribbean
## 3805  2022-09-16 71.04100    9218681   5006.5524  Latin America & Caribbean
## 3806  2022-09-16 60.76400    5144632   2378.9383  Latin America & Caribbean
## 3807  2022-09-16 51.60200    3294222   1375.4136  Latin America & Caribbean
## 3808  2022-09-16 52.30600    3406282   1299.3952  Latin America & Caribbean
## 3809  2022-09-16 69.95700    8724974   4375.7898  Latin America & Caribbean
## 3810  2022-09-16 62.47700    5671801   2581.3974  Latin America & Caribbean
## 3811  2022-09-16 62.86100    5803929   2723.6531  Latin America & Caribbean
## 3812  2022-09-16 56.88900    4247559   1426.3938  Latin America & Caribbean
## 3813  2022-09-16 70.77100    9097262   4647.0379  Latin America & Caribbean
## 3814  2022-09-16 73.89200   10627147   7997.7611  Latin America & Caribbean
## 3815  2022-09-16 74.08100   10738957   8314.3448  Latin America & Caribbean
## 3816  2022-09-16 74.25700   10847904   7677.7104  Latin America & Caribbean
## 3817  2022-09-16       NA   10953714   8536.6521  Latin America & Caribbean
## 3818  2022-09-16 68.67700    8084407   3727.8002  Latin America & Caribbean
## 3819  2022-09-16 65.82200    6863438   2949.4301  Latin America & Caribbean
## 3820  2022-09-16 61.22600    5275767   2475.8867  Latin America & Caribbean
## 3821  2022-09-16 61.66300    5407496   2535.9116  Latin America & Caribbean
## 3822  2022-09-16 62.07900    5539596   2528.4303  Latin America & Caribbean
## 3823  2022-09-16 66.57400    7133491   2801.0584  Latin America & Caribbean
## 3824  2022-09-16 66.93200    7270413   2774.2546  Latin America & Caribbean
## 3825  2022-09-16 73.47100   10397738   7300.0333  Latin America & Caribbean
## 3826  2022-09-16 73.68900   10513111   7556.8537  Latin America & Caribbean
## 3827  2022-09-16 67.59100    7546467   3191.6041  Latin America & Caribbean
## 3828  2022-09-16 67.88700    7683707   3216.1089  Latin America & Caribbean
## 3829  2022-09-16 68.16400    7819239   3340.0439  Latin America & Caribbean
## 3830  2022-09-16 68.42500    7952766   3480.2742  Latin America & Caribbean
## 3831  2022-09-16 69.69000    8598599   4249.1001  Latin America & Caribbean
## 3832  2022-09-16 68.92500    8214427   3915.1361  Latin America & Caribbean
## 3833  2022-09-16 69.17500    8343288   4083.6365  Latin America & Caribbean
## 3834  2022-09-16 69.42900    8471317   4209.4119  Latin America & Caribbean
## 3835  2022-09-16 72.28400    9813219   5881.1354  Latin America & Caribbean
## 3836  2022-09-16 72.76300   10048226   6187.2830  Latin America & Caribbean
## 3837  2022-09-16 73.00300   10165182   6547.3080  Latin America & Caribbean
## 3838  2022-09-16 73.24100   10281675   6921.5206  Latin America & Caribbean
## 3839  2022-09-16 70.49900    8974444   4304.7701  Latin America & Caribbean
## 3840  2022-09-16 60.27700    5014187   2320.3264  Latin America & Caribbean
## 3841  2022-09-16 72.04600    9695117   5771.9184  Latin America & Caribbean
## 3842  2022-09-16 72.52300    9930916   5969.3528  Latin America & Caribbean
## 3843  2022-09-16 67.27200    7408339   3028.1060  Latin America & Caribbean
## 3844  2022-09-16 66.20100    6997877   3020.0648  Latin America & Caribbean
## 3845  2022-09-16 45.09090  980003345   1067.3196                 Aggregates
## 3846  2022-09-16 56.07816 1589897378   1853.3282                 Aggregates
## 3847  2022-09-16 57.85365 1758863284   1780.8448                 Aggregates
## 3848  2022-09-16 58.29199 1803032659   1750.3815                 Aggregates
## 3849  2022-09-16 56.97972 1672134835   1825.2071                 Aggregates
## 3850  2022-09-16 57.41751 1715134126   1787.1850                 Aggregates
## 3851  2022-09-16 55.59598 1551093148   1835.0765                 Aggregates
## 3852  2022-09-16 63.00572 2294576653   2049.3308                 Aggregates
## 3853  2022-09-16       NA 3373866849   3557.4062                 Aggregates
## 3854  2022-09-16 63.72612 2384127937   2114.1347                 Aggregates
## 3855  2022-09-16 64.06879 2428606122   2118.7942                 Aggregates
## 3856  2022-09-16 64.40308 2472852816   2172.5720                 Aggregates
## 3857  2022-09-16 64.73387 2516662185   2156.9841                 Aggregates
## 3858  2022-09-16 65.06517 2560101448   2158.8911                 Aggregates
## 3859  2022-09-16 65.40226 2603300762   2238.1810                 Aggregates
## 3860  2022-09-16 65.74822 2646483605   2339.0860                 Aggregates
## 3861  2022-09-16 66.10621 2689792006   2437.4497                 Aggregates
## 3862  2022-09-16 66.48034 2733278857   2542.2330                 Aggregates
## 3863  2022-09-16 55.08663 1513819992   1807.6229                 Aggregates
## 3864  2022-09-16 67.26250 2820636607   2697.2668                 Aggregates
## 3865  2022-09-16 67.66169 2864298814   2678.3504                 Aggregates
## 3866  2022-09-16 63.37329 2339379359   2105.6435                 Aggregates
## 3867  2022-09-16 68.80321 2994346938   2984.9513                 Aggregates
## 3868  2022-09-16 69.14516 3037084158   3064.8153                 Aggregates
## 3869  2022-09-16 69.46092 3079685581   3148.5040                 Aggregates
## 3870  2022-09-16 69.74851 3122156833   3244.2370                 Aggregates
## 3871  2022-09-16 70.01124 3164439749   3344.8749                 Aggregates
## 3872  2022-09-16 70.25423 3206485623   3450.9777                 Aggregates
## 3873  2022-09-16 70.48324 3248413593   3535.7600                 Aggregates
## 3874  2022-09-16 70.70120 3290291029   3573.6698                 Aggregates
## 3875  2022-09-16 70.91124 3332103561   3374.1530                 Aggregates
## 3876  2022-09-16 54.55359 1477869964   1828.5755                 Aggregates
## 3877  2022-09-16 61.79472 2161761687   1940.0199                 Aggregates
## 3878  2022-09-16 62.21500 2205758867   1966.0446                 Aggregates
## 3879  2022-09-16 62.61932 2249993925   1973.6866                 Aggregates
## 3880  2022-09-16 56.53665 1630293423   1876.7097                 Aggregates
## 3881  2022-09-16 68.43890 2951423688   2905.1760                 Aggregates
## 3882  2022-09-16 50.23498 1216839339   1378.7520                 Aggregates
## 3883  2022-09-16 50.74937 1246947673   1461.4032                 Aggregates
## 3884  2022-09-16 51.26822 1277799456   1510.8980                 Aggregates
## 3885  2022-09-16 51.79354 1309397210   1576.2415                 Aggregates
## 3886  2022-09-16 60.04786 1982160339   1784.1833                 Aggregates
## 3887  2022-09-16 60.49126 2028993568   1837.5154                 Aggregates
## 3888  2022-09-16 60.92844 2073591177   1881.0694                 Aggregates
## 3889  2022-09-16 61.36293 2117785781   1915.7841                 Aggregates
## 3890  2022-09-16 66.86665 2776922505   2646.9301                 Aggregates
## 3891  2022-09-16 48.02842 1103859981   1221.0010                 Aggregates
## 3892  2022-09-16 48.64364 1130947721   1239.9694                 Aggregates
## 3893  2022-09-16 68.05602 2907916947   2810.7522                 Aggregates
## 3894  2022-09-16 49.18720 1158861175   1276.0585                 Aggregates
## 3895  2022-09-16 49.71629 1187474694   1326.2487                 Aggregates
## 3896  2022-09-16 45.74936 1003194972   1088.5022                 Aggregates
## 3897  2022-09-16 46.34439 1027204700   1099.5948                 Aggregates
## 3898  2022-09-16 46.87491 1051972834   1124.1889                 Aggregates
## 3899  2022-09-16 52.33453 1341779503   1651.4931                 Aggregates
## 3900  2022-09-16 47.45644 1077531237   1185.9062                 Aggregates
## 3901  2022-09-16 52.88441 1374824941   1719.9641                 Aggregates
## 3902  2022-09-16 53.44276 1408534717   1719.6648                 Aggregates
## 3903  2022-09-16 54.00368 1442862522   1799.2986                 Aggregates
## 3904  2022-09-16 59.60826 1937278919   1783.9717                 Aggregates
## 3905  2022-09-16 58.73170 1847526576   1758.6606                 Aggregates
## 3906  2022-09-16 59.17197 1892336352   1763.5420                 Aggregates
## 3907  2022-09-16 57.47034 1224481196   1695.1401                 Aggregates
## 3908  2022-09-16 56.09866 1194423916   1586.5298                 Aggregates
## 3909  2022-09-16 50.55754 1083884354   1262.6157                 Aggregates
## 3910  2022-09-16 58.69046 1256501888   1842.2580                 Aggregates
## 3911  2022-09-16 48.92769 1043656626   1153.0285                 Aggregates
## 3912  2022-09-16 54.62324 1165660993   1509.2334                 Aggregates
## 3913  2022-09-16 66.14432 1559219642   2543.5323                 Aggregates
## 3914  2022-09-16 64.70942 1490458433   2287.9274                 Aggregates
## 3915  2022-09-16 53.10145 1135760430   1425.3032                 Aggregates
## 3916  2022-09-16 67.28265 1634587947   2762.4244                 Aggregates
## 3917  2022-09-16 49.59176 1058119847   1199.7228                 Aggregates
## 3918  2022-09-16 66.56430 1582802675   2622.7986                 Aggregates
## 3919  2022-09-16 66.95983 1608709544   2687.7984                 Aggregates
## 3920  2022-09-16 48.42912 1041673567   1113.1851                 Aggregates
## 3921  2022-09-16 65.72796 1536454977   2486.9485                 Aggregates
## 3922  2022-09-16 71.48172 2065912033   5134.7148                 Aggregates
## 3923  2022-09-16 71.77476 2083186086   5315.2696                 Aggregates
## 3924  2022-09-16 65.23410 1513242365   2384.0238                 Aggregates
## 3925  2022-09-16 73.75913 2192059400   7280.4367                 Aggregates
## 3926  2022-09-16 72.92164 2146744105   6460.9415                 Aggregates
## 3927  2022-09-16 73.20093 2161785511   6895.2684                 Aggregates
## 3928  2022-09-16 73.46990 2177119138   7147.2820                 Aggregates
## 3929  2022-09-16 62.14950 1386816705   2138.6472                 Aggregates
## 3930  2022-09-16 71.17192 2047640091   5014.7923                 Aggregates
## 3931  2022-09-16 63.51178 1442992143   2150.1046                 Aggregates
## 3932  2022-09-16 64.12512 1467572978   2203.9993                 Aggregates
## 3933  2022-09-16 51.74365 1109291332   1363.9317                 Aggregates
## 3934  2022-09-16 72.62462 2131146847   6113.5130                 Aggregates
## 3935  2022-09-16 76.07252 2338485387  10834.3641                 Aggregates
## 3936  2022-09-16 76.26688 2351127942  11205.0905                 Aggregates
## 3937  2022-09-16 76.44498 2361517682  11136.1388                 Aggregates
## 3938  2022-09-16       NA 2368622859  11742.1848                 Aggregates
## 3939  2022-09-16 69.79647 1942464423   4379.8086                 Aggregates
## 3940  2022-09-16 67.61531 1659196213   2889.2258                 Aggregates
## 3941  2022-09-16 67.90457 1684377898   3008.3925                 Aggregates
## 3942  2022-09-16 68.17227 1710979840   3107.4087                 Aggregates
## 3943  2022-09-16 62.84399 1416257332   2112.1946                 Aggregates
## 3944  2022-09-16 68.58158 1767394678   3439.7545                 Aggregates
## 3945  2022-09-16 68.77189 1795112149   3561.1547                 Aggregates
## 3946  2022-09-16 75.63815 2307707227   9977.1688                 Aggregates
## 3947  2022-09-16 75.86925 2324120551  10407.4968                 Aggregates
## 3948  2022-09-16 69.09759 1848265154   3810.5792                 Aggregates
## 3949  2022-09-16 69.24627 1872676768   3920.3478                 Aggregates
## 3950  2022-09-16 69.41880 1896190507   4034.5038                 Aggregates
## 3951  2022-09-16 69.61835 1919576721   4194.2748                 Aggregates
## 3952  2022-09-16 70.85517 2028650228   4802.7071                 Aggregates
## 3953  2022-09-16 70.06450 1965146473   4572.7208                 Aggregates
## 3954  2022-09-16 70.32575 1987315524   4705.1454                 Aggregates
## 3955  2022-09-16 70.58485 2008705487   4675.8439                 Aggregates
## 3956  2022-09-16 61.44845 1355934840   2031.7090                 Aggregates
## 3957  2022-09-16 74.84944 2257904491   8880.8137                 Aggregates
## 3958  2022-09-16 75.12687 2275075985   9233.1781                 Aggregates
## 3959  2022-09-16 75.39461 2291503725   9599.4141                 Aggregates
## 3960  2022-09-16 72.06753 2099602481   5534.6638                 Aggregates
## 3961  2022-09-16 72.36114 2115458625   5815.5643                 Aggregates
## 3962  2022-09-16 60.65658 1324084663   1940.3266                 Aggregates
## 3963  2022-09-16 74.56283 2240312711   8504.5015                 Aggregates
## 3964  2022-09-16 59.73093 1289442011   1892.0122                 Aggregates
## 3965  2022-09-16 68.40953 1739049562   3248.6004                 Aggregates
## 3966  2022-09-16 74.01300 2206884622   7781.9495                 Aggregates
## 3967  2022-09-16 68.92722 1822134188   3686.3515                 Aggregates
## 3968  2022-09-16 74.26613 2222577723   8149.9863                 Aggregates
## 3969  2022-09-16 45.61324  894885526    322.3129                 Aggregates
## 3970  2022-09-16 65.06898 1360449290    610.3957                 Aggregates
## 3971  2022-09-16 66.58140 1451914914    761.5682                 Aggregates
## 3972  2022-09-16 66.25836 1429192105    703.6685                 Aggregates
## 3973  2022-09-16       NA 2122086315   8744.9533                 Aggregates
## 3974  2022-09-16 66.87197 1475353577    808.6919                 Aggregates
## 3975  2022-09-16 68.77412 1717918821   1613.7750                 Aggregates
## 3976  2022-09-16 69.01087 1738967370   1738.7325                 Aggregates
## 3977  2022-09-16 68.37449 1674596506   1358.2479                 Aggregates
## 3978  2022-09-16 75.40970 2103723076   8118.6307                 Aggregates
## 3979  2022-09-16 69.83607 1798658267   1975.2396                 Aggregates
## 3980  2022-09-16 70.13618 1816474904   2105.2096                 Aggregates
## 3981  2022-09-16 69.27022 1759768570   1844.3674                 Aggregates
## 3982  2022-09-16 69.54578 1779806863   1876.4088                 Aggregates
## 3983  2022-09-16 71.05127 1865152550   2582.1805                 Aggregates
## 3984  2022-09-16 75.58112 2114009483   8183.6461                 Aggregates
## 3985  2022-09-16 71.64070 1895295259   3049.5236                 Aggregates
## 3986  2022-09-16 71.92757 1909911027   3361.4158                 Aggregates
## 3987  2022-09-16 68.56248 1696480853   1487.3003                 Aggregates
## 3988  2022-09-16 72.78072 1952035667   4339.2302                 Aggregates
## 3989  2022-09-16 73.06626 1965972280   4735.9544                 Aggregates
## 3990  2022-09-16 73.35574 1980957952   5106.7086                 Aggregates
## 3991  2022-09-16 73.64769 1997902548   5446.9461                 Aggregates
## 3992  2022-09-16 73.93841 2014796921   5795.3349                 Aggregates
## 3993  2022-09-16 74.22574 2031203532   6150.0344                 Aggregates
## 3994  2022-09-16 70.44229 1833442370   2231.4093                 Aggregates
## 3995  2022-09-16 70.74837 1849627169   2390.1567                 Aggregates
## 3996  2022-09-16 75.00192 2077988679   7294.4321                 Aggregates
## 3997  2022-09-16 75.21766 2091698238   7719.1446                 Aggregates
## 3998  2022-09-16 64.05795 1318997911    546.5231                 Aggregates
## 3999  2022-09-16 64.58728 1339887224    576.2294                 Aggregates
## 4000  2022-09-16 68.20324 1652544138   1236.7281                 Aggregates
## 4001  2022-09-16 65.50486 1381744531    634.6717                 Aggregates
## 4002  2022-09-16 65.90066 1405401300    664.1789                 Aggregates
## 4003  2022-09-16 57.03299 1087066238    359.4963                 Aggregates
## 4004  2022-09-16 58.19554 1117174724    396.7616                 Aggregates
## 4005  2022-09-16 59.16426 1147919427    412.2812                 Aggregates
## 4006  2022-09-16 60.00716 1176921767    421.8812                 Aggregates
## 4007  2022-09-16 74.50227 2046847689   6511.2581                 Aggregates
## 4008  2022-09-16 74.76205 2062250022   6888.2504                 Aggregates
## 4009  2022-09-16 67.55037 1553562636    985.4827                 Aggregates
## 4010  2022-09-16 67.72465 1579680966   1024.5830                 Aggregates
## 4011  2022-09-16 67.88615 1605202723   1060.3670                 Aggregates
## 4012  2022-09-16 68.04363 1629647064   1128.0978                 Aggregates
## 4013  2022-09-16 52.41280 1003810717    348.5526                 Aggregates
## 4014  2022-09-16 72.21235 1924037330   3753.4062                 Aggregates
## 4015  2022-09-16 72.49664 1938075970   4047.3586                 Aggregates
## 4016  2022-09-16 55.65976 1057860301    331.5448                 Aggregates
## 4017  2022-09-16 46.05826  894489549    279.0174                 Aggregates
## 4018  2022-09-16 46.77433  906424232    273.5348                 Aggregates
## 4019  2022-09-16 47.79881  929645285    283.7353                 Aggregates
## 4020  2022-09-16 60.78377 1204968832    446.1242                 Aggregates
## 4021  2022-09-16 50.71338  976371564    331.5584                 Aggregates
## 4022  2022-09-16 61.51221 1231494202    453.2837                 Aggregates
## 4023  2022-09-16 62.20308 1255581230    475.0124                 Aggregates
## 4024  2022-09-16 71.34882 1880268773   2795.0580                 Aggregates
## 4025  2022-09-16 63.48286 1298416025    508.1540                 Aggregates
## 4026  2022-09-16 49.13719  952505018    307.1020                 Aggregates
## 4027  2022-09-16 54.10112 1030352359    334.7462                 Aggregates
## 4028  2022-09-16 67.35459 1526788538    913.7956                 Aggregates
## 4029  2022-09-16 62.86278 1277799717    480.0057                 Aggregates
## 4030  2022-09-16 67.12959 1500324330    852.0121                 Aggregates
## 4031  2022-09-16 52.37459  990927362    352.5840                 Aggregates
## 4032  2022-09-16 50.66716  963806224    335.4051                 Aggregates
## 4033  2022-09-16 61.49405 1215519592    458.5901                 Aggregates
## 4034  2022-09-16 49.08235  940205341    310.6786                 Aggregates
## 4035  2022-09-16 45.53974  883445587    326.0240                 Aggregates
## 4036  2022-09-16 64.04179 1301958170    552.8913                 Aggregates
## 4037  2022-09-16 47.73554  917563058    287.0641                 Aggregates
## 4038  2022-09-16 63.46591 1281596019    514.0937                 Aggregates
## 4039  2022-09-16 69.61058 1757224496   1897.8298                 Aggregates
## 4040  2022-09-16 64.57197 1322627340    582.9219                 Aggregates
## 4041  2022-09-16 65.05445 1342952249    617.4722                 Aggregates
## 4042  2022-09-16 62.84515 1261221802    485.6260                 Aggregates
## 4043  2022-09-16 70.79723 1826238741   2417.3370                 Aggregates
## 4044  2022-09-16 69.90202 1775880197   1997.7399                 Aggregates
## 4045  2022-09-16 62.18501 1239283626    480.5773                 Aggregates
## 4046  2022-09-16 71.68224 1871341383   3084.2983                 Aggregates
## 4047  2022-09-16 54.06985 1017110642    338.6237                 Aggregates
## 4048  2022-09-16 71.09520 1841560611   2611.5868                 Aggregates
## 4049  2022-09-16 71.39033 1856486255   2826.9230                 Aggregates
## 4050  2022-09-16 58.17646 1102743524    401.3843                 Aggregates
## 4051  2022-09-16 69.32805 1737388723   1865.4782                 Aggregates
## 4052  2022-09-16 59.98920 1161692236    426.8064                 Aggregates
## 4053  2022-09-16 60.76572 1189353305    451.3411                 Aggregates
## 4054  2022-09-16 45.98405  882807979    282.3088                 Aggregates
## 4055  2022-09-16 46.70397  894536202    276.7772                 Aggregates
## 4056  2022-09-16 73.68784 1973056377   5508.3086                 Aggregates
## 4057  2022-09-16 73.97707 1989821912   5860.4211                 Aggregates
## 4058  2022-09-16 74.26356 2006100237   6218.8944                 Aggregates
## 4059  2022-09-16 74.53991 2021618425   6583.9535                 Aggregates
## 4060  2022-09-16 74.79996 2036897092   6964.9544                 Aggregates
## 4061  2022-09-16 65.49100 1363987476    642.0231                 Aggregates
## 4062  2022-09-16 65.88737 1387365779    671.8597                 Aggregates
## 4063  2022-09-16 66.24543 1410865643    711.7987                 Aggregates
## 4064  2022-09-16 59.14616 1133088596    417.0856                 Aggregates
## 4065  2022-09-16 67.11466 1481135104    861.8277                 Aggregates
## 4066  2022-09-16 67.33700 1507322673    924.2850                 Aggregates
## 4067  2022-09-16 73.11046 1941377365   4789.6016                 Aggregates
## 4068  2022-09-16 73.39791 1956238874   5164.4192                 Aggregates
## 4069  2022-09-16 67.52947 1533819032    996.7536                 Aggregates
## 4070  2022-09-16 67.70047 1559650590   1036.2711                 Aggregates
## 4071  2022-09-16 67.86041 1584871821   1072.4477                 Aggregates
## 4072  2022-09-16 68.02012 1608998997   1140.9556                 Aggregates
## 4073  2022-09-16 68.18670 1631566861   1250.8539                 Aggregates
## 4074  2022-09-16 68.36977 1653289936   1373.8028                 Aggregates
## 4075  2022-09-16 68.57362 1674861271   1504.3641                 Aggregates
## 4076  2022-09-16 68.80296 1696013989   1632.3014                 Aggregates
## 4077  2022-09-16 69.05616 1716810410   1758.6768                 Aggregates
## 4078  2022-09-16 72.25739 1899800479   3796.1481                 Aggregates
## 4079  2022-09-16 72.54253 1913718217   4093.3734                 Aggregates
## 4080  2022-09-16 72.82630 1927560597   4388.4762                 Aggregates
## 4081  2022-09-16       NA 2096155040   8841.7352                 Aggregates
## 4082  2022-09-16 70.19842 1793498345   2129.1582                 Aggregates
## 4083  2022-09-16 70.49794 1810261111   2256.7812                 Aggregates
## 4084  2022-09-16 55.63415 1044230688    335.3963                 Aggregates
## 4085  2022-09-16 57.01147 1073035646    363.6808                 Aggregates
## 4086  2022-09-16 71.97078 1885806879   3399.7453                 Aggregates
## 4087  2022-09-16 75.25628 2066103849   7804.6978                 Aggregates
## 4088  2022-09-16 66.56859 1433295157    770.3685                 Aggregates
## 4089  2022-09-16 66.85864 1456445331    818.0299                 Aggregates
## 4090  2022-09-16 75.61974 2088186305   8274.1810                 Aggregates
## 4091  2022-09-16 75.04022 2052513823   7375.4407                 Aggregates
## 4092  2022-09-16 75.44844 2078012370   8208.5063                 Aggregates
## 4093  2022-09-16 61.29800    7187794   4068.9123  Latin America & Caribbean
## 4094  2022-09-16 61.83400    7383713   4024.5150  Latin America & Caribbean
## 4095  2022-09-16 62.94200    7784074   4186.0630  Latin America & Caribbean
## 4096  2022-09-16 68.89900   10230931   4269.7829  Latin America & Caribbean
## 4097  2022-09-16 69.34700   10472476   4350.3063  Latin America & Caribbean
## 4098  2022-09-16 62.38200    7582357   4142.7351  Latin America & Caribbean
## 4099  2022-09-16 68.43100    9991870   4216.7664  Latin America & Caribbean
## 4100  2022-09-16 70.58700   11207999   4412.9021  Latin America & Caribbean
## 4101  2022-09-16 70.97200   11455205   4414.9283  Latin America & Caribbean
## 4102  2022-09-16 69.77700   10716131   4341.2800  Latin America & Caribbean
## 4103  2022-09-16 70.18900   10961460   4327.8633  Latin America & Caribbean
## 4104  2022-09-16 76.58400   16785356   5981.1326  Latin America & Caribbean
## 4105  2022-09-16 76.80000   17084359   5952.2181  Latin America & Caribbean
## 4106  2022-09-16 71.34800   11703169   4396.2213  Latin America & Caribbean
## 4107  2022-09-16 77.21600   17643060   5315.5165  Latin America & Caribbean
## 4108  2022-09-16 73.37100   13143465   4397.4230  Latin America & Caribbean
## 4109  2022-09-16 74.31900   14059379   5023.2911  Latin America & Caribbean
## 4110  2022-09-16 74.51400   14296554   5048.1446  Latin America & Caribbean
## 4111  2022-09-16 74.70500   14535740   5280.7136  Latin America & Caribbean
## 4112  2022-09-16 74.89500   14774412   5224.8383  Latin America & Caribbean
## 4113  2022-09-16 75.08900   15011114   5323.7375  Latin America & Caribbean
## 4114  2022-09-16 75.28900   15243885   5654.9281  Latin America & Caribbean
## 4115  2022-09-16 75.49500   15474099   5885.0999  Latin America & Caribbean
## 4116  2022-09-16 75.70700   15707473   6084.4439  Latin America & Caribbean
## 4117  2022-09-16 75.92300   15951832   6218.2392  Latin America & Caribbean
## 4118  2022-09-16 76.14300   16212022   6124.4909  Latin America & Caribbean
## 4119  2022-09-16 77.01000   17373657   5853.8131  Latin America & Caribbean
## 4120  2022-09-16 67.94300    9755576   4275.8965  Latin America & Caribbean
## 4121  2022-09-16 59.74500    6614840   3335.8742  Latin America & Caribbean
## 4122  2022-09-16       NA   17888474   5464.6293  Latin America & Caribbean
## 4123  2022-09-16 60.77400    6994331   3893.4524  Latin America & Caribbean
## 4124  2022-09-16 73.88700   13596390   4725.2324  Latin America & Caribbean
## 4125  2022-09-16 74.11200   13825839   4892.6913  Latin America & Caribbean
## 4126  2022-09-16 55.15800    5093848   2774.3803  Latin America & Caribbean
## 4127  2022-09-16 55.66900    5243980   2783.2133  Latin America & Caribbean
## 4128  2022-09-16 56.17400    5399423   2693.9102  Latin America & Caribbean
## 4129  2022-09-16 63.51200    7989178   4229.8575  Latin America & Caribbean
## 4130  2022-09-16 64.66900    8409396   4270.1380  Latin America & Caribbean
## 4131  2022-09-16 65.24600    8624594   4149.5651  Latin America & Caribbean
## 4132  2022-09-16 76.36500   16491116   5947.0020  Latin America & Caribbean
## 4133  2022-09-16 59.23200    6429377   3011.9183  Latin America & Caribbean
## 4134  2022-09-16 66.91100    9292481   4250.2871  Latin America & Caribbean
## 4135  2022-09-16 67.43600    9522362   4136.9336  Latin America & Caribbean
## 4136  2022-09-16 73.64100   13369678   4440.7298  Latin America & Caribbean
## 4137  2022-09-16 53.54700    4674176   2627.6393  Latin America & Caribbean
## 4138  2022-09-16 54.09800    4809194   2679.4970  Latin America & Caribbean
## 4139  2022-09-16 54.63500    4948991   2658.6534  Latin America & Caribbean
## 4140  2022-09-16 72.07500   12198449   4543.9998  Latin America & Caribbean
## 4141  2022-09-16 65.81400    8843463   4153.1079  Latin America & Caribbean
## 4142  2022-09-16 56.67600    5560013   2736.9940  Latin America & Caribbean
## 4143  2022-09-16 71.71600   11951457   4491.2009  Latin America & Caribbean
## 4144  2022-09-16 52.98200    4543658   2571.3523  Latin America & Caribbean
## 4145  2022-09-16 60.25800    6803271   3607.0259  Latin America & Caribbean
## 4146  2022-09-16 66.37100    9066100   4210.5312  Latin America & Caribbean
## 4147  2022-09-16 73.07800   12914660   4299.2021  Latin America & Caribbean
## 4148  2022-09-16 57.18100    5725462   2708.6539  Latin America & Caribbean
## 4149  2022-09-16 57.69000    5895368   2753.4183  Latin America & Caribbean
## 4150  2022-09-16 58.20300    6069375   2858.2670  Latin America & Caribbean
## 4151  2022-09-16 58.71800    6247421   2951.5426  Latin America & Caribbean
## 4152  2022-09-16 72.76100   12681123   4209.3450  Latin America & Caribbean
## 4153  2022-09-16 64.08900    8197648   4353.6688  Latin America & Caribbean
## 4154  2022-09-16 72.42500   12442109   4243.8722  Latin America & Caribbean
## 4155  2022-09-16 50.54500   30433024    941.9867 Middle East & North Africa
## 4156  2022-09-16 49.13400   28112258    788.7199 Middle East & North Africa
## 4157  2022-09-16 56.22200   40329589   1248.5439 Middle East & North Africa
## 4158  2022-09-16 48.60900   27366239    779.9913 Middle East & North Africa
## 4159  2022-09-16 57.65900   42267429   1352.9479 Middle East & North Africa
## 4160  2022-09-16 50.10100   29644875    921.7362 Middle East & North Africa
## 4161  2022-09-16 67.24900   63601632   2248.5942 Middle East & North Africa
## 4162  2022-09-16 56.95800   41275728   1325.1887 Middle East & North Africa
## 4163  2022-09-16 54.02100   37708144    992.6995 Middle East & North Africa
## 4164  2022-09-16 49.62800   28871383    848.7588 Middle East & North Africa
## 4165  2022-09-16 55.46500   39422731   1171.7697 Middle East & North Africa
## 4166  2022-09-16 53.40800   36896551    998.9621 Middle East & North Africa
## 4167  2022-09-16 68.79600   70152662   2651.8655 Middle East & North Africa
## 4168  2022-09-16 54.71700   38549133   1057.8457 Middle East & North Africa
## 4169  2022-09-16 50.94500   31237597    964.0365 Middle East & North Africa
## 4170  2022-09-16 68.60200   68831561   2610.4765 Middle East & North Africa
## 4171  2022-09-16 51.59200   32881852    908.3707 Middle East & North Africa
## 4172  2022-09-16 68.96100   71485044   2664.6420 Middle East & North Africa
## 4173  2022-09-16 66.77900   62334025   2185.3022 Middle East & North Africa
## 4174  2022-09-16 52.47900   35311905    978.5268 Middle East & North Africa
## 4175  2022-09-16 52.89400   36102670    986.3396 Middle East & North Africa
## 4176  2022-09-16 48.04200   26632891    762.1341 Middle East & North Africa
## 4177  2022-09-16 68.05100   66200259   2406.0452 Middle East & North Africa
## 4178  2022-09-16 68.35700   67515591   2501.9819 Middle East & North Africa
## 4179  2022-09-16 70.73600   86422240   3472.1483 Middle East & North Africa
## 4180  2022-09-16 70.92800   88404652   3468.4688 Middle East & North Africa
## 4181  2022-09-16 71.11700   90424668   3489.8641 Middle East & North Africa
## 4182  2022-09-16 71.30200   92442549   3562.9327 Middle East & North Africa
## 4183  2022-09-16 58.33200   43309063   1452.5982 Middle East & North Africa
## 4184  2022-09-16 58.99500   44400113   1521.0253 Middle East & North Africa
## 4185  2022-09-16 51.86500   33703127    933.0246 Middle East & North Africa
## 4186  2022-09-16 52.14600   34513851    962.1166 Middle East & North Africa
## 4187  2022-09-16 60.37200   46728284   1669.3458 Middle East & North Africa
## 4188  2022-09-16 61.09100   47968643   1784.6640 Middle East & North Africa
## 4189  2022-09-16 70.15900   81134789   3381.1154 Middle East & North Africa
## 4190  2022-09-16 70.34900   82761244   3485.2822 Middle East & North Africa
## 4191  2022-09-16 70.54300   84529251   3472.5983 Middle East & North Africa
## 4192  2022-09-16 63.11000   51991696   1894.5079 Middle East & North Africa
## 4193  2022-09-16 63.66200   53399243   1945.3086 Middle East & North Africa
## 4194  2022-09-16 64.14300   54788680   1989.2741 Middle East & North Africa
## 4195  2022-09-16 64.57200   56134478   2051.6123 Middle East & North Africa
## 4196  2022-09-16 64.97800   57424552   2028.0919 Middle East & North Africa
## 4197  2022-09-16 65.39200   58666812   2073.9402 Middle East & North Africa
## 4198  2022-09-16 65.83100   59880656   2090.8404 Middle East & North Africa
## 4199  2022-09-16 66.29800   61095804   2130.6757 Middle East & North Africa
## 4200  2022-09-16 69.60800   76873670   2970.9448 Middle East & North Africa
## 4201  2022-09-16 69.78800   78232124   3126.2750 Middle East & North Africa
## 4202  2022-09-16 69.97100   79636081   3290.9407 Middle East & North Africa
## 4203  2022-09-16       NA  104258327   4085.6249 Middle East & North Africa
## 4204  2022-09-16 67.68000   64892269   2324.9166 Middle East & North Africa
## 4205  2022-09-16 62.48700   50602360   1874.6718 Middle East & North Africa
## 4206  2022-09-16 51.29200   32056506    946.9741 Middle East & North Africa
## 4207  2022-09-16 69.27100   74172073   2758.5664 Middle East & North Africa
## 4208  2022-09-16 69.43400   75523576   2830.3501 Middle East & North Africa
## 4209  2022-09-16 69.11600   72826102   2699.1011 Middle East & North Africa
## 4210  2022-09-16 59.67100   45539295   1629.8972 Middle East & North Africa
## 4211  2022-09-16 72.15000  102334403   4028.4209 Middle East & North Africa
## 4212  2022-09-16 71.48200   94447071   3638.8949 Middle East & North Africa
## 4213  2022-09-16 71.82500   98423602   3831.1998 Middle East & North Africa
## 4214  2022-09-16 71.99000  100388076   3964.9871 Middle East & North Africa
## 4215  2022-09-16 61.80600   49258726   1838.5757 Middle East & North Africa
## 4216  2022-09-16 71.65600   96442590   3712.6037 Middle East & North Africa
## 4217  2022-09-16 73.53300    6486201   3632.4539  Latin America & Caribbean
## 4218  2022-09-16       NA    6518500   4004.8477  Latin America & Caribbean
## 4219  2022-09-16 73.31700    6453550   3993.5291  Latin America & Caribbean
## 4220  2022-09-16 64.85800    5342190   2409.0314  Latin America & Caribbean
## 4221  2022-09-16 56.17800    4426679   3507.1051  Latin America & Caribbean
## 4222  2022-09-16 66.82400    5561916   2743.3731  Latin America & Caribbean
## 4223  2022-09-16 67.27700    5628602   2839.2052  Latin America & Caribbean
## 4224  2022-09-16 72.87200    6388124   3846.9739  Latin America & Caribbean
## 4225  2022-09-16 66.27300    5490478   2654.5163  Latin America & Caribbean
## 4226  2022-09-16 72.17500    6295124   3636.0103  Latin America & Caribbean
## 4227  2022-09-16 72.41200    6325121   3705.5797  Latin America & Caribbean
## 4228  2022-09-16 65.61700    5416327   2542.9032  Latin America & Caribbean
## 4229  2022-09-16 62.04400    5133273   2333.7927  Latin America & Caribbean
## 4230  2022-09-16 63.05000    5200608   2325.7837  Latin America & Caribbean
## 4231  2022-09-16 64.00000    5270074   2406.0483  Latin America & Caribbean
## 4232  2022-09-16 70.12400    6052124   3140.0330  Latin America & Caribbean
## 4233  2022-09-16 70.33300    6079395   3261.7639  Latin America & Caribbean
## 4234  2022-09-16 70.54200    6105810   3308.0496  Latin America & Caribbean
## 4235  2022-09-16 70.75600    6131767   3364.1004  Latin America & Caribbean
## 4236  2022-09-16 70.97800    6157678   3280.0204  Latin America & Caribbean
## 4237  2022-09-16 71.21000    6183877   3334.9328  Latin America & Caribbean
## 4238  2022-09-16 71.44900    6210567   3447.3501  Latin America & Caribbean
## 4239  2022-09-16 71.69200    6237922   3528.8671  Latin America & Caribbean
## 4240  2022-09-16 71.93500    6266076   3591.4271  Latin America & Caribbean
## 4241  2022-09-16 72.64400    6356137   3781.3786  Latin America & Caribbean
## 4242  2022-09-16 55.58600    3867310   2988.8500  Latin America & Caribbean
## 4243  2022-09-16 55.79300    3964273   3057.4990  Latin America & Caribbean
## 4244  2022-09-16 73.09600    6420740   3920.5263  Latin America & Caribbean
## 4245  2022-09-16 56.05200    4154689   3162.8811  Latin America & Caribbean
## 4246  2022-09-16 56.11000    4247508   3249.9762  Latin America & Caribbean
## 4247  2022-09-16 56.14200    4338451   3397.5813  Latin America & Caribbean
## 4248  2022-09-16 52.39100    3109571          NA  Latin America & Caribbean
## 4249  2022-09-16 52.89300    3201310   2635.5589  Latin America & Caribbean
## 4250  2022-09-16 56.24800    4511127   3297.5905  Latin America & Caribbean
## 4251  2022-09-16 57.05800    4737256   2334.4908  Latin America & Caribbean
## 4252  2022-09-16 57.60100    4804936   2337.0306  Latin America & Caribbean
## 4253  2022-09-16 58.28300    4871041   2336.0966  Latin America & Caribbean
## 4254  2022-09-16 55.32000    3770060   2889.2006  Latin America & Caribbean
## 4255  2022-09-16 60.02500    5002339   2293.2103  Latin America & Caribbean
## 4256  2022-09-16 61.02400    5067531   2320.4866  Latin America & Caribbean
## 4257  2022-09-16 69.43200    5962139   3028.5462  Latin America & Caribbean
## 4258  2022-09-16 69.68000    5994075   3059.5664  Latin America & Caribbean
## 4259  2022-09-16 69.90800    6023801   3071.5458  Latin America & Caribbean
## 4260  2022-09-16 51.84700    3019224          NA  Latin America & Caribbean
## 4261  2022-09-16 67.97800    5746288   2891.6014  Latin America & Caribbean
## 4262  2022-09-16 68.28400    5797764   2941.9404  Latin America & Caribbean
## 4263  2022-09-16 53.36000    3293954   2744.8603  Latin America & Caribbean
## 4264  2022-09-16 67.65100    5689943   2831.3876  Latin America & Caribbean
## 4265  2022-09-16 69.16200    5927001   2999.3239  Latin America & Caribbean
## 4266  2022-09-16 54.22600    3481624   2826.7175  Latin America & Caribbean
## 4267  2022-09-16 59.09700    4936803   2319.1379  Latin America & Caribbean
## 4268  2022-09-16 68.87500    5887930   2992.9008  Latin America & Caribbean
## 4269  2022-09-16 51.25600    2931187          NA  Latin America & Caribbean
## 4270  2022-09-16 55.94800    4060255   3144.5130  Latin America & Caribbean
## 4271  2022-09-16 50.62100    2846601          NA  Latin America & Caribbean
## 4272  2022-09-16 53.80300    3387384   2814.2700  Latin America & Caribbean
## 4273  2022-09-16 54.62800    3576834   2847.3749  Latin America & Caribbean
## 4274  2022-09-16 54.99800    3673066   2855.3292  Latin America & Caribbean
## 4275  2022-09-16 68.58100    5844834   2981.3417  Latin America & Caribbean
## 4276  2022-09-16 56.39400    4591135   2726.9905  Latin America & Caribbean
## 4277  2022-09-16 49.95000    2766319          NA  Latin America & Caribbean
## 4278  2022-09-16 56.65800    4666361   2529.5331  Latin America & Caribbean
## 4279  2022-09-16 36.87200     258786          NA         Sub-Saharan Africa
## 4280  2022-09-16 39.52500     304000          NA         Sub-Saharan Africa
## 4281  2022-09-16 40.73200     277656          NA         Sub-Saharan Africa
## 4282  2022-09-16 36.53500     255338          NA         Sub-Saharan Africa
## 4283  2022-09-16 50.20000     462637    556.0927         Sub-Saharan Africa
## 4284  2022-09-16 41.02100     265762          NA         Sub-Saharan Africa
## 4285  2022-09-16 40.15600     298852          NA         Sub-Saharan Africa
## 4286  2022-09-16 40.44800     289508          NA         Sub-Saharan Africa
## 4287  2022-09-16 50.69400     479099    626.4943         Sub-Saharan Africa
## 4288  2022-09-16 41.34400     255808          NA         Sub-Saharan Africa
## 4289  2022-09-16 53.58100     631662   6983.4390         Sub-Saharan Africa
## 4290  2022-09-16 37.20800     262219          NA         Sub-Saharan Africa
## 4291  2022-09-16 52.93000     581765   3925.9055         Sub-Saharan Africa
## 4292  2022-09-16 53.27900     606180   4454.0382         Sub-Saharan Africa
## 4293  2022-09-16 38.20500     276296          NA         Sub-Saharan Africa
## 4294  2022-09-16 49.70800     447269    518.0430         Sub-Saharan Africa
## 4295  2022-09-16 38.86600     291786          NA         Sub-Saharan Africa
## 4296  2022-09-16 39.19500     299416          NA         Sub-Saharan Africa
## 4297  2022-09-16 39.84800     303986          NA         Sub-Saharan Africa
## 4298  2022-09-16 52.11200     536459   2737.2146         Sub-Saharan Africa
## 4299  2022-09-16 52.53800     558496   3254.2914         Sub-Saharan Africa
## 4300  2022-09-16 55.94500     986861  14098.6464         Sub-Saharan Africa
## 4301  2022-09-16 56.28800    1031191  14614.1769         Sub-Saharan Africa
## 4302  2022-09-16 56.64200    1076412  13421.5657         Sub-Saharan Africa
## 4303  2022-09-16 57.00100    1122273  12926.5335         Sub-Saharan Africa
## 4304  2022-09-16 41.73800     247969          NA         Sub-Saharan Africa
## 4305  2022-09-16 42.21800     242160          NA         Sub-Saharan Africa
## 4306  2022-09-16 42.78800     239681          NA         Sub-Saharan Africa
## 4307  2022-09-16 38.53600     283506          NA         Sub-Saharan Africa
## 4308  2022-09-16 44.12700     249931    528.4901         Sub-Saharan Africa
## 4309  2022-09-16 44.81900     264370    528.4512         Sub-Saharan Africa
## 4310  2022-09-16 55.07000     860839  16438.6414         Sub-Saharan Africa
## 4311  2022-09-16 55.32900     901589  15906.4965         Sub-Saharan Africa
## 4312  2022-09-16 55.62200     943640  13841.3964         Sub-Saharan Africa
## 4313  2022-09-16 46.52800     331554    456.7711         Sub-Saharan Africa
## 4314  2022-09-16 46.93800     352116    485.6025         Sub-Saharan Africa
## 4315  2022-09-16 47.29300     369024    452.5544         Sub-Saharan Africa
## 4316  2022-09-16 47.63000     382977    455.4136         Sub-Saharan Africa
## 4317  2022-09-16 47.98100     394973    453.3071         Sub-Saharan Africa
## 4318  2022-09-16 48.36000     406620    434.9105         Sub-Saharan Africa
## 4319  2022-09-16 48.77500     419188    414.4522         Sub-Saharan Africa
## 4320  2022-09-16 49.22900     432844    397.2734         Sub-Saharan Africa
## 4321  2022-09-16 54.44900     749527  12908.0638         Sub-Saharan Africa
## 4322  2022-09-16 54.63800     784494  13282.9425         Sub-Saharan Africa
## 4323  2022-09-16 54.84200     821686  14619.7506         Sub-Saharan Africa
## 4324  2022-09-16 59.05700    1402985   6860.3741         Sub-Saharan Africa
## 4325  2022-09-16 51.18400     496768    709.8652         Sub-Saharan Africa
## 4326  2022-09-16 51.65900     515844   1138.7646         Sub-Saharan Africa
## 4327  2022-09-16 37.54200     266005          NA         Sub-Saharan Africa
## 4328  2022-09-16 37.87400     270616          NA         Sub-Saharan Africa
## 4329  2022-09-16 54.26300     716949  11558.6754         Sub-Saharan Africa
## 4330  2022-09-16 53.84000     658388   8003.9618         Sub-Saharan Africa
## 4331  2022-09-16 43.43500     241977          NA         Sub-Saharan Africa
## 4332  2022-09-16 58.73500    1355982   7412.5812         Sub-Saharan Africa
## 4333  2022-09-16 57.35900    1168575  11283.3980         Sub-Saharan Africa
## 4334  2022-09-16 58.06100    1262008   8986.9510         Sub-Saharan Africa
## 4335  2022-09-16 46.03900     308208    486.4505         Sub-Saharan Africa
## 4336  2022-09-16       NA    1449891   6575.6722         Sub-Saharan Africa
## 4337  2022-09-16 58.40200    1308966   8124.1829         Sub-Saharan Africa
## 4338  2022-09-16 45.46600     284638    501.6285         Sub-Saharan Africa
## 4339  2022-09-16 54.06400     686670   8745.2691         Sub-Saharan Africa
## 4340  2022-09-16 57.71300    1215181   9894.0063         Sub-Saharan Africa
## 4341  2022-09-16 65.11100         NA          NA         Sub-Saharan Africa
## 4342  2022-09-16 65.53800         NA          NA         Sub-Saharan Africa
## 4343  2022-09-16 64.66400         NA          NA         Sub-Saharan Africa
## 4344  2022-09-16 48.23000    2064803          NA         Sub-Saharan Africa
## 4345  2022-09-16 63.23800         NA          NA         Sub-Saharan Africa
## 4346  2022-09-16 48.84100    2185607          NA         Sub-Saharan Africa
## 4347  2022-09-16 49.19200    2231144          NA         Sub-Saharan Africa
## 4348  2022-09-16 49.58800    2258649          NA         Sub-Saharan Africa
## 4349  2022-09-16 48.52200    2127421          NA         Sub-Saharan Africa
## 4350  2022-09-16 47.44100    1890556          NA         Sub-Saharan Africa
## 4351  2022-09-16 61.60200    3119920    650.1897         Sub-Saharan Africa
## 4352  2022-09-16 62.19300    3170437    653.8688         Sub-Saharan Africa
## 4353  2022-09-16 55.27300    2292413    828.4017         Sub-Saharan Africa
## 4354  2022-09-16 55.86400    2374721    869.7055         Sub-Saharan Africa
## 4355  2022-09-16 47.69500    1946299          NA         Sub-Saharan Africa
## 4356  2022-09-16 57.19100    2600972    796.1971         Sub-Saharan Africa
## 4357  2022-09-16 57.93200    2719809    772.4624         Sub-Saharan Africa
## 4358  2022-09-16 58.70700    2826653    762.3992         Sub-Saharan Africa
## 4359  2022-09-16 56.50000    2481059    857.4481         Sub-Saharan Africa
## 4360  2022-09-16 60.24300    2996540    722.3670         Sub-Saharan Africa
## 4361  2022-09-16 60.95200    3062782    637.6027         Sub-Saharan Africa
## 4362  2022-09-16 62.73200    3213969    700.9982         Sub-Saharan Africa
## 4363  2022-09-16 43.54500    1347180          NA         Sub-Saharan Africa
## 4364  2022-09-16 43.93400    1384789          NA         Sub-Saharan Africa
## 4365  2022-09-16 47.95600    2003942          NA         Sub-Saharan Africa
## 4366  2022-09-16 64.20100         NA          NA         Sub-Saharan Africa
## 4367  2022-09-16 45.05400    1505438          NA         Sub-Saharan Africa
## 4368  2022-09-16 45.40400    1547978          NA         Sub-Saharan Africa
## 4369  2022-09-16 45.73900    1591622          NA         Sub-Saharan Africa
## 4370  2022-09-16 65.94100         NA          NA         Sub-Saharan Africa
## 4371  2022-09-16 66.32100         NA          NA         Sub-Saharan Africa
## 4372  2022-09-16 59.48700    2918209    731.3222         Sub-Saharan Africa
## 4373  2022-09-16       NA         NA          NA         Sub-Saharan Africa
## 4374  2022-09-16 46.36400    1683932          NA         Sub-Saharan Africa
## 4375  2022-09-16 43.15600    1310947          NA         Sub-Saharan Africa
## 4376  2022-09-16 46.92700    1784557          NA         Sub-Saharan Africa
## 4377  2022-09-16 47.18700    1836825          NA         Sub-Saharan Africa
## 4378  2022-09-16 63.72600         NA          NA         Sub-Saharan Africa
## 4379  2022-09-16 54.13700    2206439    888.4803         Sub-Saharan Africa
## 4380  2022-09-16 54.70700    2237412    876.2990         Sub-Saharan Africa
## 4381  2022-09-16 39.69300    1060489          NA         Sub-Saharan Africa
## 4382  2022-09-16 40.25900    1088859          NA         Sub-Saharan Africa
## 4383  2022-09-16 40.76800    1118152          NA         Sub-Saharan Africa
## 4384  2022-09-16 41.22100    1148188          NA         Sub-Saharan Africa
## 4385  2022-09-16 50.04000    2266356          NA         Sub-Saharan Africa
## 4386  2022-09-16 50.54500    2257593    511.5741         Sub-Saharan Africa
## 4387  2022-09-16 51.10000    2238631    585.3214         Sub-Saharan Africa
## 4388  2022-09-16 46.65400    1733423          NA         Sub-Saharan Africa
## 4389  2022-09-16 52.31600    2204227    741.2072         Sub-Saharan Africa
## 4390  2022-09-16 52.93800    2196467    812.6955         Sub-Saharan Africa
## 4391  2022-09-16 42.01500    1210304          NA         Sub-Saharan Africa
## 4392  2022-09-16 44.31600    1423749          NA         Sub-Saharan Africa
## 4393  2022-09-16 44.69100    1463986          NA         Sub-Saharan Africa
## 4394  2022-09-16 39.07500    1033320          NA         Sub-Saharan Africa
## 4395  2022-09-16 42.39400    1242633          NA         Sub-Saharan Africa
## 4396  2022-09-16 42.77300    1276122          NA         Sub-Saharan Africa
## 4397  2022-09-16 41.63000    1178875          NA         Sub-Saharan Africa
## 4398  2022-09-16 66.67900         NA          NA         Sub-Saharan Africa
## 4399  2022-09-16 53.54800    2195192    877.4784         Sub-Saharan Africa
## 4400  2022-09-16 51.69600    2218436    715.9940         Sub-Saharan Africa
## 4401  2022-09-16 46.05900    1636771          NA         Sub-Saharan Africa
## 4402  2022-09-16 38.41900    1007586          NA         Sub-Saharan Africa
## 4403  2022-09-16 69.30993    1277086          NA      Europe & Central Asia
## 4404  2022-09-16 69.88293    1331214          NA      Europe & Central Asia
## 4405  2022-09-16 69.47561    1569174          NA      Europe & Central Asia
## 4406  2022-09-16 69.92810    1345249          NA      Europe & Central Asia
## 4407  2022-09-16 69.80212    1318946          NA      Europe & Central Asia
## 4408  2022-09-16 69.37317    1561314          NA      Europe & Central Asia
## 4409  2022-09-16 69.93710    1360076          NA      Europe & Central Asia
## 4410  2022-09-16 69.80976    1399535   8692.2964      Europe & Central Asia
## 4411  2022-09-16 69.35854    1386156   9157.0648      Europe & Central Asia
## 4412  2022-09-16 67.54390    1436634   7137.5308      Europe & Central Asia
## 4413  2022-09-16 69.61220    1415594   7601.6690      Europe & Central Asia
## 4414  2022-09-16 67.90290    1211537          NA      Europe & Central Asia
## 4415  2022-09-16 70.03902    1568131          NA      Europe & Central Asia
## 4416  2022-09-16 68.74102    1241623          NA      Europe & Central Asia
## 4417  2022-09-16 69.05356    1258857          NA      Europe & Central Asia
## 4418  2022-09-16 69.51763    1294566          NA      Europe & Central Asia
## 4419  2022-09-16 69.68120    1308597          NA      Europe & Central Asia
## 4420  2022-09-16 66.50000    1462514          NA      Europe & Central Asia
## 4421  2022-09-16 72.69146    1346810  16155.2074      Europe & Central Asia
## 4422  2022-09-16 72.81463    1340680  17459.0983      Europe & Central Asia
## 4423  2022-09-16 73.77073    1337090  16607.5681      Europe & Central Asia
## 4424  2022-09-16 74.82439    1334515  14205.3949      Europe & Central Asia
## 4425  2022-09-16 69.90534    1376955          NA      Europe & Central Asia
## 4426  2022-09-16 69.83283    1392518          NA      Europe & Central Asia
## 4427  2022-09-16 69.72459    1405951          NA      Europe & Central Asia
## 4428  2022-09-16 68.36080    1225077          NA      Europe & Central Asia
## 4429  2022-09-16 69.02627    1460188          NA      Europe & Central Asia
## 4430  2022-09-16 68.93859    1468333          NA      Europe & Central Asia
## 4431  2022-09-16 71.31707    1370720  12362.2483      Europe & Central Asia
## 4432  2022-09-16 71.90976    1362550  13282.5455      Europe & Central Asia
## 4433  2022-09-16 72.56829    1354775  14631.3873      Europe & Central Asia
## 4434  2022-09-16 68.97805    1487666          NA      Europe & Central Asia
## 4435  2022-09-16 69.12683    1498414          NA      Europe & Central Asia
## 4436  2022-09-16 69.37561    1508745          NA      Europe & Central Asia
## 4437  2022-09-16 69.27805    1518617          NA      Europe & Central Asia
## 4438  2022-09-16 69.38049    1528781          NA      Europe & Central Asia
## 4439  2022-09-16 70.08537    1540190          NA      Europe & Central Asia
## 4440  2022-09-16 70.64390    1552221          NA      Europe & Central Asia
## 4441  2022-09-16 70.69756    1561900          NA      Europe & Central Asia
## 4442  2022-09-16 70.41707    1396985   9960.1390      Europe & Central Asia
## 4443  2022-09-16 70.25854    1388115  10625.5793      Europe & Central Asia
## 4444  2022-09-16 70.90488    1379350  11417.1680      Europe & Central Asia
## 4445  2022-09-16 69.29002    1439576          NA      Europe & Central Asia
## 4446  2022-09-16 68.86341    1533091          NA      Europe & Central Asia
## 4447  2022-09-16 67.90976    1494128          NA      Europe & Central Asia
## 4448  2022-09-16 78.09268    1317384  18962.4103      Europe & Central Asia
## 4449  2022-09-16 78.24390    1321977  19677.6768      Europe & Central Asia
## 4450  2022-09-16 78.64634    1326855  20408.4362      Europe & Central Asia
## 4451  2022-09-16 78.34634    1329479  19767.0776      Europe & Central Asia
## 4452  2022-09-16       NA    1329254  21421.1459      Europe & Central Asia
## 4453  2022-09-16 69.44132    1429352          NA      Europe & Central Asia
## 4454  2022-09-16 70.06341    1390244   9091.3332      Europe & Central Asia
## 4455  2022-09-16 76.22927    1327439  15692.7888      Europe & Central Asia
## 4456  2022-09-16 69.59022    1418169          NA      Europe & Central Asia
## 4457  2022-09-16 77.64146    1315790  17945.9450      Europe & Central Asia
## 4458  2022-09-16 77.14146    1317997  16553.3833      Europe & Central Asia
## 4459  2022-09-16 69.14695    1450211          NA      Europe & Central Asia
## 4460  2022-09-16 68.90563    1477219          NA      Europe & Central Asia
## 4461  2022-09-16 77.59024    1315407  17402.0376      Europe & Central Asia
## 4462  2022-09-16 76.32683    1322696  16257.4722      Europe & Central Asia
## 4463  2022-09-16 75.42927    1331475  14585.8387      Europe & Central Asia
## 4464  2022-09-16 77.03415    1314545  17096.6446      Europe & Central Asia
## 4465  2022-09-16 60.72100    1160164   3723.2961         Sub-Saharan Africa
## 4466  2022-09-16 56.96200    1113994   3686.2157         Sub-Saharan Africa
## 4467  2022-09-16 58.31900    1124808   3724.7619         Sub-Saharan Africa
## 4468  2022-09-16 59.40100    1136274   3775.0399         Sub-Saharan Africa
## 4469  2022-09-16 60.19400    1148133   3833.2468         Sub-Saharan Africa
## 4470  2022-09-16 61.88500     798498   1922.0302         Sub-Saharan Africa
## 4471  2022-09-16 49.86200    1079285   3513.3769         Sub-Saharan Africa
## 4472  2022-09-16 45.27500    1057462   3205.8752         Sub-Saharan Africa
## 4473  2022-09-16 46.60100    1064841   3304.4398         Sub-Saharan Africa
## 4474  2022-09-16 55.35900    1104038   3680.3495         Sub-Saharan Africa
## 4475  2022-09-16 59.74900     699077   1418.0325         Sub-Saharan Africa
## 4476  2022-09-16 60.46000     723599   1537.9974         Sub-Saharan Africa
## 4477  2022-09-16 61.08100     748634   1703.7019         Sub-Saharan Africa
## 4478  2022-09-16 61.57200     773774   1756.6420         Sub-Saharan Africa
## 4479  2022-09-16 42.73100    1026287   2749.3002         Sub-Saharan Africa
## 4480  2022-09-16 42.51800    1030575   2902.0991         Sub-Saharan Africa
## 4481  2022-09-16 42.73300    1036095   3059.6097         Sub-Saharan Africa
## 4482  2022-09-16 43.30800    1042651   3175.2233         Sub-Saharan Africa
## 4483  2022-09-16 48.14100    1072029   3356.0438         Sub-Saharan Africa
## 4484  2022-09-16 56.45300     608374   1444.2868         Sub-Saharan Africa
## 4485  2022-09-16 57.30700     629812   1411.4839         Sub-Saharan Africa
## 4486  2022-09-16 58.15800     652112   1379.6067         Sub-Saharan Africa
## 4487  2022-09-16 58.97800     675240   1414.4494         Sub-Saharan Africa
## 4488  2022-09-16 47.50800     418739          NA         Sub-Saharan Africa
## 4489  2022-09-16 48.12800     431251    971.7299         Sub-Saharan Africa
## 4490  2022-09-16 48.78800     443979   1073.5947         Sub-Saharan Africa
## 4491  2022-09-16 49.47900     457039   1099.4873         Sub-Saharan Africa
## 4492  2022-09-16 50.19100     470561   1164.2023         Sub-Saharan Africa
## 4493  2022-09-16 50.91900     484747   1195.0412         Sub-Saharan Africa
## 4494  2022-09-16       NA    1172369   3958.1530         Sub-Saharan Africa
## 4495  2022-09-16 52.42100     515602   1252.6674         Sub-Saharan Africa
## 4496  2022-09-16 44.17000    1049948   3179.0643         Sub-Saharan Africa
## 4497  2022-09-16 45.48900     373925          NA         Sub-Saharan Africa
## 4498  2022-09-16 45.92900     383820          NA         Sub-Saharan Africa
## 4499  2022-09-16 51.69900    1086843   3623.6602         Sub-Saharan Africa
## 4500  2022-09-16 53.56900    1095022   3629.7990         Sub-Saharan Africa
## 4501  2022-09-16 49.42400     994105   2456.4819         Sub-Saharan Africa
## 4502  2022-09-16 47.49000    1005432   2471.5588         Sub-Saharan Africa
## 4503  2022-09-16 45.79900    1013608   2477.4815         Sub-Saharan Africa
## 4504  2022-09-16 44.41000    1019054   2572.1777         Sub-Saharan Africa
## 4505  2022-09-16 43.37200    1022796   2662.2079         Sub-Saharan Africa
## 4506  2022-09-16 43.57200     336578          NA         Sub-Saharan Africa
## 4507  2022-09-16 61.95000     822423   2258.3371         Sub-Saharan Africa
## 4508  2022-09-16 61.70000     845267   2235.9846         Sub-Saharan Africa
## 4509  2022-09-16 53.19800     532253   1225.7302         Sub-Saharan Africa
## 4510  2022-09-16 53.99100     549787   1202.3870         Sub-Saharan Africa
## 4511  2022-09-16 54.79500     568316   1199.3247         Sub-Saharan Africa
## 4512  2022-09-16 55.61300     587852   1303.8104         Sub-Saharan Africa
## 4513  2022-09-16 46.40900     394760          NA         Sub-Saharan Africa
## 4514  2022-09-16 46.93500     406508          NA         Sub-Saharan Africa
## 4515  2022-09-16 53.59500     963416   2399.5923         Sub-Saharan Africa
## 4516  2022-09-16 51.49800     979922   2420.6069         Sub-Saharan Africa
## 4517  2022-09-16 44.32500     350155          NA         Sub-Saharan Africa
## 4518  2022-09-16 44.69900     357279          NA         Sub-Saharan Africa
## 4519  2022-09-16 45.08300     365120          NA         Sub-Saharan Africa
## 4520  2022-09-16 43.95100     343346          NA         Sub-Saharan Africa
## 4521  2022-09-16 58.95800     907622   2269.5250         Sub-Saharan Africa
## 4522  2022-09-16 57.42200     926836   2329.7251         Sub-Saharan Africa
## 4523  2022-09-16 55.60600     945506   2371.4640         Sub-Saharan Africa
## 4524  2022-09-16 60.19200     887706   2266.0420         Sub-Saharan Africa
## 4525  2022-09-16 51.66100     499759   1320.3629         Sub-Saharan Africa
## 4526  2022-09-16 61.11200     866995   2250.2776         Sub-Saharan Africa
## 4527  2022-09-16 42.65900   27652715          NA         Sub-Saharan Africa
## 4528  2022-09-16 43.21300   29248650          NA         Sub-Saharan Africa
## 4529  2022-09-16 42.35500   26944386          NA         Sub-Saharan Africa
## 4530  2022-09-16 42.94400   28415080          NA         Sub-Saharan Africa
## 4531  2022-09-16 47.91100   51423591    218.1018         Sub-Saharan Africa
## 4532  2022-09-16 42.02600   26280135          NA         Sub-Saharan Africa
## 4533  2022-09-16 48.81000   55180993    237.2994         Sub-Saharan Africa
## 4534  2022-09-16 47.50400   49609976    247.5432         Sub-Saharan Africa
## 4535  2022-09-16 38.41900   22151284          NA         Sub-Saharan Africa
## 4536  2022-09-16 48.34400   53295556    238.0991         Sub-Saharan Africa
## 4537  2022-09-16 45.68200   43329238    296.6915         Sub-Saharan Africa
## 4538  2022-09-16 46.19400   44757205    288.6723         Sub-Saharan Africa
## 4539  2022-09-16 41.26700   25013634          NA         Sub-Saharan Africa
## 4540  2022-09-16 41.66800   25641040          NA         Sub-Saharan Africa
## 4541  2022-09-16 46.66700   46272308    278.2122         Sub-Saharan Africa
## 4542  2022-09-16 47.09900   47887864    276.1558         Sub-Saharan Africa
## 4543  2022-09-16 54.21100   72170581    258.6288         Sub-Saharan Africa
## 4544  2022-09-16 55.17400   74239508    285.5457         Sub-Saharan Africa
## 4545  2022-09-16 56.22300   76346310    310.4826         Sub-Saharan Africa
## 4546  2022-09-16 57.33400   78489205    334.7274         Sub-Saharan Africa
## 4547  2022-09-16 43.46500   30140799          NA         Sub-Saharan Africa
## 4548  2022-09-16 43.69300   31036670          NA         Sub-Saharan Africa
## 4549  2022-09-16 39.08200   22671193          NA         Sub-Saharan Africa
## 4550  2022-09-16 39.71100   23221385          NA         Sub-Saharan Africa
## 4551  2022-09-16 40.29000   23798418          NA         Sub-Saharan Africa
## 4552  2022-09-16 40.81000   24397010          NA         Sub-Saharan Africa
## 4553  2022-09-16 51.94100   66224809    262.0253         Sub-Saharan Africa
## 4554  2022-09-16 52.59500   68159422    275.7222         Sub-Saharan Africa
## 4555  2022-09-16 53.34900   70142090    271.9869         Sub-Saharan Africa
## 4556  2022-09-16 43.88100   34487806          NA         Sub-Saharan Africa
## 4557  2022-09-16 43.74700   35141703          NA         Sub-Saharan Africa
## 4558  2022-09-16 43.67500   35984531    303.4468         Sub-Saharan Africa
## 4559  2022-09-16 43.71200   36995246    297.8603         Sub-Saharan Africa
## 4560  2022-09-16 43.88500   38142679    312.6908         Sub-Saharan Africa
## 4561  2022-09-16 44.19900   39374346    294.2826         Sub-Saharan Africa
## 4562  2022-09-16 44.63300   40652146    253.2675         Sub-Saharan Africa
## 4563  2022-09-16 45.14700   41965696    269.0439         Sub-Saharan Africa
## 4564  2022-09-16 50.32000   60697443    265.4683         Sub-Saharan Africa
## 4565  2022-09-16 50.83500   62507724    248.8657         Sub-Saharan Africa
## 4566  2022-09-16 51.36600   64343008    254.2476         Sub-Saharan Africa
## 4567  2022-09-16 44.11600   33128151          NA         Sub-Saharan Africa
## 4568  2022-09-16 44.10300   33577240          NA         Sub-Saharan Africa
## 4569  2022-09-16 44.01600   33993301          NA         Sub-Saharan Africa
## 4570  2022-09-16 65.04800  100835453    640.5419         Sub-Saharan Africa
## 4571  2022-09-16 65.48200  103603461    682.2394         Sub-Saharan Africa
## 4572  2022-09-16 65.87200  106399926    727.8441         Sub-Saharan Africa
## 4573  2022-09-16 66.24000  109224410    757.3504         Sub-Saharan Africa
## 4574  2022-09-16 66.59700  112078727    799.7951         Sub-Saharan Africa
## 4575  2022-09-16 49.30300   57047906    243.5984         Sub-Saharan Africa
## 4576  2022-09-16 49.81000   58883531    265.3309         Sub-Saharan Africa
## 4577  2022-09-16 60.64500   85233923    414.1205         Sub-Saharan Africa
## 4578  2022-09-16 43.89400   31861353          NA         Sub-Saharan Africa
## 4579  2022-09-16 44.04400   32566855          NA         Sub-Saharan Africa
## 4580  2022-09-16 62.50500   90139928    489.9927         Sub-Saharan Africa
## 4581  2022-09-16 63.28100   92726982    517.5135         Sub-Saharan Africa
## 4582  2022-09-16 63.96100   95385793    556.3263         Sub-Saharan Africa
## 4583  2022-09-16 64.54700   98094264    596.4551         Sub-Saharan Africa
## 4584  2022-09-16 58.46700   80674343    362.9693         Sub-Saharan Africa
## 4585  2022-09-16 59.58100   82916236    391.2556         Sub-Saharan Africa
## 4586  2022-09-16       NA  117876226    852.0062         Sub-Saharan Africa
## 4587  2022-09-16 61.62700   87639962    453.2988         Sub-Saharan Africa
## 4588  2022-09-16 66.95300  114963583    826.9731         Sub-Saharan Africa
## 4589  2022-09-16 81.56923  339488382  34388.2838                 Aggregates
## 4590  2022-09-16 81.94298  338462234  33795.5023                 Aggregates
## 4591  2022-09-16 79.85613  330922785  33566.8315                 Aggregates
## 4592  2022-09-16 81.22716  336159199  33630.7778                 Aggregates
## 4593  2022-09-16 81.51233  337302111  33442.9868                 Aggregates
## 4594  2022-09-16 79.42628  329380417  32668.7085                 Aggregates
## 4595  2022-09-16 80.74678  336151482  33344.3449                 Aggregates
## 4596  2022-09-16 81.23282  335419656  33991.3652                 Aggregates
## 4597  2022-09-16 80.30292  334274725  34370.4870                 Aggregates
## 4598  2022-09-16 80.50518  335360891  32710.2805                 Aggregates
## 4599  2022-09-16 74.75719  305877743  22047.1688                 Aggregates
## 4600  2022-09-16 75.05678  306640636  22543.8471                 Aggregates
## 4601  2022-09-16 74.22894  304787497  21123.4408                 Aggregates
## 4602  2022-09-16 74.58735  305299144  21589.6265                 Aggregates
## 4603  2022-09-16 78.70718  325885957  31745.3633                 Aggregates
## 4604  2022-09-16 79.27870  327682513  32295.2429                 Aggregates
## 4605  2022-09-16 80.09988  332645162  34395.1647                 Aggregates
## 4606  2022-09-16       NA  342566541  36352.0401                 Aggregates
## 4607  2022-09-16 73.52861  302184216  20755.8929                 Aggregates
## 4608  2022-09-16 73.81139  303343114  20784.8746                 Aggregates
## 4609  2022-09-16 74.15440  304174261  20875.7867                 Aggregates
## 4610  2022-09-16 70.74399  281974870          NA                 Aggregates
## 4611  2022-09-16 70.79341  283866408          NA                 Aggregates
## 4612  2022-09-16 70.79960  285778639          NA                 Aggregates
## 4613  2022-09-16 71.15815  287338854  15569.0903                 Aggregates
## 4614  2022-09-16 71.26597  288923399  16067.8921                 Aggregates
## 4615  2022-09-16 81.95455  340481755  34927.0355                 Aggregates
## 4616  2022-09-16 81.93232  341217243  35763.6530                 Aggregates
## 4617  2022-09-16 82.04958  341979171  36338.6111                 Aggregates
## 4618  2022-09-16 69.61739  270110063          NA                 Aggregates
## 4619  2022-09-16 69.78555  272655396          NA                 Aggregates
## 4620  2022-09-16 70.24431  275163380          NA                 Aggregates
## 4621  2022-09-16 70.32912  277650954          NA                 Aggregates
## 4622  2022-09-16 70.60486  279969050          NA                 Aggregates
## 4623  2022-09-16 77.21845  318003013  27678.2727                 Aggregates
## 4624  2022-09-16 77.58154  318761752  28359.7491                 Aggregates
## 4625  2022-09-16 77.79718  319433985  29159.0812                 Aggregates
## 4626  2022-09-16 78.02124  320258891  29945.9121                 Aggregates
## 4627  2022-09-16 78.27507  321310789  31001.2445                 Aggregates
## 4628  2022-09-16 75.34821  307488377  23051.2346                 Aggregates
## 4629  2022-09-16 75.53593  308516476  23963.6565                 Aggregates
## 4630  2022-09-16 75.76188  309837575  24839.6593                 Aggregates
## 4631  2022-09-16 82.32618  342283354  36879.1354                 Aggregates
## 4632  2022-09-16 81.53588  342708355  34476.0795                 Aggregates
## 4633  2022-09-16 73.33437  300886487  20404.8212                 Aggregates
## 4634  2022-09-16 73.01112  299652841  19724.7809                 Aggregates
## 4635  2022-09-16 76.48795  315449093  26147.3815                 Aggregates
## 4636  2022-09-16 76.79627  316366781  26712.8461                 Aggregates
## 4637  2022-09-16 76.95586  317181461  27288.8841                 Aggregates
## 4638  2022-09-16 78.68447  324125339  31701.6974                 Aggregates
## 4639  2022-09-16 69.29058  265203956          NA                 Aggregates
## 4640  2022-09-16 69.66027  267621091          NA                 Aggregates
## 4641  2022-09-16 78.59711  322547874  31560.2675                 Aggregates
## 4642  2022-09-16 72.79004  298441848  19204.9914                 Aggregates
## 4643  2022-09-16 76.38126  314162056  26429.4159                 Aggregates
## 4644  2022-09-16 72.02606  294399217  18122.0766                 Aggregates
## 4645  2022-09-16 72.43467  297251532  18704.7956                 Aggregates
## 4646  2022-09-16 75.91181  311262608  25616.8936                 Aggregates
## 4647  2022-09-16 71.70035  292728242  17658.0568                 Aggregates
## 4648  2022-09-16 72.16923  295923529  17889.3710                 Aggregates
## 4649  2022-09-16 71.60541  290874612  16740.7382                 Aggregates
## 4650  2022-09-16 76.02616  312708132  26181.1892                 Aggregates
## 4651  2022-09-16 68.49854  712830312          NA                 Aggregates
## 4652  2022-09-16 67.38853  674450666          NA                 Aggregates
## 4653  2022-09-16 67.47993  682397828          NA                 Aggregates
## 4654  2022-09-16 68.14177  698355574          NA                 Aggregates
## 4655  2022-09-16 68.29067  706070460          NA                 Aggregates
## 4656  2022-09-16 71.86629  848878429  15833.2621                 Aggregates
## 4657  2022-09-16 71.52358  851973886  15659.9363                 Aggregates
## 4658  2022-09-16 67.74707  690411692          NA                 Aggregates
## 4659  2022-09-16 71.98172  845399658  15981.1818                 Aggregates
## 4660  2022-09-16 67.02644  666753356          NA                 Aggregates
## 4661  2022-09-16 71.64255  822470047  14364.7521                 Aggregates
## 4662  2022-09-16 71.60231  854082087  15813.7046                 Aggregates
## 4663  2022-09-16 72.05130  841536999  15985.1687                 Aggregates
## 4664  2022-09-16 73.51457  866189044  19430.4928                 Aggregates
## 4665  2022-09-16 73.95828  868783653  19988.9128                 Aggregates
## 4666  2022-09-16 72.04969  837438555  15697.0886                 Aggregates
## 4667  2022-09-16 74.61819  874134287  21186.9703                 Aggregates
## 4668  2022-09-16 68.62048  719406020          NA                 Aggregates
## 4669  2022-09-16 68.68887  725725300          NA                 Aggregates
## 4670  2022-09-16 74.12042  871433207  20456.8968                 Aggregates
## 4671  2022-09-16 70.79286  807903880  13486.5935                 Aggregates
## 4672  2022-09-16 70.94365  812662217  13762.3765                 Aggregates
## 4673  2022-09-16 71.15662  817497806  14064.4395                 Aggregates
## 4674  2022-09-16 73.02895  861270071  18487.4008                 Aggregates
## 4675  2022-09-16 73.29355  862339994  18867.8591                 Aggregates
## 4676  2022-09-16 73.40649  863908064  19141.5496                 Aggregates
## 4677  2022-09-16 69.58306  766625562  11757.0669                 Aggregates
## 4678  2022-09-16 69.68384  772129341  12221.0644                 Aggregates
## 4679  2022-09-16 69.85621  777422111  12483.4332                 Aggregates
## 4680  2022-09-16 69.94530  782653852  12800.3731                 Aggregates
## 4681  2022-09-16 70.06381  787910910  13193.5509                 Aggregates
## 4682  2022-09-16 70.16818  793299463  13279.3776                 Aggregates
## 4683  2022-09-16 68.69410  731903738          NA                 Aggregates
## 4684  2022-09-16 70.72341  803342746  13300.8859                 Aggregates
## 4685  2022-09-16 72.53455  858163120  16862.4846                 Aggregates
## 4686  2022-09-16 72.85473  859296518  17276.6525                 Aggregates
## 4687  2022-09-16 72.87302  860311870  17751.2098                 Aggregates
## 4688  2022-09-16 69.30964  749283635  11165.4307                 Aggregates
## 4689  2022-09-16 69.40478  755259488  11744.1736                 Aggregates
## 4690  2022-09-16 71.86001  827505281  14717.9148                 Aggregates
## 4691  2022-09-16 71.98764  832553390  15250.1467                 Aggregates
## 4692  2022-09-16 77.59564  910870489  22964.1917                 Aggregates
## 4693  2022-09-16 77.78996  914608311  23514.9524                 Aggregates
## 4694  2022-09-16 77.90925  918031055  23936.3777                 Aggregates
## 4695  2022-09-16 78.15913  920807612  24298.9131                 Aggregates
## 4696  2022-09-16 70.43276  798559755  13254.7371                 Aggregates
## 4697  2022-09-16 72.11868  856856802  16384.1012                 Aggregates
## 4698  2022-09-16 75.64266  884448855  20951.1607                 Aggregates
## 4699  2022-09-16 68.96908  737524825  10445.3979                 Aggregates
## 4700  2022-09-16 69.10553  743140589  10748.2441                 Aggregates
## 4701  2022-09-16 76.46044  890136603  21875.9119                 Aggregates
## 4702  2022-09-16 76.62261  893755804  21864.0755                 Aggregates
## 4703  2022-09-16 69.60858  761029417  11907.2615                 Aggregates
## 4704  2022-09-16 77.24055  906669764  22624.9154                 Aggregates
## 4705  2022-09-16 74.97592  877278821  21871.7648                 Aggregates
## 4706  2022-09-16 75.24373  880911644  22002.1758                 Aggregates
## 4707  2022-09-16       NA  923753699  24207.1530                 Aggregates
## 4708  2022-09-16 76.95625  898022522  21955.2861                 Aggregates
## 4709  2022-09-16 75.94492  887904313  21424.8153                 Aggregates
## 4710  2022-09-16 77.39015  922976036  22898.4757                 Aggregates
## 4711  2022-09-16 71.68293  855490982  16125.1492                 Aggregates
## 4712  2022-09-16 77.28311  902367876  22261.2351                 Aggregates
## 4713  2022-09-16 71.59304  382476923   7129.0538                 Aggregates
## 4714  2022-09-16 71.20976  380138981   6898.6481                 Aggregates
## 4715  2022-09-16 67.70345  369571302   4743.3361                 Aggregates
## 4716  2022-09-16 72.02451  385050864   7367.9426                 Aggregates
## 4717  2022-09-16 70.65330  377813291   6530.5793                 Aggregates
## 4718  2022-09-16 68.83748  371295237   5938.1925                 Aggregates
## 4719  2022-09-16 69.35985  372310742   6384.0417                 Aggregates
## 4720  2022-09-16 68.05852  370059210   5129.7501                 Aggregates
## 4721  2022-09-16 66.76282  341334694          NA                 Aggregates
## 4722  2022-09-16 66.29902  330769542          NA                 Aggregates
## 4723  2022-09-16 66.64477  334202532          NA                 Aggregates
## 4724  2022-09-16 66.76116  337643744          NA                 Aggregates
## 4725  2022-09-16 67.58726  369249571   4439.3647                 Aggregates
## 4726  2022-09-16 68.18495  370609108   5499.0455                 Aggregates
## 4727  2022-09-16 73.87585  399386100   8145.3378                 Aggregates
## 4728  2022-09-16 67.49195  369175354   4209.2353                 Aggregates
## 4729  2022-09-16       NA  401828885   8546.0983                 Aggregates
## 4730  2022-09-16 66.08792  327228917          NA                 Aggregates
## 4731  2022-09-16 70.30662  375654151   6217.3878                 Aggregates
## 4732  2022-09-16 73.10399  400895993   8013.2774                 Aggregates
## 4733  2022-09-16 65.49249  290423895          NA                 Aggregates
## 4734  2022-09-16 65.73558  293690910          NA                 Aggregates
## 4735  2022-09-16 65.92124  296984143          NA                 Aggregates
## 4736  2022-09-16 65.41326  287134686          NA                 Aggregates
## 4737  2022-09-16 72.59431  390258029   7485.8269                 Aggregates
## 4738  2022-09-16 72.95393  392836210   7553.9091                 Aggregates
## 4739  2022-09-16 64.06051  264562393          NA                 Aggregates
## 4740  2022-09-16 64.42094  268766831          NA                 Aggregates
## 4741  2022-09-16 64.72422  272959744          NA                 Aggregates
## 4742  2022-09-16 64.95989  277095486          NA                 Aggregates
## 4743  2022-09-16 69.70040  373834315   6627.1493                 Aggregates
## 4744  2022-09-16 65.89372  367545578   3739.0698                 Aggregates
## 4745  2022-09-16 65.90717  367887617   3666.1532                 Aggregates
## 4746  2022-09-16 66.57266  368312923   3657.8180                 Aggregates
## 4747  2022-09-16 67.24875  368733376   3758.1096                 Aggregates
## 4748  2022-09-16 67.58071  369017645   3696.5246                 Aggregates
## 4749  2022-09-16 67.19971  345006487          NA                 Aggregates
## 4750  2022-09-16 68.02585  348642900          NA                 Aggregates
## 4751  2022-09-16 68.22836  352277823          NA                 Aggregates
## 4752  2022-09-16 73.42308  395257485   7802.5126                 Aggregates
## 4753  2022-09-16 73.60003  397406103   8004.5650                 Aggregates
## 4754  2022-09-16 65.89988  316954391          NA                 Aggregates
## 4755  2022-09-16 65.98890  320328643          NA                 Aggregates
## 4756  2022-09-16 65.94895  323737511          NA                 Aggregates
## 4757  2022-09-16 65.14089  280497635          NA                 Aggregates
## 4758  2022-09-16 65.26608  283832745          NA                 Aggregates
## 4759  2022-09-16 67.33757  369135190   4101.0467                 Aggregates
## 4760  2022-09-16 63.18159  256240323          NA                 Aggregates
## 4761  2022-09-16 63.68299  260376316          NA                 Aggregates
## 4762  2022-09-16 67.30698  369016122   3783.6489                 Aggregates
## 4763  2022-09-16 65.92254  310138194          NA                 Aggregates
## 4764  2022-09-16 65.89614  313549230          NA                 Aggregates
## 4765  2022-09-16 67.87155  363436990   5065.4872                 Aggregates
## 4766  2022-09-16 66.12555  306887355          NA                 Aggregates
## 4767  2022-09-16 66.12537  366753479   4218.1961                 Aggregates
## 4768  2022-09-16 72.26467  387621858   7469.1157                 Aggregates
## 4769  2022-09-16 65.96947  300287193          NA                 Aggregates
## 4770  2022-09-16 67.08202  365331816   4501.6369                 Aggregates
## 4771  2022-09-16 68.29696  355779852          NA                 Aggregates
## 4772  2022-09-16 68.23452  358915202   5473.9051                 Aggregates
## 4773  2022-09-16 68.08244  361192206   5360.1540                 Aggregates
## 4774  2022-09-16 66.04864  303586616          NA                 Aggregates
## 4775  2022-09-16 64.58663  317744155          NA                 Aggregates
## 4776  2022-09-16 65.00555  322502356          NA                 Aggregates
## 4777  2022-09-16 65.29721  327271196          NA                 Aggregates
## 4778  2022-09-16 68.56689  417635043          NA                 Aggregates
## 4779  2022-09-16 68.67179  421417208          NA                 Aggregates
## 4780  2022-09-16 67.69436  409642788          NA                 Aggregates
## 4781  2022-09-16 68.40834  413657306          NA                 Aggregates
## 4782  2022-09-16 67.27069  397542988          NA                 Aggregates
## 4783  2022-09-16 63.79495  308424859          NA                 Aggregates
## 4784  2022-09-16 64.26892  313062858          NA                 Aggregates
## 4785  2022-09-16 67.28267  434113394   3964.4895                 Aggregates
## 4786  2022-09-16 67.87483  434471934   4077.2075                 Aggregates
## 4787  2022-09-16 68.23859  434720605   4048.4968                 Aggregates
## 4788  2022-09-16 68.05125  434661030   4148.9167                 Aggregates
## 4789  2022-09-16 65.57503  331852935          NA                 Aggregates
## 4790  2022-09-16 65.76413  335704786          NA                 Aggregates
## 4791  2022-09-16 65.83156  339692825          NA                 Aggregates
## 4792  2022-09-16 66.64055  385669994          NA                 Aggregates
## 4793  2022-09-16 66.68712  389610131          NA                 Aggregates
## 4794  2022-09-16 66.96666  393632708          NA                 Aggregates
## 4795  2022-09-16 66.86314  432578630   4319.9529                 Aggregates
## 4796  2022-09-16 66.67656  433470465   3939.8082                 Aggregates
## 4797  2022-09-16 66.70512  433786915   3926.2169                 Aggregates
## 4798  2022-09-16 69.62196  434941423   6319.4130                 Aggregates
## 4799  2022-09-16 66.59612  358451364          NA                 Aggregates
## 4800  2022-09-16 66.69544  362249658          NA                 Aggregates
## 4801  2022-09-16 66.83331  366086343          NA                 Aggregates
## 4802  2022-09-16 66.62749  369959058          NA                 Aggregates
## 4803  2022-09-16 66.62461  373993098          NA                 Aggregates
## 4804  2022-09-16 66.60903  377959108          NA                 Aggregates
## 4805  2022-09-16 66.65907  381826792          NA                 Aggregates
## 4806  2022-09-16 72.88198  449780961   7948.6315                 Aggregates
## 4807  2022-09-16 73.14732  452263661   8019.8979                 Aggregates
## 4808  2022-09-16 73.50717  454682913   8133.7903                 Aggregates
## 4809  2022-09-16 73.90360  456945557   8434.3708                 Aggregates
## 4810  2022-09-16 74.04565  458942666   8692.2887                 Aggregates
## 4811  2022-09-16 67.36600  401434284          NA                 Aggregates
## 4812  2022-09-16 67.34244  405559660          NA                 Aggregates
## 4813  2022-09-16       NA  462624055   9296.6669                 Aggregates
## 4814  2022-09-16 70.40645  436807654   7073.7376                 Aggregates
## 4815  2022-09-16 70.97251  438478422   6717.6963                 Aggregates
## 4816  2022-09-16 71.32220  440398383   7005.7115                 Aggregates
## 4817  2022-09-16 71.88095  442630386   7371.7550                 Aggregates
## 4818  2022-09-16 68.60334  424805449   5468.5728                 Aggregates
## 4819  2022-09-16 68.47564  427282191   5357.6680                 Aggregates
## 4820  2022-09-16 68.26308  429373360   5037.3285                 Aggregates
## 4821  2022-09-16 67.63561  431065585   4544.6735                 Aggregates
## 4822  2022-09-16 66.29816  351017860          NA                 Aggregates
## 4823  2022-09-16 66.45614  354660485          NA                 Aggregates
## 4824  2022-09-16 69.03624  434404383   5866.6502                 Aggregates
## 4825  2022-09-16 74.32074  460788476   8893.0674                 Aggregates
## 4826  2022-09-16 70.09123  435624501   6790.5529                 Aggregates
## 4827  2022-09-16 72.21222  444865680   7586.5893                 Aggregates
## 4828  2022-09-16 68.15632  434305092   4459.5444                 Aggregates
## 4829  2022-09-16 66.03691  343594800          NA                 Aggregates
## 4830  2022-09-16 66.06596  347372826          NA                 Aggregates
## 4831  2022-09-16 68.43898  433512605   4812.9987                 Aggregates
## 4832  2022-09-16 68.55880  433653597   5108.7866                 Aggregates
## 4833  2022-09-16 68.90283  433997780   5506.3289                 Aggregates
## 4834  2022-09-16 73.48327  462100263   8720.4588                 Aggregates
## 4835  2022-09-16 72.63192  447330442   7815.6078                 Aggregates
## 4836  2022-09-16 68.34006  433855042   4579.8028                 Aggregates
## 4837  2022-09-16 80.15689  441395937  29552.9600                 Aggregates
## 4838  2022-09-16 79.62943  441532415  29211.4265                 Aggregates
## 4839  2022-09-16 80.46370  447479493  31046.0337                 Aggregates
## 4840  2022-09-16 72.29552  402425493  16217.4926                 Aggregates
## 4841  2022-09-16 80.13777  440746989  29807.1297                 Aggregates
## 4842  2022-09-16 72.69805  406051882  17204.1978                 Aggregates
## 4843  2022-09-16 79.35723  440917801  28608.6469                 Aggregates
## 4844  2022-09-16 73.08963  409551911  17500.2361                 Aggregates
## 4845  2022-09-16 72.43370  404271789  16635.7805                 Aggregates
## 4846  2022-09-16 77.42548  429895628  26761.8509                 Aggregates
## 4847  2022-09-16 72.75127  407875838  17482.6785                 Aggregates
## 4848  2022-09-16 80.93084  446186344  31855.0679                 Aggregates
## 4849  2022-09-16 81.02702  446915113  32460.5403                 Aggregates
## 4850  2022-09-16 81.31327  447197811  33032.9640                 Aggregates
## 4851  2022-09-16 74.73066  420477999  21524.0178                 Aggregates
## 4852  2022-09-16       NA  446946712  32755.3794                 Aggregates
## 4853  2022-09-16 79.12550  439876674  29979.9053                 Aggregates
## 4854  2022-09-16 69.02087  356906098          NA                 Aggregates
## 4855  2022-09-16 69.41221  359998408          NA                 Aggregates
## 4856  2022-09-16 69.31836  363200480          NA                 Aggregates
## 4857  2022-09-16 69.61285  366516509          NA                 Aggregates
## 4858  2022-09-16 80.46374  442469469  29471.8257                 Aggregates
## 4859  2022-09-16 80.87045  443576675  29861.4807                 Aggregates
## 4860  2022-09-16 77.53272  430881947  26996.8549                 Aggregates
## 4861  2022-09-16 77.59066  432415932  27145.2524                 Aggregates
## 4862  2022-09-16 78.11576  434040244  27744.5207                 Aggregates
## 4863  2022-09-16 78.27264  435581949  28178.2628                 Aggregates
## 4864  2022-09-16 71.72634  395949381  15376.7814                 Aggregates
## 4865  2022-09-16 71.80784  398316579  15184.1470                 Aggregates
## 4866  2022-09-16 72.03444  400473497  15841.2407                 Aggregates
## 4867  2022-09-16 75.13184  422963890  22048.2910                 Aggregates
## 4868  2022-09-16 75.26122  424341124  21850.5957                 Aggregates
## 4869  2022-09-16 75.52910  425399126  22374.3041                 Aggregates
## 4870  2022-09-16 75.67687  426203356  22926.6368                 Aggregates
## 4871  2022-09-16 75.92797  426896861  23319.8573                 Aggregates
## 4872  2022-09-16 73.36659  410895608  17584.7121                 Aggregates
## 4873  2022-09-16 80.56681  444543761  30485.0288                 Aggregates
## 4874  2022-09-16 80.94986  445487730  31031.1789                 Aggregates
## 4875  2022-09-16 71.31307  390995000  14247.8814                 Aggregates
## 4876  2022-09-16 71.42221  393524745  15006.9608                 Aggregates
## 4877  2022-09-16 74.26640  416301843  19427.2547                 Aggregates
## 4878  2022-09-16 74.46849  417653046  20170.4137                 Aggregates
## 4879  2022-09-16 74.81690  421730520  21859.1170                 Aggregates
## 4880  2022-09-16 74.62943  419073139  20889.6590                 Aggregates
## 4881  2022-09-16 76.24552  427538048  23902.5885                 Aggregates
## 4882  2022-09-16 76.51452  428109867  24589.2538                 Aggregates
## 4883  2022-09-16 76.74858  428815486  25272.5354                 Aggregates
## 4884  2022-09-16 77.07845  429328622  26226.7402                 Aggregates
## 4885  2022-09-16 70.58413  381605442          NA                 Aggregates
## 4886  2022-09-16 70.53346  384216977          NA                 Aggregates
## 4887  2022-09-16 78.66892  436998045  29068.1499                 Aggregates
## 4888  2022-09-16 78.90204  438468397  29884.6316                 Aggregates
## 4889  2022-09-16 70.47360  378917964          NA                 Aggregates
## 4890  2022-09-16 70.03084  369850237          NA                 Aggregates
## 4891  2022-09-16 70.15715  373032729          NA                 Aggregates
## 4892  2022-09-16 70.42815  376039129          NA                 Aggregates
## 4893  2022-09-16 70.93890  388391948  13691.6958                 Aggregates
## 4894  2022-09-16 73.77419  413924499  18578.0772                 Aggregates
## 4895  2022-09-16 74.03805  415076367  19005.6424                 Aggregates
## 4896  2022-09-16 70.85826  386322917  13282.2725                 Aggregates
## 4897  2022-09-16 73.41117  411974424  17792.7989                 Aggregates
## 4898  2022-09-16 73.66931  412931321  18194.6727                 Aggregates
## 4899  2022-09-16       NA      35965          NA      Europe & Central Asia
## 4900  2022-09-16       NA      36409          NA      Europe & Central Asia
## 4901  2022-09-16       NA      35074          NA      Europe & Central Asia
## 4902  2022-09-16       NA      35521          NA      Europe & Central Asia
## 4903  2022-09-16       NA      44483          NA      Europe & Central Asia
## 4904  2022-09-16       NA      44895          NA      Europe & Central Asia
## 4905  2022-09-16       NA      34624          NA      Europe & Central Asia
## 4906  2022-09-16       NA      44101          NA      Europe & Central Asia
## 4907  2022-09-16 77.16585      45848          NA      Europe & Central Asia
## 4908  2022-09-16 77.36585      45625          NA      Europe & Central Asia
## 4909  2022-09-16       NA      45328          NA      Europe & Central Asia
## 4910  2022-09-16       NA      43725          NA      Europe & Central Asia
## 4911  2022-09-16 78.02683      46094          NA      Europe & Central Asia
## 4912  2022-09-16       NA      36843          NA      Europe & Central Asia
## 4913  2022-09-16 77.56829      45624          NA      Europe & Central Asia
## 4914  2022-09-16 77.82195      45789          NA      Europe & Central Asia
## 4915  2022-09-16 75.98537      42539          NA      Europe & Central Asia
## 4916  2022-09-16       NA      42941          NA      Europe & Central Asia
## 4917  2022-09-16       NA      37705          NA      Europe & Central Asia
## 4918  2022-09-16       NA      38131          NA      Europe & Central Asia
## 4919  2022-09-16 76.91463      46277          NA      Europe & Central Asia
## 4920  2022-09-16       NA      38560          NA      Europe & Central Asia
## 4921  2022-09-16       NA      39008          NA      Europe & Central Asia
## 4922  2022-09-16       NA      39456          NA      Europe & Central Asia
## 4923  2022-09-16       NA      39915          NA      Europe & Central Asia
## 4924  2022-09-16 74.49756      40395          NA      Europe & Central Asia
## 4925  2022-09-16       NA      40847          NA      Europe & Central Asia
## 4926  2022-09-16       NA      41292          NA      Europe & Central Asia
## 4927  2022-09-16       NA      41724          NA      Europe & Central Asia
## 4928  2022-09-16       NA      42133          NA      Europe & Central Asia
## 4929  2022-09-16 81.79268      48055  53310.2620      Europe & Central Asia
## 4930  2022-09-16 82.09268      48173          NA      Europe & Central Asia
## 4931  2022-09-16 82.29268      48326          NA      Europe & Central Asia
## 4932  2022-09-16 82.54390      48497          NA      Europe & Central Asia
## 4933  2022-09-16       NA      43339          NA      Europe & Central Asia
## 4934  2022-09-16 83.09268      48865          NA      Europe & Central Asia
## 4935  2022-09-16       NA      49053          NA      Europe & Central Asia
## 4936  2022-09-16 80.13659      47822          NA      Europe & Central Asia
## 4937  2022-09-16 80.38537      47814          NA      Europe & Central Asia
## 4938  2022-09-16 80.68780      47803          NA      Europe & Central Asia
## 4939  2022-09-16 75.26585      45812          NA      Europe & Central Asia
## 4940  2022-09-16 75.46585      46340          NA      Europe & Central Asia
## 4941  2022-09-16 75.71463      46833          NA      Europe & Central Asia
## 4942  2022-09-16 75.91463      47159          NA      Europe & Central Asia
## 4943  2022-09-16 76.11463      47276          NA      Europe & Central Asia
## 4944  2022-09-16 76.36341      47123          NA      Europe & Central Asia
## 4945  2022-09-16 76.61463      46746          NA      Europe & Central Asia
## 4946  2022-09-16 79.29024      47731          NA      Europe & Central Asia
## 4947  2022-09-16 79.63902      47793          NA      Europe & Central Asia
## 4948  2022-09-16 79.98780      47825          NA      Europe & Central Asia
## 4949  2022-09-16 78.23171      46428          NA      Europe & Central Asia
## 4950  2022-09-16 78.43659      46738          NA      Europe & Central Asia
## 4951  2022-09-16 78.64146      46999          NA      Europe & Central Asia
## 4952  2022-09-16 80.93902      47815          NA      Europe & Central Asia
## 4953  2022-09-16       NA      37283          NA      Europe & Central Asia
## 4954  2022-09-16 79.09268      47600          NA      Europe & Central Asia
## 4955  2022-09-16 81.44146      47901          NA      Europe & Central Asia
## 4956  2022-09-16 78.84390      47235          NA      Europe & Central Asia
## 4957  2022-09-16 81.19024      47843          NA      Europe & Central Asia
## 4958  2022-09-16 78.94390      47439          NA      Europe & Central Asia
## 4959  2022-09-16 82.79268      48677          NA      Europe & Central Asia
## 4960  2022-09-16 81.59268      47965          NA      Europe & Central Asia
## 4961  2022-09-16 66.36200     827869   4619.7340        East Asia & Pacific
## 4962  2022-09-16 67.34100     883490   5938.4275        East Asia & Pacific
## 4963  2022-09-16 66.41300     836185   4534.8828        East Asia & Pacific
## 4964  2022-09-16 66.47700     845356   4532.0132        East Asia & Pacific
## 4965  2022-09-16 63.99700     635312   3626.3225        East Asia & Pacific
## 4966  2022-09-16 67.44400     889955   5869.0211        East Asia & Pacific
## 4967  2022-09-16 67.17500     872406   5498.6619        East Asia & Pacific
## 4968  2022-09-16       NA     902899   4708.0919        East Asia & Pacific
## 4969  2022-09-16 65.51200     806302   4202.3926        East Asia & Pacific
## 4970  2022-09-16 65.68700     811011   4106.9663        East Asia & Pacific
## 4971  2022-09-16 67.56100     896444   4943.7696        East Asia & Pacific
## 4972  2022-09-16 66.02200     815257   4300.6413        East Asia & Pacific
## 4973  2022-09-16 67.25200     877460   5759.6586        East Asia & Pacific
## 4974  2022-09-16 66.24700     817864   4559.2814        East Asia & Pacific
## 4975  2022-09-16 66.31300     821606   4570.2859        East Asia & Pacific
## 4976  2022-09-16 60.81100     393480   2196.9262        East Asia & Pacific
## 4977  2022-09-16 61.17200     407244   2197.3415        East Asia & Pacific
## 4978  2022-09-16 61.47800     421673   2198.6789        East Asia & Pacific
## 4979  2022-09-16 66.55900     853636   4425.8480        East Asia & Pacific
## 4980  2022-09-16 66.65500     859816   4523.8662        East Asia & Pacific
## 4981  2022-09-16 66.75900     863451   4626.6833        East Asia & Pacific
## 4982  2022-09-16 66.85900     865065   4683.2263        East Asia & Pacific
## 4983  2022-09-16 66.95000     865602   4901.8976        East Asia & Pacific
## 4984  2022-09-16 65.86300     813923   4174.1182        East Asia & Pacific
## 4985  2022-09-16 67.10300     868632   5390.7142        East Asia & Pacific
## 4986  2022-09-16 62.75200     565418   3311.8036        East Asia & Pacific
## 4987  2022-09-16 62.91300     576626   3264.6496        East Asia & Pacific
## 4988  2022-09-16 63.11000     587561   3291.5555        East Asia & Pacific
## 4989  2022-09-16 63.32700     598299   3423.3261        East Asia & Pacific
## 4990  2022-09-16 63.55200     609383   3423.6897        East Asia & Pacific
## 4991  2022-09-16 63.77600     621584   3766.8109        East Asia & Pacific
## 4992  2022-09-16 65.17000     765607   3822.3119        East Asia & Pacific
## 4993  2022-09-16 64.21700     651032   3762.7635        East Asia & Pacific
## 4994  2022-09-16 64.43600     668281   3446.4929        East Asia & Pacific
## 4995  2022-09-16 64.65100     685497   3226.8779        East Asia & Pacific
## 4996  2022-09-16 64.85700     700478   3422.9056        East Asia & Pacific
## 4997  2022-09-16 67.03000     866447   5171.5276        East Asia & Pacific
## 4998  2022-09-16 65.19000     718642   3429.1049        East Asia & Pacific
## 4999  2022-09-16 65.29900     721776   3188.3644        East Asia & Pacific
## 5000  2022-09-16 65.39100     724602   3444.7873        East Asia & Pacific
## 5001  2022-09-16 65.37900     728575   3624.7108        East Asia & Pacific
## 5002  2022-09-16 65.33600     735398   3494.1215        East Asia & Pacific
## 5003  2022-09-16 65.27800     744470   3662.0868        East Asia & Pacific
## 5004  2022-09-16 65.21800     754962   3688.1130        East Asia & Pacific
## 5005  2022-09-16 65.36000     800148   3892.2000        East Asia & Pacific
## 5006  2022-09-16 65.15000     775428   3868.2488        East Asia & Pacific
## 5007  2022-09-16 65.17500     784389   4007.6120        East Asia & Pacific
## 5008  2022-09-16 65.24600     792736   3878.1754        East Asia & Pacific
## 5009  2022-09-16 66.15200     816078   4339.2778        East Asia & Pacific
## 5010  2022-09-16 62.49200     520561   2734.0984        East Asia & Pacific
## 5011  2022-09-16 62.51200     531622   2861.6452        East Asia & Pacific
## 5012  2022-09-16 62.55500     542843   3012.2670        East Asia & Pacific
## 5013  2022-09-16 62.45600     498944   2466.9902        East Asia & Pacific
## 5014  2022-09-16 65.36500     722924   3213.7259        East Asia & Pacific
## 5015  2022-09-16 62.30200     476399   2112.1907        East Asia & Pacific
## 5016  2022-09-16 62.40100     487973   2337.4198        East Asia & Pacific
## 5017  2022-09-16 62.48100     509708   2477.5929        East Asia & Pacific
## 5018  2022-09-16 62.15700     463960   2168.8196        East Asia & Pacific
## 5019  2022-09-16 65.04100     711770   3213.1927        East Asia & Pacific
## 5020  2022-09-16 62.63300     554143   3293.5186        East Asia & Pacific
## 5021  2022-09-16 61.96700     450538   2295.4133        East Asia & Pacific
## 5022  2022-09-16 61.74100     436303   2260.0743        East Asia & Pacific
## 5023  2022-09-16 68.81976    4429634  11425.2934      Europe & Central Asia
## 5024  2022-09-16 74.22293    4902206  26857.5936      Europe & Central Asia
## 5025  2022-09-16 74.51902    4881803  26045.5139      Europe & Central Asia
## 5026  2022-09-16 73.15537    4764690  22769.1073      Europe & Central Asia
## 5027  2022-09-16 74.20098    4855787  25363.8552      Europe & Central Asia
## 5028  2022-09-16 76.40951    5107790  29912.8980      Europe & Central Asia
## 5029  2022-09-16 76.69341    5124573  30908.3003      Europe & Central Asia
## 5030  2022-09-16 74.56000    4918154  27508.2000      Europe & Central Asia
## 5031  2022-09-16 74.29805    4826933  24744.2968      Europe & Central Asia
## 5032  2022-09-16 77.29122    5165474  35891.0056      Europe & Central Asia
## 5033  2022-09-16 68.84415    4461005  12207.6936      Europe & Central Asia
## 5034  2022-09-16 76.87854    5139835  32768.3781      Europe & Central Asia
## 5035  2022-09-16 77.09073    5153498  34464.9909      Europe & Central Asia
## 5036  2022-09-16 72.35024    4738902  20764.7166      Europe & Central Asia
## 5037  2022-09-16 72.89707    4752528  21309.7127      Europe & Central Asia
## 5038  2022-09-16 69.47707    4580869  14345.5591      Europe & Central Asia
## 5039  2022-09-16 69.66659    4605744  14577.5309      Europe & Central Asia
## 5040  2022-09-16 76.39561    5088333  28812.3036      Europe & Central Asia
## 5041  2022-09-16 69.61634    4626469  14846.4872      Europe & Central Asia
## 5042  2022-09-16 69.50341    4623785  16280.1983      Europe & Central Asia
## 5043  2022-09-16 70.17951    4606307  17128.6307      Europe & Central Asia
## 5044  2022-09-16 70.01756    4612124  17510.2266      Europe & Central Asia
## 5045  2022-09-16 70.70732    4639657  18752.7792      Europe & Central Asia
## 5046  2022-09-16 71.22366    4666081  19948.8274      Europe & Central Asia
## 5047  2022-09-16 68.57780    4491443  12486.5232      Europe & Central Asia
## 5048  2022-09-16 69.01268    4523309  12805.8626      Europe & Central Asia
## 5049  2022-09-16 69.22098    4548543  13401.9566      Europe & Central Asia
## 5050  2022-09-16 81.42927    5495303  43878.9667      Europe & Central Asia
## 5051  2022-09-16 81.63171    5508214  45173.6294      Europe & Central Asia
## 5052  2022-09-16 81.73415    5515525  45628.9257      Europe & Central Asia
## 5053  2022-09-16 81.98293    5521606  46135.0777      Europe & Central Asia
## 5054  2022-09-16 73.44000    4779535  23921.6145      Europe & Central Asia
## 5055  2022-09-16 73.74659    4799964  24133.2421      Europe & Central Asia
## 5056  2022-09-16 79.56829    5313399  46358.6204      Europe & Central Asia
## 5057  2022-09-16 79.71951    5338871  42412.0978      Europe & Central Asia
## 5058  2022-09-16 79.87073    5363352  43563.5722      Europe & Central Asia
## 5059  2022-09-16 80.47073    5388272  44466.8177      Europe & Central Asia
## 5060  2022-09-16 71.13488    4690574  20486.9386      Europe & Central Asia
## 5061  2022-09-16 71.67366    4711440  20764.3370      Europe & Central Asia
## 5062  2022-09-16 71.81293    4725664  20773.1309      Europe & Central Asia
## 5063  2022-09-16 74.81317    4986431  31279.9520      Europe & Central Asia
## 5064  2022-09-16 75.22756    5013740  29278.3637      Europe & Central Asia
## 5065  2022-09-16 75.45537    5041992  28155.0896      Europe & Central Asia
## 5066  2022-09-16 75.70512    5066447  27833.7026      Europe & Central Asia
## 5067  2022-09-16 79.21463    5266268  44074.0309      Europe & Central Asia
## 5068  2022-09-16 79.26341    5288720  46212.6410      Europe & Central Asia
## 5069  2022-09-16       NA    5541696  46471.3594      Europe & Central Asia
## 5070  2022-09-16 77.46585    5176209  37884.3913      Europe & Central Asia
## 5071  2022-09-16 77.96585    5188008  38784.7726      Europe & Central Asia
## 5072  2022-09-16 78.11951    5200598  39351.3904      Europe & Central Asia
## 5073  2022-09-16 80.62683    5413971  43637.2487      Europe & Central Asia
## 5074  2022-09-16 68.97780    4563732  14065.6737      Europe & Central Asia
## 5075  2022-09-16 78.81707    5246096  42530.6197      Europe & Central Asia
## 5076  2022-09-16 81.18049    5461512  42710.9213      Europe & Central Asia
## 5077  2022-09-16 78.36829    5213014  40044.3049      Europe & Central Asia
## 5078  2022-09-16 74.79220    4964371  31209.7581      Europe & Central Asia
## 5079  2022-09-16 80.97561    5438972  43044.9971      Europe & Central Asia
## 5080  2022-09-16 78.71463    5228172  41522.1751      Europe & Central Asia
## 5081  2022-09-16 82.13171    5529543  45009.6153      Europe & Central Asia
## 5082  2022-09-16 74.59195    4932123  28410.8751      Europe & Central Asia
## 5083  2022-09-16 81.48049    5479531  42801.9081      Europe & Central Asia
## 5084  2022-09-16 74.57707    4946481  29806.3433      Europe & Central Asia
## 5085  2022-09-16 56.32632  653940662   1483.9707                 Aggregates
## 5086  2022-09-16 56.73374  669513957   1609.7767                 Aggregates
## 5087  2022-09-16 55.96063  638757970   1501.0717                 Aggregates
## 5088  2022-09-16 61.91091  881938038   1917.8167                 Aggregates
## 5089  2022-09-16 57.15767  685344194   1664.2992                 Aggregates
## 5090  2022-09-16 62.76997  940026046   1935.0124                 Aggregates
## 5091  2022-09-16 54.74035  572655639   1332.0805                 Aggregates
## 5092  2022-09-16 60.85290  825010695   1942.0006                 Aggregates
## 5093  2022-09-16 62.49355  920103533   1933.5802                 Aggregates
## 5094  2022-09-16 54.55744  560351009   1297.0249                 Aggregates
## 5095  2022-09-16 61.57316  863004250   1913.6920                 Aggregates
## 5096  2022-09-16 62.22447  900872423   1924.5006                 Aggregates
## 5097  2022-09-16 55.10745  597146811   1395.7912                 Aggregates
## 5098  2022-09-16 61.22457  843965097   1939.0353                 Aggregates
## 5099  2022-09-16 46.60421  261136143          NA                 Aggregates
## 5100  2022-09-16 45.24139  245134016          NA                 Aggregates
## 5101  2022-09-16 45.71529  250274396          NA                 Aggregates
## 5102  2022-09-16 46.16932  255615131          NA                 Aggregates
## 5103  2022-09-16 59.09119  751670859   1839.4548                 Aggregates
## 5104  2022-09-16 59.59147  769284359   1921.6761                 Aggregates
## 5105  2022-09-16 54.96300  584769423   1379.6510                 Aggregates
## 5106  2022-09-16 60.45112  806049519   1922.1301                 Aggregates
## 5107  2022-09-16 49.52978  311311083   1630.5186                 Aggregates
## 5108  2022-09-16 49.84714  318462078   1637.6216                 Aggregates
## 5109  2022-09-16 50.15294  325837597   1666.7791                 Aggregates
## 5110  2022-09-16 50.44590  333463168   1786.7166                 Aggregates
## 5111  2022-09-16 50.72282  341348073   1739.8729                 Aggregates
## 5112  2022-09-16 50.97994  349514957   1825.4970                 Aggregates
## 5113  2022-09-16 51.21879  357943647   1859.5769                 Aggregates
## 5114  2022-09-16 62.99260  960960554   1812.5131                 Aggregates
## 5115  2022-09-16       NA  982980816   1815.2959                 Aggregates
## 5116  2022-09-16 51.88445  383990304   1922.7516                 Aggregates
## 5117  2022-09-16 52.17350  392770274   1805.1941                 Aggregates
## 5118  2022-09-16 60.04032  787410667   1877.1147                 Aggregates
## 5119  2022-09-16 52.68145  410381153   1628.0168                 Aggregates
## 5120  2022-09-16 52.95272  419418477   1582.3223                 Aggregates
## 5121  2022-09-16 53.47562  438095611   1595.3863                 Aggregates
## 5122  2022-09-16 53.76977  447772838   1628.2016                 Aggregates
## 5123  2022-09-16 53.95618  457884476   1643.8154                 Aggregates
## 5124  2022-09-16 54.12169  468655819   1615.2551                 Aggregates
## 5125  2022-09-16 54.26531  482058865   1649.0855                 Aggregates
## 5126  2022-09-16 54.29305  494469828   1486.5173                 Aggregates
## 5127  2022-09-16 54.33789  507733564   1456.8728                 Aggregates
## 5128  2022-09-16 54.36484  521373546   1396.9246                 Aggregates
## 5129  2022-09-16 54.39585  534779779   1310.3751                 Aggregates
## 5130  2022-09-16 54.41739  547780237   1280.3204                 Aggregates
## 5131  2022-09-16 48.16964  284794041          NA                 Aggregates
## 5132  2022-09-16 48.52444  291117502   1238.6107                 Aggregates
## 5133  2022-09-16 48.86839  297637311   1371.8526                 Aggregates
## 5134  2022-09-16 55.31225  610277815   1439.9057                 Aggregates
## 5135  2022-09-16 55.60178  624175036   1468.5657                 Aggregates
## 5136  2022-09-16 57.62763  701424971   1721.3801                 Aggregates
## 5137  2022-09-16 58.10818  717800479   1783.0873                 Aggregates
## 5138  2022-09-16 58.57785  734518852   1830.0499                 Aggregates
## 5139  2022-09-16 47.80219  278645121          NA                 Aggregates
## 5140  2022-09-16 47.41942  272657455          NA                 Aggregates
## 5141  2022-09-16 52.41987  401516218   1746.1440                 Aggregates
## 5142  2022-09-16 51.44447  366560923   1794.9867                 Aggregates
## 5143  2022-09-16 49.20329  304369852   1522.7099                 Aggregates
## 5144  2022-09-16 53.22142  428652839   1597.7332                 Aggregates
## 5145  2022-09-16 51.66330  375266501   1853.4487                 Aggregates
## 5146  2022-09-16 47.02077  266820455          NA                 Aggregates
## 5147  2022-09-16 74.05122   55161510  23571.7601      Europe & Central Asia
## 5148  2022-09-16 74.30000   55430278  23708.2313      Europe & Central Asia
## 5149  2022-09-16 76.34878   57940199  27854.6079      Europe & Central Asia
## 5150  2022-09-16 73.10244   54220033  21192.4504      Europe & Central Asia
## 5151  2022-09-16 74.50000   55718940  24176.3145      Europe & Central Asia
## 5152  2022-09-16 73.85122   54917110  23308.6779      Europe & Central Asia
## 5153  2022-09-16 77.30000   59106758  28670.5992      Europe & Central Asia
## 5154  2022-09-16 76.60000   58235716  28523.5774      Europe & Central Asia
## 5155  2022-09-16 76.84878   58559309  28663.2841      Europe & Central Asia
## 5156  2022-09-16 77.10000   58851216  28977.2621      Europe & Central Asia
## 5157  2022-09-16 72.60488   53592235  20744.7098      Europe & Central Asia
## 5158  2022-09-16 72.85366   53931390  20416.3807      Europe & Central Asia
## 5159  2022-09-16 70.66341   49230585  13450.6131      Europe & Central Asia
## 5160  2022-09-16 70.81220   49818019  13938.2009      Europe & Central Asia
## 5161  2022-09-16 76.10000   57627106  26840.0499      Europe & Central Asia
## 5162  2022-09-16 79.05610   60912500  33597.3662      Europe & Central Asia
## 5163  2022-09-16 70.96098   50330268  14520.9027      Europe & Central Asia
## 5164  2022-09-16 71.16098   50775788  15101.8177      Europe & Central Asia
## 5165  2022-09-16 71.30976   51175507  15656.8327      Europe & Central Asia
## 5166  2022-09-16 71.45854   51561833  16644.3029      Europe & Central Asia
## 5167  2022-09-16 71.65854   51957747  17526.4742      Europe & Central Asia
## 5168  2022-09-16 71.90732   52371320  18312.5430      Europe & Central Asia
## 5169  2022-09-16 69.86829   46621688  11176.4128      Europe & Central Asia
## 5170  2022-09-16 70.11707   47240526  11579.3114      Europe & Central Asia
## 5171  2022-09-16 81.41463   64707035  35131.4491      Europe & Central Asia
## 5172  2022-09-16 81.66341   65027505  35639.8041      Europe & Central Asia
## 5173  2022-09-16 82.11463   65342789  36245.5428      Europe & Central Asia
## 5174  2022-09-16 81.96829   65659814  36183.4880      Europe & Central Asia
## 5175  2022-09-16 73.35122   54467709  21826.9181      Europe & Central Asia
## 5176  2022-09-16 73.60244   54691866  22602.2938      Europe & Central Asia
## 5177  2022-09-16 82.32195   66548272  36652.9223      Europe & Central Asia
## 5178  2022-09-16 82.57317   66724104  36956.7958      Europe & Central Asia
## 5179  2022-09-16 82.57561   66918020  37694.0833      Europe & Central Asia
## 5180  2022-09-16 82.67561   67101930  38291.8658      Europe & Central Asia
## 5181  2022-09-16 82.82683   67248926  38912.3313      Europe & Central Asia
## 5182  2022-09-16 72.10732   52793151  18985.7672      Europe & Central Asia
## 5183  2022-09-16 72.35610   53207744  20033.0120      Europe & Central Asia
## 5184  2022-09-16 75.00000   56337675  24573.9301      Europe & Central Asia
## 5185  2022-09-16 75.30000   56654703  24832.9692      Europe & Central Asia
## 5186  2022-09-16 75.60000   56976126  25270.0182      Europe & Central Asia
## 5187  2022-09-16 75.80000   57302642  25769.7309      Europe & Central Asia
## 5188  2022-09-16 78.75610   60496708  32551.0831      Europe & Central Asia
## 5189  2022-09-16 82.21951   65998685  36205.1678      Europe & Central Asia
## 5190  2022-09-16 79.15854   61357432  34015.3809      Europe & Central Asia
## 5191  2022-09-16 79.26098   61805266  34152.3659      Europe & Central Asia
## 5192  2022-09-16 79.11463   62244880  34190.3029      Europe & Central Asia
## 5193  2022-09-16 80.16341   62704901  34899.8764      Europe & Central Asia
## 5194  2022-09-16 80.16341   63179356  35213.8931      Europe & Central Asia
## 5195  2022-09-16 80.81220   63621376  35825.7486      Europe & Central Asia
## 5196  2022-09-16 77.64878   59327200  29237.7063      Europe & Central Asia
## 5197  2022-09-16 77.75122   59541904  29746.0055      Europe & Central Asia
## 5198  2022-09-16 77.95366   59753095  30059.6950      Europe & Central Asia
## 5199  2022-09-16 70.31463   47904879  12200.1647      Europe & Central Asia
## 5200  2022-09-16 70.51463   48582624  12779.8777      Europe & Central Asia
## 5201  2022-09-16 78.60488   60186284  31636.5672      Europe & Central Asia
## 5202  2022-09-16 81.21463   64374979  36357.3225      Europe & Central Asia
## 5203  2022-09-16 82.71951   66312067  36378.6187      Europe & Central Asia
## 5204  2022-09-16 82.17561   67379908  35785.9670      Europe & Central Asia
## 5205  2022-09-16 81.11220   64016227  36468.0979      Europe & Central Asia
## 5206  2022-09-16       NA   67499343  38210.2182      Europe & Central Asia
## 5207  2022-09-16 78.30488   59964841  30653.3529      Europe & Central Asia
## 5208  2022-09-16 74.80000   56023775  24343.1301      Europe & Central Asia
## 5209  2022-09-16 76.07400     268995          NA        East Asia & Pacific
## 5210  2022-09-16 76.54600     271713          NA        East Asia & Pacific
## 5211  2022-09-16 77.02400     274576  19843.1750        East Asia & Pacific
## 5212  2022-09-16 77.46200     277673  20819.6321        East Asia & Pacific
## 5213  2022-09-16 76.78700     273119  19500.1009        East Asia & Pacific
## 5214  2022-09-16 75.84400     267702          NA        East Asia & Pacific
## 5215  2022-09-16 77.25100     276108  20580.1427        East Asia & Pacific
## 5216  2022-09-16 70.42600     218064          NA        East Asia & Pacific
## 5217  2022-09-16 72.30300     240681          NA        East Asia & Pacific
## 5218  2022-09-16 72.65800     244929          NA        East Asia & Pacific
## 5219  2022-09-16 66.40700     167456          NA        East Asia & Pacific
## 5220  2022-09-16 76.30700     270332          NA        East Asia & Pacific
## 5221  2022-09-16 73.75100     255995          NA        East Asia & Pacific
## 5222  2022-09-16 74.11600     258780          NA        East Asia & Pacific
## 5223  2022-09-16 73.01700     248976          NA        East Asia & Pacific
## 5224  2022-09-16 73.38200     252707          NA        East Asia & Pacific
## 5225  2022-09-16 75.09200     264064          NA        East Asia & Pacific
## 5226  2022-09-16 70.81500     222323          NA        East Asia & Pacific
## 5227  2022-09-16 71.20200     226854          NA        East Asia & Pacific
## 5228  2022-09-16 58.65400      96719          NA        East Asia & Pacific
## 5229  2022-09-16 59.06100      99990          NA        East Asia & Pacific
## 5230  2022-09-16 59.45200     103329          NA        East Asia & Pacific
## 5231  2022-09-16 59.82700     106814          NA        East Asia & Pacific
## 5232  2022-09-16 60.18300     110490          NA        East Asia & Pacific
## 5233  2022-09-16 60.51800     114385          NA        East Asia & Pacific
## 5234  2022-09-16 60.83600     118438          NA        East Asia & Pacific
## 5235  2022-09-16 61.14900     122641          NA        East Asia & Pacific
## 5236  2022-09-16 77.65700     279285  21320.4394        East Asia & Pacific
## 5237  2022-09-16 70.04400     214196          NA        East Asia & Pacific
## 5238  2022-09-16       NA     282534          NA        East Asia & Pacific
## 5239  2022-09-16 75.36300     265256          NA        East Asia & Pacific
## 5240  2022-09-16 75.61100     266449          NA        East Asia & Pacific
## 5241  2022-09-16 63.91600     148734          NA        East Asia & Pacific
## 5242  2022-09-16 64.57600     153298          NA        East Asia & Pacific
## 5243  2022-09-16 66.88300     172249          NA        East Asia & Pacific
## 5244  2022-09-16 67.27800     177024          NA        East Asia & Pacific
## 5245  2022-09-16 67.60400     181807          NA        East Asia & Pacific
## 5246  2022-09-16 67.88800     186588          NA        East Asia & Pacific
## 5247  2022-09-16 68.15600     191260          NA        East Asia & Pacific
## 5248  2022-09-16 68.42400     195728          NA        East Asia & Pacific
## 5249  2022-09-16 68.70400     199906          NA        East Asia & Pacific
## 5250  2022-09-16 77.83600     280904  19586.5414        East Asia & Pacific
## 5251  2022-09-16 69.33200     207238          NA        East Asia & Pacific
## 5252  2022-09-16 69.67800     210644          NA        East Asia & Pacific
## 5253  2022-09-16 57.09300      83652          NA        East Asia & Pacific
## 5254  2022-09-16 57.46500      86847          NA        East Asia & Pacific
## 5255  2022-09-16 71.58000     231562          NA        East Asia & Pacific
## 5256  2022-09-16 71.94600     236217          NA        East Asia & Pacific
## 5257  2022-09-16 65.23400     157954          NA        East Asia & Pacific
## 5258  2022-09-16 65.85400     162679          NA        East Asia & Pacific
## 5259  2022-09-16 69.00700     203716          NA        East Asia & Pacific
## 5260  2022-09-16 74.79300     262717          NA        East Asia & Pacific
## 5261  2022-09-16 56.70800      80705          NA        East Asia & Pacific
## 5262  2022-09-16 62.72800     139893          NA        East Asia & Pacific
## 5263  2022-09-16 63.29100     144273          NA        East Asia & Pacific
## 5264  2022-09-16 57.84500      90132          NA        East Asia & Pacific
## 5265  2022-09-16 58.24200      93442          NA        East Asia & Pacific
## 5266  2022-09-16 62.23900     135559          NA        East Asia & Pacific
## 5267  2022-09-16 56.28200      78080          NA        East Asia & Pacific
## 5268  2022-09-16 61.46900     126919          NA        East Asia & Pacific
## 5269  2022-09-16 61.82300     131229          NA        East Asia & Pacific
## 5270  2022-09-16 74.46600     261007          NA        East Asia & Pacific
## 5271  2022-09-16 52.84800     676264  12984.8658         Sub-Saharan Africa
## 5272  2022-09-16 53.65200     692078   9636.7592         Sub-Saharan Africa
## 5273  2022-09-16 54.45200     708788   9454.2077         Sub-Saharan Africa
## 5274  2022-09-16 55.25200     726335   9461.3395         Sub-Saharan Africa
## 5275  2022-09-16 52.04100     661398  15187.6452         Sub-Saharan Africa
## 5276  2022-09-16 60.86500     923714   8457.9402         Sub-Saharan Africa
## 5277  2022-09-16 60.96500     949493   8655.5379         Sub-Saharan Africa
## 5278  2022-09-16 51.23400     647538  11437.9245         Sub-Saharan Africa
## 5279  2022-09-16 60.83300    1002573   8429.5487         Sub-Saharan Africa
## 5280  2022-09-16 49.61200     622914   7151.7138         Sub-Saharan Africa
## 5281  2022-09-16 40.08200     505793   3849.2815         Sub-Saharan Africa
## 5282  2022-09-16 60.94400     975785   8937.1336         Sub-Saharan Africa
## 5283  2022-09-16 48.79300     611705   6609.7316         Sub-Saharan Africa
## 5284  2022-09-16 60.63300     898472   8010.9962         Sub-Saharan Africa
## 5285  2022-09-16 41.84900     524891   4420.9290         Sub-Saharan Africa
## 5286  2022-09-16 40.56000     511285   4091.5952         Sub-Saharan Africa
## 5287  2022-09-16 60.26600     873871   7298.9446         Sub-Saharan Africa
## 5288  2022-09-16 44.44200     554054   4936.9211         Sub-Saharan Africa
## 5289  2022-09-16 45.35700     565763   4956.0410         Sub-Saharan Africa
## 5290  2022-09-16 42.65100     533357   4713.3185         Sub-Saharan Africa
## 5291  2022-09-16 43.52800     543119   4837.2590         Sub-Saharan Africa
## 5292  2022-09-16 47.96700     600608   6046.3787         Sub-Saharan Africa
## 5293  2022-09-16 60.63700    1568925   6634.7187         Sub-Saharan Africa
## 5294  2022-09-16 61.40000    1624146   6863.5388         Sub-Saharan Africa
## 5295  2022-09-16 62.16800    1684629   7086.3878         Sub-Saharan Africa
## 5296  2022-09-16 62.92400    1749677   7181.2137         Sub-Saharan Africa
## 5297  2022-09-16 50.42500     634739   9789.8732         Sub-Saharan Africa
## 5298  2022-09-16 64.31800    1883801   7350.0513         Sub-Saharan Africa
## 5299  2022-09-16 64.91300    1947690   7384.7007         Sub-Saharan Africa
## 5300  2022-09-16 65.41800    2007882   7313.1400         Sub-Saharan Africa
## 5301  2022-09-16 65.83900    2064812   7145.1176         Sub-Saharan Africa
## 5302  2022-09-16 66.18700    2119275   7019.8276         Sub-Saharan Africa
## 5303  2022-09-16 46.25500     577644   5246.4580         Sub-Saharan Africa
## 5304  2022-09-16 47.12500     589317   5588.8763         Sub-Saharan Africa
## 5305  2022-09-16 56.87300     763932   9161.2177         Sub-Saharan Africa
## 5306  2022-09-16 57.67400     784056   9426.6771         Sub-Saharan Africa
## 5307  2022-09-16 58.44400     805117   9869.4089         Sub-Saharan Africa
## 5308  2022-09-16 59.15300     827107   9382.8877         Sub-Saharan Africa
## 5309  2022-09-16 59.76700     850052   9056.2550         Sub-Saharan Africa
## 5310  2022-09-16 58.64600    1199058   8235.8994         Sub-Saharan Africa
## 5311  2022-09-16 41.14900     517573   4288.1357         Sub-Saharan Africa
## 5312  2022-09-16 57.96800    1258008   7866.6135         Sub-Saharan Africa
## 5313  2022-09-16 57.79100    1288310   7662.4553         Sub-Saharan Africa
## 5314  2022-09-16 57.75900    1319946   7646.8777         Sub-Saharan Africa
## 5315  2022-09-16 57.88500    1353788   7507.1314         Sub-Saharan Africa
## 5316  2022-09-16 58.18100    1390550   7504.2600         Sub-Saharan Africa
## 5317  2022-09-16 60.65900    1029769   8530.8168         Sub-Saharan Africa
## 5318  2022-09-16 60.43900    1057252   8617.5554         Sub-Saharan Africa
## 5319  2022-09-16 60.17500    1084951   8815.2289         Sub-Saharan Africa
## 5320  2022-09-16 59.85400    1112944   8905.0252         Sub-Saharan Africa
## 5321  2022-09-16 39.69400     500922   3386.6159         Sub-Saharan Africa
## 5322  2022-09-16 59.06600    1170061   9267.8691         Sub-Saharan Africa
## 5323  2022-09-16 59.22900    1472565   7301.2288         Sub-Saharan Africa
## 5324  2022-09-16 63.64800    1817070   7304.7797         Sub-Saharan Africa
## 5325  2022-09-16 58.26400    1228359   7888.0621         Sub-Saharan Africa
## 5326  2022-09-16 58.64100    1430144   7091.7200         Sub-Saharan Africa
## 5327  2022-09-16 59.47900    1141332   9181.8263         Sub-Saharan Africa
## 5328  2022-09-16 59.90400    1518538   6845.9446         Sub-Saharan Africa
## 5329  2022-09-16 66.69000    2225728   6818.4968         Sub-Saharan Africa
## 5330  2022-09-16 66.46700    2172578   7116.0813         Sub-Saharan Africa
## 5331  2022-09-16 56.06100     744695   9698.2768         Sub-Saharan Africa
## 5332  2022-09-16       NA    2278829   6759.8642         Sub-Saharan Africa
## 5333  2022-09-16 59.01200    1689288    707.7285         Sub-Saharan Africa
## 5334  2022-09-16 59.91700    1848142    671.3696         Sub-Saharan Africa
## 5335  2022-09-16 60.17800    1905020    685.4642         Sub-Saharan Africa
## 5336  2022-09-16 60.42600    1963708    684.0815         Sub-Saharan Africa
## 5337  2022-09-16 60.66700    2024037    654.3509         Sub-Saharan Africa
## 5338  2022-09-16 52.83400    1027476    720.7258         Sub-Saharan Africa
## 5339  2022-09-16 54.71500    1200522    688.4448         Sub-Saharan Africa
## 5340  2022-09-16 53.50800    1094219    698.2252         Sub-Saharan Africa
## 5341  2022-09-16 59.33400    1740277    732.7855         Sub-Saharan Africa
## 5342  2022-09-16 59.63700    1793199    753.1768         Sub-Saharan Africa
## 5343  2022-09-16 56.35900    1360070    746.9613         Sub-Saharan Africa
## 5344  2022-09-16 55.13300    1238124    690.9004         Sub-Saharan Africa
## 5345  2022-09-16 55.54700    1277118    712.6728         Sub-Saharan Africa
## 5346  2022-09-16 55.95600    1317708    728.7096         Sub-Saharan Africa
## 5347  2022-09-16 57.93900    1543745    711.2819         Sub-Saharan Africa
## 5348  2022-09-16 53.15700    1060861    719.0706         Sub-Saharan Africa
## 5349  2022-09-16 58.67100    1639846    686.1424         Sub-Saharan Africa
## 5350  2022-09-16 52.52800     992671    721.6147         Sub-Saharan Africa
## 5351  2022-09-16 54.29600    1164091    676.8257         Sub-Saharan Africa
## 5352  2022-09-16 36.21100     438590    633.3495         Sub-Saharan Africa
## 5353  2022-09-16 37.02300     451228    630.6040         Sub-Saharan Africa
## 5354  2022-09-16 34.73500     415478    610.1521         Sub-Saharan Africa
## 5355  2022-09-16 38.73400     478106    631.3615         Sub-Saharan Africa
## 5356  2022-09-16 39.61000     492424    614.4853         Sub-Saharan Africa
## 5357  2022-09-16 60.91000    2085860    660.7236         Sub-Saharan Africa
## 5358  2022-09-16 37.86800     464404    650.4180         Sub-Saharan Africa
## 5359  2022-09-16 57.55300    1496524    751.3964         Sub-Saharan Africa
## 5360  2022-09-16 61.73500    2280092    692.6321         Sub-Saharan Africa
## 5361  2022-09-16 58.31300    1591444    686.1300         Sub-Saharan Africa
## 5362  2022-09-16 62.38300    2416664    692.7492         Sub-Saharan Africa
## 5363  2022-09-16       NA    2486937    711.0504         Sub-Saharan Africa
## 5364  2022-09-16 35.44500     426622    594.2140         Sub-Saharan Africa
## 5365  2022-09-16 47.90300     678111    736.3427         Sub-Saharan Africa
## 5366  2022-09-16 48.64500     700198    790.7255         Sub-Saharan Africa
## 5367  2022-09-16 49.34800     725688    789.9234         Sub-Saharan Africa
## 5368  2022-09-16 49.99800     755791    752.3002         Sub-Saharan Africa
## 5369  2022-09-16 50.57700     791141    748.0876         Sub-Saharan Africa
## 5370  2022-09-16 51.08200     831011    729.6757         Sub-Saharan Africa
## 5371  2022-09-16 61.16600    2149134    653.7330         Sub-Saharan Africa
## 5372  2022-09-16 61.44000    2213900    665.2132         Sub-Saharan Africa
## 5373  2022-09-16 52.22100     955595    727.0236         Sub-Saharan Africa
## 5374  2022-09-16 32.67000     379886          NA         Sub-Saharan Africa
## 5375  2022-09-16 33.07000     387635          NA         Sub-Saharan Africa
## 5376  2022-09-16 33.54300     396012          NA         Sub-Saharan Africa
## 5377  2022-09-16 53.88900    1128577    682.9385         Sub-Saharan Africa
## 5378  2022-09-16 46.34100     637252    764.2061         Sub-Saharan Africa
## 5379  2022-09-16 47.13300     657581    765.1821         Sub-Saharan Africa
## 5380  2022-09-16 51.51800     873440    725.3098         Sub-Saharan Africa
## 5381  2022-09-16 51.89200     915631    732.6804         Sub-Saharan Africa
## 5382  2022-09-16 32.33600     372436          NA         Sub-Saharan Africa
## 5383  2022-09-16 43.04700     557810    757.0841         Sub-Saharan Africa
## 5384  2022-09-16 43.88200     576755    757.4008         Sub-Saharan Africa
## 5385  2022-09-16 62.05000    2347696    714.5421         Sub-Saharan Africa
## 5386  2022-09-16 34.09700     405258          NA         Sub-Saharan Africa
## 5387  2022-09-16 42.20500     539985    728.5204         Sub-Saharan Africa
## 5388  2022-09-16 32.05400     365049          NA         Sub-Saharan Africa
## 5389  2022-09-16 40.48500     507428    651.4769         Sub-Saharan Africa
## 5390  2022-09-16 41.35200     523250    668.9185         Sub-Saharan Africa
## 5391  2022-09-16 45.53300     616770    742.9977         Sub-Saharan Africa
## 5392  2022-09-16 57.15900    1449925    724.4703         Sub-Saharan Africa
## 5393  2022-09-16 56.76100    1404263    699.9417         Sub-Saharan Africa
## 5394  2022-09-16 44.71200     596540    778.5348         Sub-Saharan Africa
## 5395  2022-09-16 69.46100    4372100   3356.7196      Europe & Central Asia
## 5396  2022-09-16 69.59200    4397700   3585.1027      Europe & Central Asia
## 5397  2022-09-16 70.40700    4790700   4494.8089      Europe & Central Asia
## 5398  2022-09-16 70.42500    4803300   4160.4559      Europe & Central Asia
## 5399  2022-09-16 69.66500    4430200   3821.0984      Europe & Central Asia
## 5400  2022-09-16 69.26600    4342400   3161.6343      Europe & Central Asia
## 5401  2022-09-16 67.45200    4119900   2395.6936      Europe & Central Asia
## 5402  2022-09-16 67.76600    4163000   2429.4740      Europe & Central Asia
## 5403  2022-09-16 68.71800    4279500   2815.8907      Europe & Central Asia
## 5404  2022-09-16 69.01400    4311200   3001.4968      Europe & Central Asia
## 5405  2022-09-16 70.33900    4743500   4300.6113      Europe & Central Asia
## 5406  2022-09-16 64.05800    3703600          NA      Europe & Central Asia
## 5407  2022-09-16 70.38600    4802000   3546.1580      Europe & Central Asia
## 5408  2022-09-16 70.29000    4835900   2778.3050      Europe & Central Asia
## 5409  2022-09-16 65.29100    3870300          NA      Europe & Central Asia
## 5410  2022-09-16 65.69400    3921600   1796.1713      Europe & Central Asia
## 5411  2022-09-16 64.46900    3760300          NA      Europe & Central Asia
## 5412  2022-09-16 70.22600    4704500   4281.3740      Europe & Central Asia
## 5413  2022-09-16 67.13600    4080300   2158.7671      Europe & Central Asia
## 5414  2022-09-16 70.94600    3848449   2980.3095      Europe & Central Asia
## 5415  2022-09-16 71.18000    3814419   2897.1309      Europe & Central Asia
## 5416  2022-09-16 64.88100    3816100          NA      Europe & Central Asia
## 5417  2022-09-16 71.77300    3756441   3356.9979      Europe & Central Asia
## 5418  2022-09-16 68.08200    4205300   2473.2644      Europe & Central Asia
## 5419  2022-09-16 68.40100    4242500   2610.5077      Europe & Central Asia
## 5420  2022-09-16 72.70700    3719414   3902.5688      Europe & Central Asia
## 5421  2022-09-16 72.97300    3725276   4014.1859      Europe & Central Asia
## 5422  2022-09-16 73.20700    3727505   4128.3856      Europe & Central Asia
## 5423  2022-09-16 73.41400    3728004   4327.7276      Europe & Central Asia
## 5424  2022-09-16 66.08400    3966700   1909.5634      Europe & Central Asia
## 5425  2022-09-16 66.45500    4005800   2009.1073      Europe & Central Asia
## 5426  2022-09-16 66.80500    4042300   2079.6901      Europe & Central Asia
## 5427  2022-09-16 69.76800    4542800   4184.2901      Europe & Central Asia
## 5428  2022-09-16 69.84400    4582900   4326.1063      Europe & Central Asia
## 5429  2022-09-16 71.46000    3786695   3100.7234      Europe & Central Asia
## 5430  2022-09-16 70.08800    4662900   4704.1473      Europe & Central Asia
## 5431  2022-09-16 69.65400    4243607   1436.7119      Europe & Central Asia
## 5432  2022-09-16 63.65100    3645600          NA      Europe & Central Asia
## 5433  2022-09-16 69.90200    4077131   1566.5603      Europe & Central Asia
## 5434  2022-09-16 70.06500    4014373   1667.5080      Europe & Central Asia
## 5435  2022-09-16 70.22000    3978515   1774.6364      Europe & Central Asia
## 5436  2022-09-16 70.34900    3951736   1984.2443      Europe & Central Asia
## 5437  2022-09-16 70.45100    3927340   2112.2613      Europe & Central Asia
## 5438  2022-09-16 70.15600    4873500   1519.0353      Europe & Central Asia
## 5439  2022-09-16 70.00300    4911100   1065.7356      Europe & Central Asia
## 5440  2022-09-16 69.84900    4836076    969.7129      Europe & Central Asia
## 5441  2022-09-16 69.71800    4657722   1033.0232      Europe & Central Asia
## 5442  2022-09-16 69.95400    4622200   4522.1021      Europe & Central Asia
## 5443  2022-09-16 69.61300    4349913   1359.3928      Europe & Central Asia
## 5444  2022-09-16 70.63500    3880347   2563.5431      Europe & Central Asia
## 5445  2022-09-16 72.09700    3728874   3597.2038      Europe & Central Asia
## 5446  2022-09-16 72.41200    3717668   3738.7050      Europe & Central Asia
## 5447  2022-09-16 70.53800    3902469   2329.5709      Europe & Central Asia
## 5448  2022-09-16       NA    3708610   4927.0647      Europe & Central Asia
## 5449  2022-09-16 70.76500    3860158   2901.1041      Europe & Central Asia
## 5450  2022-09-16 73.76700    3720161   4773.4233      Europe & Central Asia
## 5451  2022-09-16 73.91900    3722716   4447.6643      Europe & Central Asia
## 5452  2022-09-16 73.60000    3726549   4539.0875      Europe & Central Asia
## 5453  2022-09-16 69.70000    4467700   3962.4216      Europe & Central Asia
## 5454  2022-09-16 69.72600    4504500   4137.0626      Europe & Central Asia
## 5455  2022-09-16 69.75600    4157192   1508.6565      Europe & Central Asia
## 5456  2022-09-16 69.63500    4491699   1191.1811      Europe & Central Asia
## 5457  2022-09-16 78.68049   82516260  35034.0806      Europe & Central Asia
## 5458  2022-09-16 79.98780   81776930  37760.9136      Europe & Central Asia
## 5459  2022-09-16 79.53415   82266372  37842.3578      Europe & Central Asia
## 5460  2022-09-16 79.73659   82110097  38278.3130      Europe & Central Asia
## 5461  2022-09-16 79.83659   81902307  36190.3929      Europe & Central Asia
## 5462  2022-09-16 78.93171   82469422  35310.4705      Europe & Central Asia
## 5463  2022-09-16 76.67317   81914831  31790.8669      Europe & Central Asia
## 5464  2022-09-16 75.87073   81156363  30615.1402      Europe & Central Asia
## 5465  2022-09-16 75.22776   79433029  29485.7100      Europe & Central Asia
## 5466  2022-09-16 76.42195   81678051  31628.1598      Europe & Central Asia
## 5467  2022-09-16 74.55968   77839920  26531.2297      Europe & Central Asia
## 5468  2022-09-16 77.07317   82034771  32313.2971      Europe & Central Asia
## 5469  2022-09-16 76.27073   81438348  31238.8791      Europe & Central Asia
## 5470  2022-09-16 78.38049   82534176  34619.6641      Europe & Central Asia
## 5471  2022-09-16 69.69154   74025784          NA      Europe & Central Asia
## 5472  2022-09-16 79.13171   82376451  36699.4468      Europe & Central Asia
## 5473  2022-09-16 70.01371   75318337          NA      Europe & Central Asia
## 5474  2022-09-16 70.15183   75963695          NA      Europe & Central Asia
## 5475  2022-09-16 70.27141   76600311          NA      Europe & Central Asia
## 5476  2022-09-16 70.37400   76951336          NA      Europe & Central Asia
## 5477  2022-09-16 70.46510   77294314          NA      Europe & Central Asia
## 5478  2022-09-16 80.43659   80274983  39977.3417      Europe & Central Asia
## 5479  2022-09-16 80.53902   80425823  40069.3540      Europe & Central Asia
## 5480  2022-09-16 80.49024   80645605  40135.0158      Europe & Central Asia
## 5481  2022-09-16 74.79249   78144619  27407.5201      Europe & Central Asia
## 5482  2022-09-16 75.01315   78751283  28256.1062      Europe & Central Asia
## 5483  2022-09-16 80.89268   82905782  42973.2900      Europe & Central Asia
## 5484  2022-09-16 81.29268   83092962  43329.0507      Europe & Central Asia
## 5485  2022-09-16 69.85961   74714353          NA      Europe & Central Asia
## 5486  2022-09-16 72.14329   78091820  22558.7148      Europe & Central Asia
## 5487  2022-09-16 72.40854   78126350  23484.5992      Europe & Central Asia
## 5488  2022-09-16 72.67790   78288576  23766.1077      Europe & Central Asia
## 5489  2022-09-16 72.95039   78407907  23855.5259      Europe & Central Asia
## 5490  2022-09-16 73.22700   78333366  23783.9455      Europe & Central Asia
## 5491  2022-09-16 73.50520   78128282  24221.3404      Europe & Central Asia
## 5492  2022-09-16 73.78293   77858685  24991.3337      Europe & Central Asia
## 5493  2022-09-16 74.05463   77684873  25630.3330      Europe & Central Asia
## 5494  2022-09-16 81.09024   80982500  40851.1617      Europe & Central Asia
## 5495  2022-09-16 78.32927   82349925  35011.0685      Europe & Central Asia
## 5496  2022-09-16 78.22927   82488495  34883.0581      Europe & Central Asia
## 5497  2022-09-16 69.31002   72814900          NA      Europe & Central Asia
## 5498  2022-09-16 75.31951   80013896  30766.9290      Europe & Central Asia
## 5499  2022-09-16 75.81951   80624598  31121.0706      Europe & Central Asia
## 5500  2022-09-16 71.88368   78159814  21880.8076      Europe & Central Asia
## 5501  2022-09-16 80.94146   83160871  41315.3136      Europe & Central Asia
## 5502  2022-09-16       NA   83129285  42526.5537      Europe & Central Asia
## 5503  2022-09-16 74.31373   77720436  26204.5896      Europe & Central Asia
## 5504  2022-09-16 70.86700   78688452  19121.4979      Europe & Central Asia
## 5505  2022-09-16 77.47561   82047195  32959.0736      Europe & Central Asia
## 5506  2022-09-16 77.72683   82100243  33559.3994      Europe & Central Asia
## 5507  2022-09-16 69.50800   73377632          NA      Europe & Central Asia
## 5508  2022-09-16 80.99268   82657002  42639.5544      Europe & Central Asia
## 5509  2022-09-16 71.01668   78936666  19972.0254      Europe & Central Asia
## 5510  2022-09-16 80.64146   81686611  41103.2564      Europe & Central Asia
## 5511  2022-09-16 70.63978   78169289  17894.2967      Europe & Central Asia
## 5512  2022-09-16 70.74288   78312842  18421.0422      Europe & Central Asia
## 5513  2022-09-16 71.63415   78336950  21124.2557      Europe & Central Asia
## 5514  2022-09-16 70.55068   77909682          NA      Europe & Central Asia
## 5515  2022-09-16 80.99024   82348669  41682.0322      Europe & Central Asia
## 5516  2022-09-16 77.92683   82211508  34490.0758      Europe & Central Asia
## 5517  2022-09-16 71.40173   78673554  20041.9480      Europe & Central Asia
## 5518  2022-09-16 71.19541   78967433  20141.9395      Europe & Central Asia
## 5519  2022-09-16 50.50700    9749098   1188.9582         Sub-Saharan Africa
## 5520  2022-09-16 49.91200    9229640   1142.3816         Sub-Saharan Africa
## 5521  2022-09-16 50.20600    9493552   1142.6613         Sub-Saharan Africa
## 5522  2022-09-16 50.81100    9985946   1016.4572         Sub-Saharan Africa
## 5523  2022-09-16 48.46900    8132803   1082.3908         Sub-Saharan Africa
## 5524  2022-09-16 48.76800    8321773   1061.7139         Sub-Saharan Africa
## 5525  2022-09-16 54.12700   12783617    814.6129         Sub-Saharan Africa
## 5526  2022-09-16 49.62500    8973247   1204.9992         Sub-Saharan Africa
## 5527  2022-09-16 53.28600   12033559    757.9191         Sub-Saharan Africa
## 5528  2022-09-16 53.68500   12405659    798.7614         Sub-Saharan Africa
## 5529  2022-09-16 54.62200   13164839    832.1502         Sub-Saharan Africa
## 5530  2022-09-16 46.27900    6848291   1156.5812         Sub-Saharan Africa
## 5531  2022-09-16 46.69600    7071966   1166.0230         Sub-Saharan Africa
## 5532  2022-09-16 47.09300    7300124   1179.3491         Sub-Saharan Africa
## 5533  2022-09-16 45.84300    6635229   1154.1367         Sub-Saharan Africa
## 5534  2022-09-16 48.15500    7941418   1075.4035         Sub-Saharan Africa
## 5535  2022-09-16 57.42500   20246376   1076.9152         Sub-Saharan Africa
## 5536  2022-09-16 57.78500   20750308   1105.4014         Sub-Saharan Africa
## 5537  2022-09-16 47.46900    7524470   1169.4650         Sub-Saharan Africa
## 5538  2022-09-16 52.58500   11348287    904.7609         Sub-Saharan Africa
## 5539  2022-09-16 52.92000   11676828    818.4245         Sub-Saharan Africa
## 5540  2022-09-16 49.34000    8735493   1176.4315         Sub-Saharan Africa
## 5541  2022-09-16 60.21600   23563832   1319.1736         Sub-Saharan Africa
## 5542  2022-09-16 60.64500   24170943   1348.3414         Sub-Saharan Africa
## 5543  2022-09-16 61.03000   24779614   1419.1203         Sub-Saharan Africa
## 5544  2022-09-16 61.38100   25387713   1579.6996         Sub-Saharan Africa
## 5545  2022-09-16 61.72000   25996454   1686.0695         Sub-Saharan Africa
## 5546  2022-09-16 62.06400   26607641   1767.8021         Sub-Saharan Africa
## 5547  2022-09-16 47.82300    7739463   1152.5439         Sub-Saharan Africa
## 5548  2022-09-16 51.40900   10395453    963.3676         Sub-Saharan Africa
## 5549  2022-09-16 51.69800   10590265   1025.7984         Sub-Saharan Africa
## 5550  2022-09-16 58.22500   21272328   1138.6584         Sub-Saharan Africa
## 5551  2022-09-16 58.71900   21814648   1175.8617         Sub-Saharan Africa
## 5552  2022-09-16 49.05700    8520018   1099.2944         Sub-Saharan Africa
## 5553  2022-09-16 64.34700   31072945   2020.6243         Sub-Saharan Africa
## 5554  2022-09-16 57.62000   16561677    941.7819         Sub-Saharan Africa
## 5555  2022-09-16 57.52800   17014058    954.4414         Sub-Saharan Africa
## 5556  2022-09-16 57.36600   17462504    972.7306         Sub-Saharan Africa
## 5557  2022-09-16 57.18700   17908977    988.2819         Sub-Saharan Africa
## 5558  2022-09-16 57.04500   18357159   1009.4724         Sub-Saharan Africa
## 5559  2022-09-16 56.97200   18812369   1028.3878         Sub-Saharan Africa
## 5560  2022-09-16 55.15900   13552021    847.1364         Sub-Saharan Africa
## 5561  2022-09-16 55.71700   13947047    869.4706         Sub-Saharan Africa
## 5562  2022-09-16 56.27100   14353409    887.8231         Sub-Saharan Africa
## 5563  2022-09-16 51.98400   10805318    980.0977         Sub-Saharan Africa
## 5564  2022-09-16 52.27700   11056112    962.3836         Sub-Saharan Africa
## 5565  2022-09-16       NA   31732128   2084.6350         Sub-Saharan Africa
## 5566  2022-09-16 57.60500   16106756    937.4460         Sub-Saharan Africa
## 5567  2022-09-16 59.74100   22963946   1240.1620         Sub-Saharan Africa
## 5568  2022-09-16 63.12400   28481947   1793.1809         Sub-Saharan Africa
## 5569  2022-09-16 57.00200   19278850   1040.6341         Sub-Saharan Africa
## 5570  2022-09-16 57.15800   19756929   1056.0709         Sub-Saharan Africa
## 5571  2022-09-16 62.77200   27849203   1774.0748         Sub-Saharan Africa
## 5572  2022-09-16 64.07400   30417858   2053.5867         Sub-Saharan Africa
## 5573  2022-09-16 63.46300   29121464   1896.3667         Sub-Saharan Africa
## 5574  2022-09-16 63.78000   29767108   1970.2608         Sub-Saharan Africa
## 5575  2022-09-16 59.23400   22379057   1219.5621         Sub-Saharan Africa
## 5576  2022-09-16 62.41600   27224480   1777.0967         Sub-Saharan Africa
## 5577  2022-09-16 56.77600   14773274    891.3048         Sub-Saharan Africa
## 5578  2022-09-16 51.11300   10199164    960.0750         Sub-Saharan Africa
## 5579  2022-09-16 57.46200   15653345    919.9808         Sub-Saharan Africa
## 5580  2022-09-16 57.18200   15207360    911.5963         Sub-Saharan Africa
## 5581  2022-09-16       NA      33420          NA      Europe & Central Asia
## 5582  2022-09-16       NA      33585          NA      Europe & Central Asia
## 5583  2022-09-16       NA      33570          NA      Europe & Central Asia
## 5584  2022-09-16       NA      33222          NA      Europe & Central Asia
## 5585  2022-09-16       NA      33524          NA      Europe & Central Asia
## 5586  2022-09-16       NA      28680          NA      Europe & Central Asia
## 5587  2022-09-16       NA      33562          NA      Europe & Central Asia
## 5588  2022-09-16       NA      28688          NA      Europe & Central Asia
## 5589  2022-09-16       NA      28844          NA      Europe & Central Asia
## 5590  2022-09-16       NA      29404          NA      Europe & Central Asia
## 5591  2022-09-16       NA      28605          NA      Europe & Central Asia
## 5592  2022-09-16       NA      29096          NA      Europe & Central Asia
## 5593  2022-09-16       NA      28970          NA      Europe & Central Asia
## 5594  2022-09-16       NA      23808          NA      Europe & Central Asia
## 5595  2022-09-16       NA      24307          NA      Europe & Central Asia
## 5596  2022-09-16       NA      24889          NA      Europe & Central Asia
## 5597  2022-09-16       NA      32930          NA      Europe & Central Asia
## 5598  2022-09-16       NA      26079          NA      Europe & Central Asia
## 5599  2022-09-16       NA      26631          NA      Europe & Central Asia
## 5600  2022-09-16       NA      33608          NA      Europe & Central Asia
## 5601  2022-09-16       NA      25478          NA      Europe & Central Asia
## 5602  2022-09-16       NA      29114          NA      Europe & Central Asia
## 5603  2022-09-16       NA      29164          NA      Europe & Central Asia
## 5604  2022-09-16       NA      29187          NA      Europe & Central Asia
## 5605  2022-09-16       NA      33653          NA      Europe & Central Asia
## 5606  2022-09-16       NA      33738          NA      Europe & Central Asia
## 5607  2022-09-16       NA      30179          NA      Europe & Central Asia
## 5608  2022-09-16       NA      30228          NA      Europe & Central Asia
## 5609  2022-09-16       NA      30224          NA      Europe & Central Asia
## 5610  2022-09-16       NA      30172          NA      Europe & Central Asia
## 5611  2022-09-16       NA      30068          NA      Europe & Central Asia
## 5612  2022-09-16       NA      29902          NA      Europe & Central Asia
## 5613  2022-09-16       NA      29698          NA      Europe & Central Asia
## 5614  2022-09-16       NA      29481          NA      Europe & Central Asia
## 5615  2022-09-16       NA      33694          NA      Europe & Central Asia
## 5616  2022-09-16       NA      29151          NA      Europe & Central Asia
## 5617  2022-09-16       NA      31604          NA      Europe & Central Asia
## 5618  2022-09-16       NA      32097          NA      Europe & Central Asia
## 5619  2022-09-16       NA      29149          NA      Europe & Central Asia
## 5620  2022-09-16       NA      29021          NA      Europe & Central Asia
## 5621  2022-09-16       NA      29886          NA      Europe & Central Asia
## 5622  2022-09-16       NA      33723          NA      Europe & Central Asia
## 5623  2022-09-16       NA      33715          NA      Europe & Central Asia
## 5624  2022-09-16       NA      33706          NA      Europe & Central Asia
## 5625  2022-09-16       NA      33691          NA      Europe & Central Asia
## 5626  2022-09-16       NA      33691          NA      Europe & Central Asia
## 5627  2022-09-16       NA      29945          NA      Europe & Central Asia
## 5628  2022-09-16       NA      29284          NA      Europe & Central Asia
## 5629  2022-09-16       NA      31081          NA      Europe & Central Asia
## 5630  2022-09-16       NA      28601          NA      Europe & Central Asia
## 5631  2022-09-16       NA      29007          NA      Europe & Central Asia
## 5632  2022-09-16       NA      32556          NA      Europe & Central Asia
## 5633  2022-09-16       NA      23420          NA      Europe & Central Asia
## 5634  2022-09-16       NA      29657          NA      Europe & Central Asia
## 5635  2022-09-16       NA      30526          NA      Europe & Central Asia
## 5636  2022-09-16       NA      30062          NA      Europe & Central Asia
## 5637  2022-09-16       NA      27693          NA      Europe & Central Asia
## 5638  2022-09-16       NA      28165          NA      Europe & Central Asia
## 5639  2022-09-16       NA      29353          NA      Europe & Central Asia
## 5640  2022-09-16       NA      27172          NA      Europe & Central Asia
## 5641  2022-09-16       NA      33726          NA      Europe & Central Asia
## 5642  2022-09-16       NA      33742          NA      Europe & Central Asia
## 5643  2022-09-16 69.83746    8613651   7980.6048      Europe & Central Asia
## 5644  2022-09-16 69.63800    8550333   7549.4074      Europe & Central Asia
## 5645  2022-09-16 70.30256    8740765   8909.0845      Europe & Central Asia
## 5646  2022-09-16 70.58929    8772764   9903.0474      Europe & Central Asia
## 5647  2022-09-16 70.90363    8792806  10726.8084      Europe & Central Asia
## 5648  2022-09-16 73.03107    9429959  15078.2926      Europe & Central Asia
## 5649  2022-09-16 70.05246    8684088   8364.6631      Europe & Central Asia
## 5650  2022-09-16 73.64715    9642505  15333.0272      Europe & Central Asia
## 5651  2022-09-16 69.42944    8510429   6847.4691      Europe & Central Asia
## 5652  2022-09-16 74.27900    9789513  14699.7145      Europe & Central Asia
## 5653  2022-09-16 68.16390    8331725   5030.7436      Europe & Central Asia
## 5654  2022-09-16 68.54863    8398050   5650.0178      Europe & Central Asia
## 5655  2022-09-16 78.84146   10928070  21104.9243      Europe & Central Asia
## 5656  2022-09-16 69.18571    8479625   6281.2945      Europe & Central Asia
## 5657  2022-09-16 77.98780   10761698  18013.2193      Europe & Central Asia
## 5658  2022-09-16 77.88780   10805808  18642.8829      Europe & Central Asia
## 5659  2022-09-16 73.96949    9729350  14960.0573      Europe & Central Asia
## 5660  2022-09-16 72.76166    9308479  14242.9073      Europe & Central Asia
## 5661  2022-09-16 81.78780   10732882  18647.4957      Europe & Central Asia
## 5662  2022-09-16 73.32937    9548258  15380.2290      Europe & Central Asia
## 5663  2022-09-16 79.23902   10987314  22185.6168      Europe & Central Asia
## 5664  2022-09-16 79.43902   11020362  23369.3530      Europe & Central Asia
## 5665  2022-09-16 79.43902   11048473  24073.0005      Europe & Central Asia
## 5666  2022-09-16 79.93902   11077841  23928.7094      Europe & Central Asia
## 5667  2022-09-16 80.18780   11107017  22839.4465      Europe & Central Asia
## 5668  2022-09-16 68.89227    8448233   5636.9458      Europe & Central Asia
## 5669  2022-09-16 71.53500    8888628  12605.8585      Europe & Central Asia
## 5670  2022-09-16 71.81485    8929086  13564.2326      Europe & Central Asia
## 5671  2022-09-16 72.06463    8962022  12644.2945      Europe & Central Asia
## 5672  2022-09-16 78.38780   10862132  19312.4705      Europe & Central Asia
## 5673  2022-09-16 78.64146   10902022  19996.6385      Europe & Central Asia
## 5674  2022-09-16 76.68780   10089498  15691.0147      Europe & Central Asia
## 5675  2022-09-16 79.03902   10955141  22118.2517      Europe & Central Asia
## 5676  2022-09-16 81.08780   10700556  17323.8228      Europe & Central Asia
## 5677  2022-09-16       NA   10664568  18831.2875      Europe & Central Asia
## 5678  2022-09-16 77.39024   10460415  15461.6169      Europe & Central Asia
## 5679  2022-09-16 77.63902   10512922  15692.0813      Europe & Central Asia
## 5680  2022-09-16 77.58537   10562153  15946.8934      Europe & Central Asia
## 5681  2022-09-16 74.56585    9846627  14456.8161      Europe & Central Asia
## 5682  2022-09-16 74.82912    9895801  14674.1992      Europe & Central Asia
## 5683  2022-09-16 75.07851    9934300  14984.1615      Europe & Central Asia
## 5684  2022-09-16 75.32971    9967213  15011.9928      Europe & Central Asia
## 5685  2022-09-16 72.29371    9046541  13323.6798      Europe & Central Asia
## 5686  2022-09-16 72.51956    9188150  14017.1882      Europe & Central Asia
## 5687  2022-09-16 81.38780   10775971  18070.7807      Europe & Central Asia
## 5688  2022-09-16 81.63902   10721582  19003.8290      Europe & Central Asia
## 5689  2022-09-16 77.13659   10319927  15816.2175      Europe & Central Asia
## 5690  2022-09-16 77.38293   10399061  15805.7314      Europe & Central Asia
## 5691  2022-09-16 78.13659   10661259  16979.5500      Europe & Central Asia
## 5692  2022-09-16 77.83902   10720509  17543.3899      Europe & Central Asia
## 5693  2022-09-16 81.28537   10965211  17796.2577      Europe & Central Asia
## 5694  2022-09-16 77.68537   10608800  16331.1885      Europe & Central Asia
## 5695  2022-09-16 81.03659   10820883  18083.8779      Europe & Central Asia
## 5696  2022-09-16 75.89124   10036983  15195.6767      Europe & Central Asia
## 5697  2022-09-16 81.28780   10754679  18304.3077      Europe & Central Asia
## 5698  2022-09-16 81.38537   10892413  18000.4185      Europe & Central Asia
## 5699  2022-09-16 80.73171   11104899  19400.8077      Europe & Central Asia
## 5700  2022-09-16 71.22656    8831036  11517.8384      Europe & Central Asia
## 5701  2022-09-16 80.63415   11045011  18123.6711      Europe & Central Asia
## 5702  2022-09-16 76.93902   10196792  15525.9087      Europe & Central Asia
## 5703  2022-09-16 75.59815   10000595  14623.9143      Europe & Central Asia
## 5704  2022-09-16 80.38780   11121341  21560.3534      Europe & Central Asia
## 5705  2022-09-16 67.19634      56609  31475.8540      Europe & Central Asia
## 5706  2022-09-16 68.59268      56911  34953.9857      Europe & Central Asia
## 5707  2022-09-16 64.65415      54100  27705.0909      Europe & Central Asia
## 5708  2022-09-16 68.11488      56765  32779.9156      Europe & Central Asia
## 5709  2022-09-16 64.66756      55300  30528.8333      Europe & Central Asia
## 5710  2022-09-16 65.06829      55600  26805.5776      Europe & Central Asia
## 5711  2022-09-16 65.03171      55500  26823.4063      Europe & Central Asia
## 5712  2022-09-16 64.58244      54800  28883.8482      Europe & Central Asia
## 5713  2022-09-16 63.83366      53200  24931.5228      Europe & Central Asia
## 5714  2022-09-16 69.85415      56890  42994.9238      Europe & Central Asia
## 5715  2022-09-16 64.24878      53500  26551.2682      Europe & Central Asia
## 5716  2022-09-16 66.22244      56200  31614.6517      Europe & Central Asia
## 5717  2022-09-16 66.70927      56350  31930.6286      Europe & Central Asia
## 5718  2022-09-16       NA      32500          NA      Europe & Central Asia
## 5719  2022-09-16       NA      33700          NA      Europe & Central Asia
## 5720  2022-09-16       NA      35000          NA      Europe & Central Asia
## 5721  2022-09-16 68.42732      56935  36681.8438      Europe & Central Asia
## 5722  2022-09-16 68.66659      56774  38829.5768      Europe & Central Asia
## 5723  2022-09-16 63.07488      51000  26758.5836      Europe & Central Asia
## 5724  2022-09-16 63.19268      51500  25327.6348      Europe & Central Asia
## 5725  2022-09-16 63.30000      52100  25901.5009      Europe & Central Asia
## 5726  2022-09-16 63.46659      52700  24280.2834      Europe & Central Asia
## 5727  2022-09-16 65.79805      56000  27117.4015      Europe & Central Asia
## 5728  2022-09-16 66.35902      56100  29570.9931      Europe & Central Asia
## 5729  2022-09-16       NA      48300  17731.0935      Europe & Central Asia
## 5730  2022-09-16       NA      49000  18667.3322      Europe & Central Asia
## 5731  2022-09-16       NA      49500  19533.2191      Europe & Central Asia
## 5732  2022-09-16       NA      49600  19619.8146      Europe & Central Asia
## 5733  2022-09-16       NA      49700  20747.1713      Europe & Central Asia
## 5734  2022-09-16       NA      49400  22714.6628      Europe & Central Asia
## 5735  2022-09-16 63.41463      49200  24179.2314      Europe & Central Asia
## 5736  2022-09-16 69.37268      56555  39896.9169      Europe & Central Asia
## 5737  2022-09-16 70.01512      56328  42527.7111      Europe & Central Asia
## 5738  2022-09-16       NA      56653          NA      Europe & Central Asia
## 5739  2022-09-16 65.76732      55900  26772.6417      Europe & Central Asia
## 5740  2022-09-16 70.53195      56323  42899.7888      Europe & Central Asia
## 5741  2022-09-16 66.15707      56100  29169.0769      Europe & Central Asia
## 5742  2022-09-16       NA      46400  15375.2027      Europe & Central Asia
## 5743  2022-09-16 70.55000      56810  43655.7459      Europe & Central Asia
## 5744  2022-09-16 71.57341      56483  43338.4290      Europe & Central Asia
## 5745  2022-09-16 71.98561      56295  45545.1903      Europe & Central Asia
## 5746  2022-09-16 71.97732      56114  44536.4013      Europe & Central Asia
## 5747  2022-09-16 71.82512      56186  46561.8316      Europe & Central Asia
## 5748  2022-09-16 65.19610      55300  25544.3258      Europe & Central Asia
## 5749  2022-09-16 63.95488      49600  25150.0149      Europe & Central Asia
## 5750  2022-09-16 63.44976      50200  27005.3541      Europe & Central Asia
## 5751  2022-09-16 65.64415      55800  26416.5440      Europe & Central Asia
## 5752  2022-09-16       NA      41900          NA      Europe & Central Asia
## 5753  2022-09-16       NA      47200  17088.7022      Europe & Central Asia
## 5754  2022-09-16 70.29195      56905  43198.0773      Europe & Central Asia
## 5755  2022-09-16       NA      44900          NA      Europe & Central Asia
## 5756  2022-09-16       NA      40500          NA      Europe & Central Asia
## 5757  2022-09-16       NA      36400          NA      Europe & Central Asia
## 5758  2022-09-16       NA      37600          NA      Europe & Central Asia
## 5759  2022-09-16       NA      39200          NA      Europe & Central Asia
## 5760  2022-09-16 72.04756      56225  47908.1067      Europe & Central Asia
## 5761  2022-09-16 71.40463      56367  47957.7937      Europe & Central Asia
## 5762  2022-09-16 71.57976      56171  46598.8233      Europe & Central Asia
## 5763  2022-09-16       NA      43400          NA      Europe & Central Asia
## 5764  2022-09-16 65.58537      55200  24303.9236      Europe & Central Asia
## 5765  2022-09-16 65.90098      55500  25604.6223      Europe & Central Asia
## 5766  2022-09-16 71.88659      56023  47013.0349      Europe & Central Asia
## 5767  2022-09-16 64.78900      95012          NA  Latin America & Caribbean
## 5768  2022-09-16 65.88000      94212          NA  Latin America & Caribbean
## 5769  2022-09-16 64.48400      94936          NA  Latin America & Caribbean
## 5770  2022-09-16 65.35200      94723          NA  Latin America & Caribbean
## 5771  2022-09-16 65.61900      94476          NA  Latin America & Caribbean
## 5772  2022-09-16 63.45100      93409          NA  Latin America & Caribbean
## 5773  2022-09-16 62.23100      89927          NA  Latin America & Caribbean
## 5774  2022-09-16 62.65700      91324          NA  Latin America & Caribbean
## 5775  2022-09-16 68.01200      90610   3656.8468  Latin America & Caribbean
## 5776  2022-09-16 68.12800      93132   3704.5538  Latin America & Caribbean
## 5777  2022-09-16 67.72300      88603   3702.9764  Latin America & Caribbean
## 5778  2022-09-16 65.07700      94929          NA  Latin America & Caribbean
## 5779  2022-09-16 72.80500     103242   6808.7005  Latin America & Caribbean
## 5780  2022-09-16 63.06400      92481          NA  Latin America & Caribbean
## 5781  2022-09-16 68.23400      96020   3723.6548  Latin America & Caribbean
## 5782  2022-09-16 72.64800     102837   6976.7168  Latin America & Caribbean
## 5783  2022-09-16 67.87900      89032   3665.4261  Latin America & Caribbean
## 5784  2022-09-16 63.81700      94122          NA  Latin America & Caribbean
## 5785  2022-09-16 67.54500      89104   3486.8212  Latin America & Caribbean
## 5786  2022-09-16 73.08800     104346   7578.3094  Latin America & Caribbean
## 5787  2022-09-16 72.96000     105787   8132.7807  Latin America & Caribbean
## 5788  2022-09-16 72.86700     106227   8057.6865  Latin America & Caribbean
## 5789  2022-09-16 64.16100      94634          NA  Latin America & Caribbean
## 5790  2022-09-16 73.03800     105457   8735.9640  Latin America & Caribbean
## 5791  2022-09-16 66.64900      93190          NA  Latin America & Caribbean
## 5792  2022-09-16 66.89500      92494          NA  Latin America & Caribbean
## 5793  2022-09-16 72.92900     103636   7015.9627  Latin America & Caribbean
## 5794  2022-09-16 73.02300     104003   7652.8510  Latin America & Caribbean
## 5795  2022-09-16 72.38800     110874   9742.6037  Latin America & Caribbean
## 5796  2022-09-16 73.12300     104658   8558.8287  Latin America & Caribbean
## 5797  2022-09-16 72.39700     112002  10133.1322  Latin America & Caribbean
## 5798  2022-09-16 72.42600     112519   8699.1114  Latin America & Caribbean
## 5799  2022-09-16       NA     113015   9121.3761  Latin America & Caribbean
## 5800  2022-09-16 71.35600     100286   5205.8239  Latin America & Caribbean
## 5801  2022-09-16 71.67300     101003   5398.2753  Latin America & Caribbean
## 5802  2022-09-16 68.34100      98472   3760.5027  Latin America & Caribbean
## 5803  2022-09-16 68.46200      99953   3926.3187  Latin America & Caribbean
## 5804  2022-09-16 68.61200     100183   4199.1263  Latin America & Caribbean
## 5805  2022-09-16 68.79800      99425   4616.0645  Latin America & Caribbean
## 5806  2022-09-16 67.13000      91469          NA  Latin America & Caribbean
## 5807  2022-09-16 67.34700      90219   3269.1118  Latin America & Caribbean
## 5808  2022-09-16 69.59800      96328   5294.9325  Latin America & Caribbean
## 5809  2022-09-16 72.38400     111449  10115.0641  Latin America & Caribbean
## 5810  2022-09-16 70.29500      97161   5276.9712  Latin America & Caribbean
## 5811  2022-09-16 70.65900      98234   5117.0943  Latin America & Caribbean
## 5812  2022-09-16 71.01500      99345   5145.5603  Latin America & Caribbean
## 5813  2022-09-16 72.45500     102429   6678.0852  Latin America & Caribbean
## 5814  2022-09-16 72.66900     107452   7934.0414  Latin America & Caribbean
## 5815  2022-09-16 71.96400     101567   5637.5455  Latin America & Caribbean
## 5816  2022-09-16 72.22600     102023   6271.9956  Latin America & Caribbean
## 5817  2022-09-16 72.44500     109603   9096.5387  Latin America & Caribbean
## 5818  2022-09-16 72.40800     110263   9380.2322  Latin America & Caribbean
## 5819  2022-09-16 72.57900     108172   8066.5527  Latin America & Caribbean
## 5820  2022-09-16 72.50300     108900   8601.0810  Latin America & Caribbean
## 5821  2022-09-16 73.09600     105183   8676.5075  Latin America & Caribbean
## 5822  2022-09-16 66.39500      93661          NA  Latin America & Caribbean
## 5823  2022-09-16 69.93700      96462   5360.8388  Latin America & Caribbean
## 5824  2022-09-16 73.12500     104938   8194.9508  Latin America & Caribbean
## 5825  2022-09-16 66.13900      93984          NA  Latin America & Caribbean
## 5826  2022-09-16 69.29200      96932   5058.9431  Latin America & Caribbean
## 5827  2022-09-16 72.76800     106786   8076.8232  Latin America & Caribbean
## 5828  2022-09-16 69.02400      98126   4815.9343  Latin America & Caribbean
## 5829  2022-09-16 71.68700     127525          NA        East Asia & Pacific
## 5830  2022-09-16 76.06500     157723  30704.9533        East Asia & Pacific
## 5831  2022-09-16 69.26200     104134          NA        East Asia & Pacific
## 5832  2022-09-16 71.92500     130480          NA        East Asia & Pacific
## 5833  2022-09-16 75.72600     157173  30543.8238        East Asia & Pacific
## 5834  2022-09-16 71.45000     124674          NA        East Asia & Pacific
## 5835  2022-09-16 70.43100     113953          NA        East Asia & Pacific
## 5836  2022-09-16 70.70100     116576          NA        East Asia & Pacific
## 5837  2022-09-16 74.64600     153955          NA        East Asia & Pacific
## 5838  2022-09-16 75.01100     155323          NA        East Asia & Pacific
## 5839  2022-09-16 75.37300     156395          NA        East Asia & Pacific
## 5840  2022-09-16 60.97000      66733          NA        East Asia & Pacific
## 5841  2022-09-16 61.48100      68065          NA        East Asia & Pacific
## 5842  2022-09-16 76.38700     158094  32622.1337        East Asia & Pacific
## 5843  2022-09-16 76.68700     158406  33743.7414        East Asia & Pacific
## 5844  2022-09-16 76.96600     158649  32461.4485        East Asia & Pacific
## 5845  2022-09-16 69.56700     106482          NA        East Asia & Pacific
## 5846  2022-09-16 69.86400     108901          NA        East Asia & Pacific
## 5847  2022-09-16 70.15100     111403          NA        East Asia & Pacific
## 5848  2022-09-16 78.17300     159690  34067.1938        East Asia & Pacific
## 5849  2022-09-16 74.28300     152274          NA        East Asia & Pacific
## 5850  2022-09-16 66.07400      85729          NA        East Asia & Pacific
## 5851  2022-09-16 66.47300      87580          NA        East Asia & Pacific
## 5852  2022-09-16 66.86000      89459          NA        East Asia & Pacific
## 5853  2022-09-16 67.23500      91378          NA        East Asia & Pacific
## 5854  2022-09-16 67.59900      93351          NA        East Asia & Pacific
## 5855  2022-09-16 67.95100      95380          NA        East Asia & Pacific
## 5856  2022-09-16 68.29200      97477          NA        East Asia & Pacific
## 5857  2022-09-16 68.62400      99629          NA        East Asia & Pacific
## 5858  2022-09-16 77.22700     158848  32653.3079        East Asia & Pacific
## 5859  2022-09-16 80.07400     167295  35666.3162        East Asia & Pacific
## 5860  2022-09-16 80.27700     168783  31162.6760        East Asia & Pacific
## 5861  2022-09-16       NA     170184          NA        East Asia & Pacific
## 5862  2022-09-16 73.93000     150303          NA        East Asia & Pacific
## 5863  2022-09-16 77.94100     159439  34094.3488        East Asia & Pacific
## 5864  2022-09-16 70.96000     119228          NA        East Asia & Pacific
## 5865  2022-09-16 71.20900     121923          NA        East Asia & Pacific
## 5866  2022-09-16 78.40800     159990  34728.8937        East Asia & Pacific
## 5867  2022-09-16 78.64900     160415  35222.3885        East Asia & Pacific
## 5868  2022-09-16 78.89500     161007  35722.1143        East Asia & Pacific
## 5869  2022-09-16 72.16700     133553          NA        East Asia & Pacific
## 5870  2022-09-16 72.42000     136693          NA        East Asia & Pacific
## 5871  2022-09-16 68.94700     101837          NA        East Asia & Pacific
## 5872  2022-09-16 72.96700     142806          NA        East Asia & Pacific
## 5873  2022-09-16 73.26700     145559          NA        East Asia & Pacific
## 5874  2022-09-16 73.58900     148061          NA        East Asia & Pacific
## 5875  2022-09-16 77.71000     159232  33383.1269        East Asia & Pacific
## 5876  2022-09-16 64.80500      80212          NA        East Asia & Pacific
## 5877  2022-09-16 65.66200      83875          NA        East Asia & Pacific
## 5878  2022-09-16 61.98600      69605          NA        East Asia & Pacific
## 5879  2022-09-16 62.48200      71289          NA        East Asia & Pacific
## 5880  2022-09-16 62.96800      73047          NA        East Asia & Pacific
## 5881  2022-09-16 63.44300      74828          NA        East Asia & Pacific
## 5882  2022-09-16 63.90700      76611          NA        East Asia & Pacific
## 5883  2022-09-16 77.47400     159037  33278.0733        East Asia & Pacific
## 5884  2022-09-16 64.36100      78412          NA        East Asia & Pacific
## 5885  2022-09-16 79.63100     164281  35678.2833        East Asia & Pacific
## 5886  2022-09-16 65.23900      82040          NA        East Asia & Pacific
## 5887  2022-09-16 79.14400     161851  35829.2504        East Asia & Pacific
## 5888  2022-09-16 79.39100     162948  35652.8048        East Asia & Pacific
## 5889  2022-09-16 79.85900     165770  35103.1618        East Asia & Pacific
## 5890  2022-09-16 72.68500     139813          NA        East Asia & Pacific
## 5891  2022-09-16 50.03200    4910790   2125.3834  Latin America & Caribbean
## 5892  2022-09-16 49.43400    4774984   2071.6407  Latin America & Caribbean
## 5893  2022-09-16 47.21900    4251911   1878.5456  Latin America & Caribbean
## 5894  2022-09-16 54.67600    5994300   2810.1133  Latin America & Caribbean
## 5895  2022-09-16 48.85600    4640795   2042.4552  Latin America & Caribbean
## 5896  2022-09-16 55.14000    6131151   2800.9637  Latin America & Caribbean
## 5897  2022-09-16 55.57700    6269983   2941.2770  Latin America & Caribbean
## 5898  2022-09-16 56.00000    6412667   3100.4127  Latin America & Caribbean
## 5899  2022-09-16 58.66100    7462585   2875.0960  Latin America & Caribbean
## 5900  2022-09-16 63.35200    9544055   2817.2311  Latin America & Caribbean
## 5901  2022-09-16 46.70200    4128880   1854.7933  Latin America & Caribbean
## 5902  2022-09-16 53.65200    5723759   2590.8354  Latin America & Caribbean
## 5903  2022-09-16 62.79900    9296814   2758.6788  Latin America & Caribbean
## 5904  2022-09-16 65.67800   10536942   2981.1209  Latin America & Caribbean
## 5905  2022-09-16 47.75000    4378604   1888.7033  Latin America & Caribbean
## 5906  2022-09-16 48.29500    4508444   2009.3223  Latin America & Caribbean
## 5907  2022-09-16 54.18100    5858466   2702.9543  Latin America & Caribbean
## 5908  2022-09-16 67.84900   11589761   3195.3943  Latin America & Caribbean
## 5909  2022-09-16 68.30400   11871565   3192.3086  Latin America & Caribbean
## 5910  2022-09-16 68.71700   12147518   3239.5672  Latin America & Caribbean
## 5911  2022-09-16 67.35100   11311078   3160.0795  Latin America & Caribbean
## 5912  2022-09-16 51.26700    5184095   2279.8722  Latin America & Caribbean
## 5913  2022-09-16 51.88900    5320100   2326.8234  Latin America & Caribbean
## 5914  2022-09-16 63.92100    9790619   2854.1330  Latin America & Caribbean
## 5915  2022-09-16 64.50200   10037522   2896.2234  Latin America & Caribbean
## 5916  2022-09-16 65.09000   10286786   2965.8918  Latin America & Caribbean
## 5917  2022-09-16 72.23600   14781942   3731.6758  Latin America & Caribbean
## 5918  2022-09-16 72.59600   15043981   3802.1538  Latin America & Caribbean
## 5919  2022-09-16 72.93500   15306316   3903.0596  Latin America & Caribbean
## 5920  2022-09-16 73.25000   15567419   3994.6369  Latin America & Caribbean
## 5921  2022-09-16 73.54100   15827690   4034.1585  Latin America & Caribbean
## 5922  2022-09-16 73.81000   16087418   4091.2680  Latin America & Caribbean
## 5923  2022-09-16 74.06300   16346950   4160.0711  Latin America & Caribbean
## 5924  2022-09-16 74.30200   16604026   4254.0352  Latin America & Caribbean
## 5925  2022-09-16 74.52900   16858333   4126.2054  Latin America & Caribbean
## 5926  2022-09-16       NA   17109746   4371.6157  Latin America & Caribbean
## 5927  2022-09-16 52.50100    5455197   2398.7233  Latin America & Caribbean
## 5928  2022-09-16 53.09100    5589563   2471.7801  Latin America & Caribbean
## 5929  2022-09-16 71.86100   14521515   3688.8662  Latin America & Caribbean
## 5930  2022-09-16 58.18300    7262658   3032.2337  Latin America & Caribbean
## 5931  2022-09-16 71.10800   14000190   3570.3028  Latin America & Caribbean
## 5932  2022-09-16 59.15400    7669863   2811.2912  Latin America & Caribbean
## 5933  2022-09-16 59.66100    7884034   2718.2571  Latin America & Caribbean
## 5934  2022-09-16 60.17600    8104921   2647.9577  Latin America & Caribbean
## 5935  2022-09-16 60.69400    8332446   2666.9335  Latin America & Caribbean
## 5936  2022-09-16 61.21400    8566331   2695.0918  Latin America & Caribbean
## 5937  2022-09-16 61.73500    8805995   2725.1068  Latin America & Caribbean
## 5938  2022-09-16 62.26100    9050115   2733.8666  Latin America & Caribbean
## 5939  2022-09-16 69.43700   12682108   3282.3211  Latin America & Caribbean
## 5940  2022-09-16 69.76200   12948292   3320.1641  Latin America & Caribbean
## 5941  2022-09-16 70.08200   13213330   3427.6783  Latin America & Caribbean
## 5942  2022-09-16 70.40900   13477017   3573.5996  Latin America & Caribbean
## 5943  2022-09-16 70.75000   13739299   3620.8305  Latin America & Caribbean
## 5944  2022-09-16 57.71900    7071186   3228.3018  Latin America & Caribbean
## 5945  2022-09-16 66.25700   10788362   3038.7135  Latin America & Caribbean
## 5946  2022-09-16 66.81700   11046215   3115.9774  Latin America & Caribbean
## 5947  2022-09-16 50.64600    5047435   2152.8780  Latin America & Caribbean
## 5948  2022-09-16 56.41800    6561919   3181.2876  Latin America & Caribbean
## 5949  2022-09-16 56.84000    6720582   3252.5906  Latin America & Caribbean
## 5950  2022-09-16 57.27200    6890346   3291.7370  Latin America & Caribbean
## 5951  2022-09-16 71.48100   14259687   3606.4305  Latin America & Caribbean
## 5952  2022-09-16 69.09200   12415334   3250.8411  Latin America & Caribbean
## 5953  2022-09-16 55.61400    9738796    696.0313         Sub-Saharan Africa
## 5954  2022-09-16 47.47400    5801323    527.2971         Sub-Saharan Africa
## 5955  2022-09-16 48.39900    5982484    543.5848         Sub-Saharan Africa
## 5956  2022-09-16 46.50300    5629420    526.0399         Sub-Saharan Africa
## 5957  2022-09-16 40.08200    4702371          NA         Sub-Saharan Africa
## 5958  2022-09-16 43.64000    5195443          NA         Sub-Saharan Africa
## 5959  2022-09-16 51.45600    7860772    618.8469         Sub-Saharan Africa
## 5960  2022-09-16 51.29500    8054745    626.9663         Sub-Saharan Africa
## 5961  2022-09-16 51.20300    8240735    628.1551         Sub-Saharan Africa
## 5962  2022-09-16 49.24700    6167480    548.3893         Sub-Saharan Africa
## 5963  2022-09-16 51.48400    8586077    657.2218         Sub-Saharan Africa
## 5964  2022-09-16 51.90100    8753097    652.7307         Sub-Saharan Africa
## 5965  2022-09-16 52.49900    8925729    655.0855         Sub-Saharan Africa
## 5966  2022-09-16 51.25500    8417082    637.4932         Sub-Saharan Africa
## 5967  2022-09-16 41.30000    4871446          NA         Sub-Saharan Africa
## 5968  2022-09-16 42.00200    4969595          NA         Sub-Saharan Africa
## 5969  2022-09-16 42.78300    5077073          NA         Sub-Saharan Africa
## 5970  2022-09-16 54.86400    9518159    683.9001         Sub-Saharan Africa
## 5971  2022-09-16 35.89000    3870204          NA         Sub-Saharan Africa
## 5972  2022-09-16 36.04800    3941046          NA         Sub-Saharan Africa
## 5973  2022-09-16 36.22200    4013050          NA         Sub-Saharan Africa
## 5974  2022-09-16 36.42100    4084601          NA         Sub-Saharan Africa
## 5975  2022-09-16 36.65500    4154606          NA         Sub-Saharan Africa
## 5976  2022-09-16 36.93200    4223056          NA         Sub-Saharan Africa
## 5977  2022-09-16 37.25500    4290544          NA         Sub-Saharan Africa
## 5978  2022-09-16 37.62400    4357357          NA         Sub-Saharan Africa
## 5979  2022-09-16 40.66700    4782491          NA         Sub-Saharan Africa
## 5980  2022-09-16 38.50200    4491248          NA         Sub-Saharan Africa
## 5981  2022-09-16 39.00000    4559239          NA         Sub-Saharan Africa
## 5982  2022-09-16 39.52700    4628881          NA         Sub-Saharan Africa
## 5983  2022-09-16 61.60200   12771246    945.5074         Sub-Saharan Africa
## 5984  2022-09-16 61.96200   13132792    962.1163         Sub-Saharan Africa
## 5985  2022-09-16 44.55800    5326369          NA         Sub-Saharan Africa
## 5986  2022-09-16 45.52000    5470716          NA         Sub-Saharan Africa
## 5987  2022-09-16       NA   13497237    965.3755         Sub-Saharan Africa
## 5988  2022-09-16 56.86100   10192168    689.2567         Sub-Saharan Africa
## 5989  2022-09-16 57.38700   10420459    711.9909         Sub-Saharan Africa
## 5990  2022-09-16 57.90500   10652032    737.7131         Sub-Saharan Africa
## 5991  2022-09-16 49.98700    6352282    555.4583         Sub-Saharan Africa
## 5992  2022-09-16 38.04100    4424030          NA         Sub-Saharan Africa
## 5993  2022-09-16 51.06600    6716032    556.7379         Sub-Saharan Africa
## 5994  2022-09-16 51.41300    6897171    569.4615         Sub-Saharan Africa
## 5995  2022-09-16 51.64000    7081119    576.6894         Sub-Saharan Africa
## 5996  2022-09-16 51.74400    7269631    587.6179         Sub-Saharan Africa
## 5997  2022-09-16 51.72700    7463782    597.8676         Sub-Saharan Africa
## 5998  2022-09-16 51.61600    7662071    612.5726         Sub-Saharan Africa
## 5999  2022-09-16 35.74000    3801711          NA         Sub-Saharan Africa
## 6000  2022-09-16 56.27900    9964470    672.6307         Sub-Saharan Africa
## 6001  2022-09-16 59.01600   11150970    759.5879         Sub-Saharan Africa
## 6002  2022-09-16 53.23800    9109585    661.1025         Sub-Saharan Africa
## 6003  2022-09-16 34.89000    3494164          NA         Sub-Saharan Africa
## 6004  2022-09-16 58.44700   10892821    749.8701         Sub-Saharan Africa
## 6005  2022-09-16 35.26600    3611428          NA         Sub-Saharan Africa
## 6006  2022-09-16 54.05200    9307421    654.7477         Sub-Saharan Africa
## 6007  2022-09-16 35.58800    3735912          NA         Sub-Saharan Africa
## 6008  2022-09-16 35.08600    3552068          NA         Sub-Saharan Africa
## 6009  2022-09-16 60.70600   12067516    890.7887         Sub-Saharan Africa
## 6010  2022-09-16 61.18500   12414292    920.9643         Sub-Saharan Africa
## 6011  2022-09-16 59.59800   11432096    769.2555         Sub-Saharan Africa
## 6012  2022-09-16 60.17000   11738434    830.2462         Sub-Saharan Africa
## 6013  2022-09-16 35.43200    3672560          NA         Sub-Saharan Africa
## 6014  2022-09-16 50.59300    6534936    554.0437         Sub-Saharan Africa
## 6015  2022-09-16 37.75200     622754          NA         Sub-Saharan Africa
## 6016  2022-09-16 38.04200     628877          NA         Sub-Saharan Africa
## 6017  2022-09-16 38.34900     635008          NA         Sub-Saharan Africa
## 6018  2022-09-16 41.27600     732516    508.5939         Sub-Saharan Africa
## 6019  2022-09-16 41.59700     746178    504.8234         Sub-Saharan Africa
## 6020  2022-09-16 41.92500     757668    519.8348         Sub-Saharan Africa
## 6021  2022-09-16 42.61200     770415    578.5985         Sub-Saharan Africa
## 6022  2022-09-16 42.97000     771732    536.1960         Sub-Saharan Africa
## 6023  2022-09-16 48.34800    1066345    684.6529         Sub-Saharan Africa
## 6024  2022-09-16 40.96100     718359    487.5371         Sub-Saharan Africa
## 6025  2022-09-16 48.97300    1110835    765.7436         Sub-Saharan Africa
## 6026  2022-09-16 49.30100    1132505    799.9123         Sub-Saharan Africa
## 6027  2022-09-16 37.47800     616140          NA         Sub-Saharan Africa
## 6028  2022-09-16 42.26300     765985    554.5318         Sub-Saharan Africa
## 6029  2022-09-16 50.36800    1201305    577.4857         Sub-Saharan Africa
## 6030  2022-09-16 50.74400    1227105    577.7188         Sub-Saharan Africa
## 6031  2022-09-16 51.12300    1254454    559.5562         Sub-Saharan Africa
## 6032  2022-09-16 49.99900    1177133    559.0069         Sub-Saharan Africa
## 6033  2022-09-16 39.00400     649795          NA         Sub-Saharan Africa
## 6034  2022-09-16 39.34300     658998          NA         Sub-Saharan Africa
## 6035  2022-09-16 39.67900     669243          NA         Sub-Saharan Africa
## 6036  2022-09-16 40.01000     680431          NA         Sub-Saharan Africa
## 6037  2022-09-16 48.65800    1088850    700.0042         Sub-Saharan Africa
## 6038  2022-09-16 40.64900     704937    517.0412         Sub-Saharan Africa
## 6039  2022-09-16 56.11700    1648259    593.4814         Sub-Saharan Africa
## 6040  2022-09-16 56.55600    1692433    583.5661         Sub-Saharan Africa
## 6041  2022-09-16 56.95900    1737207    603.3994         Sub-Saharan Africa
## 6042  2022-09-16 57.32800    1782434    624.9198         Sub-Saharan Africa
## 6043  2022-09-16 57.67300    1828146    645.3591         Sub-Saharan Africa
## 6044  2022-09-16 58.00300    1874304    637.5467         Sub-Saharan Africa
## 6045  2022-09-16 58.32200    1920917    650.0694         Sub-Saharan Africa
## 6046  2022-09-16 58.63400    1967998    619.2892         Sub-Saharan Africa
## 6047  2022-09-16       NA    2015490    627.6750         Sub-Saharan Africa
## 6048  2022-09-16 43.69700     774726    616.2824         Sub-Saharan Africa
## 6049  2022-09-16 44.05600     781678    513.3624         Sub-Saharan Africa
## 6050  2022-09-16 40.33300     692407          NA         Sub-Saharan Africa
## 6051  2022-09-16 44.73300     810402    609.7020         Sub-Saharan Africa
## 6052  2022-09-16 45.04600     830212    574.9287         Sub-Saharan Africa
## 6053  2022-09-16 45.34200     851276    611.7783         Sub-Saharan Africa
## 6054  2022-09-16 45.62700     872163    622.0063         Sub-Saharan Africa
## 6055  2022-09-16 45.90700     892530    602.9874         Sub-Saharan Africa
## 6056  2022-09-16 46.19000     912755    606.7255         Sub-Saharan Africa
## 6057  2022-09-16 46.48100     933046    620.8334         Sub-Saharan Africa
## 6058  2022-09-16 46.78300     953782    644.3835         Sub-Saharan Africa
## 6059  2022-09-16 47.09500     975265    668.6306         Sub-Saharan Africa
## 6060  2022-09-16 47.41100     997522    687.0513         Sub-Saharan Africa
## 6061  2022-09-16 47.72600    1020353    679.0665         Sub-Saharan Africa
## 6062  2022-09-16 48.03800    1043421    677.9988         Sub-Saharan Africa
## 6063  2022-09-16 54.11300    1483920    574.4708         Sub-Saharan Africa
## 6064  2022-09-16 54.62800    1522603    585.6916         Sub-Saharan Africa
## 6065  2022-09-16 55.14400    1562996    616.6835         Sub-Saharan Africa
## 6066  2022-09-16 55.64500    1604981    590.2661         Sub-Saharan Africa
## 6067  2022-09-16 49.64200    1154372    564.2424         Sub-Saharan Africa
## 6068  2022-09-16 38.67100     641821          NA         Sub-Saharan Africa
## 6069  2022-09-16 52.69100    1377582    561.7350         Sub-Saharan Africa
## 6070  2022-09-16 53.13600    1411545    566.1074         Sub-Saharan Africa
## 6071  2022-09-16 53.61200    1446936    569.9528         Sub-Saharan Africa
## 6072  2022-09-16 52.27500    1344931    562.3849         Sub-Saharan Africa
## 6073  2022-09-16 44.40200     793804    597.3609         Sub-Saharan Africa
## 6074  2022-09-16 43.33300     772137    606.2591         Sub-Saharan Africa
## 6075  2022-09-16 51.88300    1313492    552.2848         Sub-Saharan Africa
## 6076  2022-09-16 51.50100    1283297    550.0894         Sub-Saharan Africa
## 6077  2022-09-16 62.74100     775217   2530.2248  Latin America & Caribbean
## 6078  2022-09-16 62.68400     778953   2651.4225  Latin America & Caribbean
## 6079  2022-09-16 62.42700     776257   3184.5561  Latin America & Caribbean
## 6080  2022-09-16 62.80100     770439   2607.0100  Latin America & Caribbean
## 6081  2022-09-16 64.06400     761298   3299.9951  Latin America & Caribbean
## 6082  2022-09-16 64.25500     760801   3564.8541  Latin America & Caribbean
## 6083  2022-09-16 62.49800     780153   3223.5937  Latin America & Caribbean
## 6084  2022-09-16 62.62600     781249   2836.2815  Latin America & Caribbean
## 6085  2022-09-16 64.96400     749676   3888.6573  Latin America & Caribbean
## 6086  2022-09-16 65.24200     746718   3850.8178  Latin America & Caribbean
## 6087  2022-09-16 64.46800     757975   3799.2983  Latin America & Caribbean
## 6088  2022-09-16 63.89100     758896   3151.8561  Latin America & Caribbean
## 6089  2022-09-16 62.28300     762424   3363.7226  Latin America & Caribbean
## 6090  2022-09-16 62.35500     770128   3269.9261  Latin America & Caribbean
## 6091  2022-09-16 66.69400     746156   3944.4447  Latin America & Caribbean
## 6092  2022-09-16 64.70500     753778   3756.3032  Latin America & Caribbean
## 6093  2022-09-16 61.31700     664518   2816.1088  Latin America & Caribbean
## 6094  2022-09-16 61.46200     675861   2888.2835  Latin America & Caribbean
## 6095  2022-09-16 61.58800     686144   2874.1541  Latin America & Caribbean
## 6096  2022-09-16 66.97200     746335   4145.7848  Latin America & Caribbean
## 6097  2022-09-16 61.78900     704930   3120.6073  Latin America & Caribbean
## 6098  2022-09-16 61.86800     713684   3178.2785  Latin America & Caribbean
## 6099  2022-09-16 61.93800     721949   3037.6553  Latin America & Caribbean
## 6100  2022-09-16 61.69700     695743   3032.7560  Latin America & Caribbean
## 6101  2022-09-16 65.82800     744789   3993.5241  Latin America & Caribbean
## 6102  2022-09-16 66.12200     745142   3966.3961  Latin America & Caribbean
## 6103  2022-09-16 62.21100     754101   3493.0175  Latin America & Caribbean
## 6104  2022-09-16 69.62400     775218   5945.0687  Latin America & Caribbean
## 6105  2022-09-16 69.77400     779007   6178.8897  Latin America & Caribbean
## 6106  2022-09-16 69.90600     782775   6478.2877  Latin America & Caribbean
## 6107  2022-09-16 62.56500     781734   3265.2070  Latin America & Caribbean
## 6108  2022-09-16       NA     790329  11040.7120  Latin America & Caribbean
## 6109  2022-09-16 67.52100     746815   4512.3853  Latin America & Caribbean
## 6110  2022-09-16 67.79200     747718   4681.6483  Latin America & Caribbean
## 6111  2022-09-16 68.05900     749430   4847.4315  Latin America & Caribbean
## 6112  2022-09-16 62.86900     764447   2603.7818  Latin America & Caribbean
## 6113  2022-09-16 62.00500     729909   3041.9262  Latin America & Caribbean
## 6114  2022-09-16 62.07200     737846   3240.9984  Latin America & Caribbean
## 6115  2022-09-16 62.14000     745847   3478.2162  Latin America & Caribbean
## 6116  2022-09-16 63.28700     743306   2398.2929  Latin America & Caribbean
## 6117  2022-09-16 63.42700     744477   2539.5775  Latin America & Caribbean
## 6118  2022-09-16 63.57600     748596   2721.5374  Latin America & Caribbean
## 6119  2022-09-16 63.73000     754141   2922.3793  Latin America & Caribbean
## 6120  2022-09-16 61.15700     651865   2728.0067  Latin America & Caribbean
## 6121  2022-09-16 67.24700     746477   4443.0726  Latin America & Caribbean
## 6122  2022-09-16 70.02300     786559   9250.3017  Latin America & Caribbean
## 6123  2022-09-16 65.53200     745206   3946.5893  Latin America & Caribbean
## 6124  2022-09-16 60.26000     571813   2720.9119  Latin America & Caribbean
## 6125  2022-09-16 68.32100     752029   5088.6070  Latin America & Caribbean
## 6126  2022-09-16 68.57500     755388   5338.7127  Latin America & Caribbean
## 6127  2022-09-16 66.41200     745737   4025.1907  Latin America & Caribbean
## 6128  2022-09-16 60.98400     637835   2522.1522  Latin America & Caribbean
## 6129  2022-09-16 60.44100     589274   2764.1044  Latin America & Caribbean
## 6130  2022-09-16 60.62300     606286   2716.2297  Latin America & Caribbean
## 6131  2022-09-16 69.45400     771363   5759.6917  Latin America & Caribbean
## 6132  2022-09-16 68.81900     759281   5505.3900  Latin America & Caribbean
## 6133  2022-09-16 69.04900     763371   5568.2182  Latin America & Caribbean
## 6134  2022-09-16 69.26200     767433   5576.8259  Latin America & Caribbean
## 6135  2022-09-16 63.15900     745581   2466.6388  Latin America & Caribbean
## 6136  2022-09-16 60.80500     622580   2320.3535  Latin America & Caribbean
## 6137  2022-09-16 63.04600     750641   2576.6991  Latin America & Caribbean
## 6138  2022-09-16 62.95000     757451   2651.4656  Latin America & Caribbean
## 6139  2022-09-16 43.00000    4097755   1676.6355  Latin America & Caribbean
## 6140  2022-09-16 42.59100    4019171   1742.3975  Latin America & Caribbean
## 6141  2022-09-16 48.11900    5003708   1724.6611  Latin America & Caribbean
## 6142  2022-09-16 47.01900    4837334   1609.9428  Latin America & Caribbean
## 6143  2022-09-16 42.18200    3941956   1646.6471  Latin America & Caribbean
## 6144  2022-09-16 55.52300    7602318   1177.3545  Latin America & Caribbean
## 6145  2022-09-16 46.50800    4757175   1621.2294  Latin America & Caribbean
## 6146  2022-09-16 49.23200    5191637   1822.7418  Latin America & Caribbean
## 6147  2022-09-16 49.74600    5294625   1853.5621  Latin America & Caribbean
## 6148  2022-09-16 47.55900    4918625   1658.6277  Latin America & Caribbean
## 6149  2022-09-16 48.68300    5094570   1712.9200  Latin America & Caribbean
## 6150  2022-09-16 56.12100    7887312   1298.7743  Latin America & Caribbean
## 6151  2022-09-16 56.39300    8030721   1310.0822  Latin America & Caribbean
## 6152  2022-09-16 57.65500    8754148   1281.2741  Latin America & Caribbean
## 6153  2022-09-16 41.76200    3866162   1729.6414  Latin America & Caribbean
## 6154  2022-09-16 57.13100    8463802   1315.9439  Latin America & Caribbean
## 6155  2022-09-16 57.38200    8608810   1289.3436  Latin America & Caribbean
## 6156  2022-09-16 44.70000    4425318   1518.1375  Latin America & Caribbean
## 6157  2022-09-16 45.13400    4509811   1537.0910  Latin America & Caribbean
## 6158  2022-09-16 55.82900    7744509   1270.1296  Latin America & Caribbean
## 6159  2022-09-16 46.02700    4676237   1548.9147  Latin America & Caribbean
## 6160  2022-09-16 60.51100    9949318   1296.8057  Latin America & Caribbean
## 6161  2022-09-16 60.87900   10100320   1342.5436  Latin America & Caribbean
## 6162  2022-09-16 61.26000   10250922   1329.4658  Latin America & Caribbean
## 6163  2022-09-16 61.65800   10400672   1366.9926  Latin America & Caribbean
## 6164  2022-09-16 62.06900   10549007   1370.9869  Latin America & Caribbean
## 6165  2022-09-16 62.48500   10695540   1386.8542  Latin America & Caribbean
## 6166  2022-09-16 62.89600   10839976   1393.1766  Latin America & Caribbean
## 6167  2022-09-16 63.29000   10982367   1409.6325  Latin America & Caribbean
## 6168  2022-09-16 63.66000   11123183   1414.9994  Latin America & Caribbean
## 6169  2022-09-16 64.00100   11263079   1373.8831  Latin America & Caribbean
## 6170  2022-09-16 64.31500   11402533   1311.7081  Latin America & Caribbean
## 6171  2022-09-16 45.57300    4593666   1566.5557  Latin America & Caribbean
## 6172  2022-09-16 51.66800    5910223   1908.2034  Latin America & Caribbean
## 6173  2022-09-16 51.98700    6051617   1880.5439  Latin America & Caribbean
## 6174  2022-09-16 52.30900    6194686   1842.6401  Latin America & Caribbean
## 6175  2022-09-16 52.63700    6337275   1812.0531  Latin America & Caribbean
## 6176  2022-09-16 52.97000    6478537   1763.7235  Latin America & Caribbean
## 6177  2022-09-16 53.30200    6618742   1712.6613  Latin America & Caribbean
## 6178  2022-09-16 53.62800    6758222   1680.6762  Latin America & Caribbean
## 6179  2022-09-16 53.94900    6897755   1598.7035  Latin America & Caribbean
## 6180  2022-09-16 54.26500    7037915   1583.1313  Latin America & Caribbean
## 6181  2022-09-16 54.58000    7178611   1581.2910  Latin America & Caribbean
## 6182  2022-09-16 54.89400    7319491   1468.5061  Latin America & Caribbean
## 6183  2022-09-16 55.20900    7460684   1362.5373  Latin America & Caribbean
## 6184  2022-09-16 59.02800    9344784   1285.7034  Latin America & Caribbean
## 6185  2022-09-16 59.40800    9495336   1324.8707  Latin America & Caribbean
## 6186  2022-09-16 59.78200    9646570   1338.7634  Latin America & Caribbean
## 6187  2022-09-16 60.14800    9798046   1395.7055  Latin America & Caribbean
## 6188  2022-09-16 56.64800    8174680   1315.0918  Latin America & Caribbean
## 6189  2022-09-16 56.89100    8319070   1327.2900  Latin America & Caribbean
## 6190  2022-09-16 43.83700    4258734   1620.9839  Latin America & Caribbean
## 6191  2022-09-16 44.26700    4341325   1580.9898  Latin America & Caribbean
## 6192  2022-09-16 58.65200    9195289   1283.8971  Latin America & Caribbean
## 6193  2022-09-16 43.41400    4177631   1617.4863  Latin America & Caribbean
## 6194  2022-09-16       NA   11541683   1272.5905  Latin America & Caribbean
## 6195  2022-09-16 51.34700    5773367   2025.6249  Latin America & Caribbean
## 6196  2022-09-16 50.21500    5404020   1928.7954  Latin America & Caribbean
## 6197  2022-09-16 51.00900    5643175   2133.2119  Latin America & Caribbean
## 6198  2022-09-16 58.29200    9047082   1266.0348  Latin America & Caribbean
## 6199  2022-09-16 50.63500    5520187   2030.9620  Latin America & Caribbean
## 6200  2022-09-16 57.95900    8900108   1304.1283  Latin America & Caribbean
## 6201  2022-09-16 47.92443  277719154    838.4897                 Aggregates
## 6202  2022-09-16 48.25028  284905161    825.0785                 Aggregates
## 6203  2022-09-16 50.28054  387705086    692.3382                 Aggregates
## 6204  2022-09-16 46.58948  250160343    878.8060                 Aggregates
## 6205  2022-09-16 50.01769  364782214    732.7599                 Aggregates
## 6206  2022-09-16 47.59882  270668519    831.6657                 Aggregates
## 6207  2022-09-16 51.16404  434736157    724.9143                 Aggregates
## 6208  2022-09-16 50.45924  399503994    672.6318                 Aggregates
## 6209  2022-09-16 50.66227  411298637    686.2501                 Aggregates
## 6210  2022-09-16 50.13036  376055877    708.0220                 Aggregates
## 6211  2022-09-16 45.85422  237195030    849.9151                 Aggregates
## 6212  2022-09-16 46.22905  243590882    867.2998                 Aggregates
## 6213  2022-09-16 54.55208  528444638    774.6222                 Aggregates
## 6214  2022-09-16 50.89472  423019239    701.4969                 Aggregates
## 6215  2022-09-16 41.47818  178048131    773.3322                 Aggregates
## 6216  2022-09-16 41.87599  182548798    784.1130                 Aggregates
## 6217  2022-09-16 42.26878  187227553    782.8393                 Aggregates
## 6218  2022-09-16 41.07103  173722891    769.9954                 Aggregates
## 6219  2022-09-16 43.05455  197119416    789.5880                 Aggregates
## 6220  2022-09-16 43.45175  202329958    804.6511                 Aggregates
## 6221  2022-09-16 43.85301  207714326    819.3569                 Aggregates
## 6222  2022-09-16 42.66054  192084675    776.7326                 Aggregates
## 6223  2022-09-16 45.46576  230970270    849.9323                 Aggregates
## 6224  2022-09-16 45.06776  224905337    824.7286                 Aggregates
## 6225  2022-09-16 53.90032  513601222    754.5644                 Aggregates
## 6226  2022-09-16 61.85295  718128408    965.7696                 Aggregates
## 6227  2022-09-16 62.32328  738387077    980.3914                 Aggregates
## 6228  2022-09-16 46.93633  256880818    871.3469                 Aggregates
## 6229  2022-09-16 47.27141  263721632    851.0115                 Aggregates
## 6230  2022-09-16 63.48646  801708019   1025.1313                 Aggregates
## 6231  2022-09-16 63.80963  823480038   1000.0809                 Aggregates
## 6232  2022-09-16       NA  845522272   1018.7591                 Aggregates
## 6233  2022-09-16 48.57393  292290400    809.1624                 Aggregates
## 6234  2022-09-16 48.88997  299959455    794.5459                 Aggregates
## 6235  2022-09-16 44.25843  213272593    832.6809                 Aggregates
## 6236  2022-09-16 44.66457  219004306    820.6510                 Aggregates
## 6237  2022-09-16 49.63177  325095129    794.3944                 Aggregates
## 6238  2022-09-16 61.33431  698336663    949.0909                 Aggregates
## 6239  2022-09-16 49.86464  343887503    776.0838                 Aggregates
## 6240  2022-09-16 49.93685  354047283    748.5897                 Aggregates
## 6241  2022-09-16 40.65232  169567052    767.7229                 Aggregates
## 6242  2022-09-16 57.43357  590590409    862.6087                 Aggregates
## 6243  2022-09-16 55.24228  543555314    795.2636                 Aggregates
## 6244  2022-09-16 55.96162  558909246    819.1581                 Aggregates
## 6245  2022-09-16 56.69696  574560319    840.4681                 Aggregates
## 6246  2022-09-16 52.26410  471680803    733.0701                 Aggregates
## 6247  2022-09-16 58.15822  607115601    866.0973                 Aggregates
## 6248  2022-09-16 51.47749  446608371    729.8865                 Aggregates
## 6249  2022-09-16 51.84219  458867418    731.6240                 Aggregates
## 6250  2022-09-16 40.22140  165573136    731.8533                 Aggregates
## 6251  2022-09-16 49.77107  334249174    779.9353                 Aggregates
## 6252  2022-09-16 52.74934  485112670    741.8275                 Aggregates
## 6253  2022-09-16 53.29665  499113608    746.5019                 Aggregates
## 6254  2022-09-16 59.52887  641921373    901.6465                 Aggregates
## 6255  2022-09-16 60.16657  660193919    899.4398                 Aggregates
## 6256  2022-09-16 62.74867  759106118    999.4030                 Aggregates
## 6257  2022-09-16 63.13499  780234453   1011.4675                 Aggregates
## 6258  2022-09-16 39.77966  161734348    751.8500                 Aggregates
## 6259  2022-09-16 49.18323  307980326    781.9316                 Aggregates
## 6260  2022-09-16 60.77034  679013004    922.9762                 Aggregates
## 6261  2022-09-16 58.85895  624219296    892.2563                 Aggregates
## 6262  2022-09-16 49.43486  316358167    786.3533                 Aggregates
## 6263  2022-09-16 69.56160  828931850  13803.1404                       <NA>
## 6264  2022-09-16 69.81651  837984905  14459.3943                       <NA>
## 6265  2022-09-16 70.03575  846615712  14934.8799                       <NA>
## 6266  2022-09-16 69.98017  855118538  15671.4861                       <NA>
## 6267  2022-09-16 70.17703  863734899  16346.9710                       <NA>
## 6268  2022-09-16 70.49171  872321331  16681.6754                       <NA>
## 6269  2022-09-16 70.78050  882572657  17127.6416                       <NA>
## 6270  2022-09-16 71.06775  891567144  17893.4260                       <NA>
## 6271  2022-09-16 71.24983  900281397  18837.0696                       <NA>
## 6272  2022-09-16 71.66238  908856696  18846.5350                       <NA>
## 6273  2022-09-16 72.00447  917253488  18653.2758                       <NA>
## 6274  2022-09-16 72.26137  925062260  19445.7337                       <NA>
## 6275  2022-09-16 72.60768  932721106  20057.7060                       <NA>
## 6276  2022-09-16 72.75317  940435282  20738.9041                       <NA>
## 6277  2022-09-16 73.06312  948459572  21408.8990                       <NA>
## 6278  2022-09-16 73.08699  956248921  21499.7940                       <NA>
## 6279  2022-09-16 73.44189  964047910  21731.3452                       <NA>
## 6280  2022-09-16 73.76979  971441774  21536.2279                       <NA>
## 6281  2022-09-16 73.87296  978357881  21987.7641                       <NA>
## 6282  2022-09-16 74.14456  984908998  22860.6969                       <NA>
## 6283  2022-09-16 74.27121  991502342  23511.8227                       <NA>
## 6284  2022-09-16 74.50950  998279807  24125.3447                       <NA>
## 6285  2022-09-16 74.76625 1005128469  24793.1082                       <NA>
## 6286  2022-09-16 74.88514 1012114531  25795.8032                       <NA>
## 6287  2022-09-16 75.12976 1019532534  26613.4424                       <NA>
## 6288  2022-09-16 75.29392 1027335329  27231.0953                       <NA>
## 6289  2022-09-16 75.46781 1035674907  27399.4848                       <NA>
## 6290  2022-09-16 75.72496 1041867977  27833.7991                       <NA>
## 6291  2022-09-16 75.79518 1049927786  27995.1067                       <NA>
## 6292  2022-09-16 76.06943 1057433274  28711.2086                       <NA>
## 6293  2022-09-16 76.13454 1066126401  29292.6461                       <NA>
## 6294  2022-09-16 76.49152 1073216638  29995.0706                       <NA>
## 6295  2022-09-16 76.81743 1080137470  30847.1168                       <NA>
## 6296  2022-09-16 77.01336 1086903084  31527.2899                       <NA>
## 6297  2022-09-16 80.51906 1204216436  39147.5681                       <NA>
## 6298  2022-09-16 80.39818 1211083838  39847.2618                       <NA>
## 6299  2022-09-16 80.54731 1217994923  40344.5196                       <NA>
## 6300  2022-09-16 80.59038 1224138952  41095.2810                       <NA>
## 6301  2022-09-16 80.69046 1229836619  41862.3391                       <NA>
## 6302  2022-09-16 80.88625 1234830048  42435.1603                       <NA>
## 6303  2022-09-16 80.21053 1240684527  40335.8277                       <NA>
## 6304  2022-09-16       NA 1241374277  42372.6209                       <NA>
## 6305  2022-09-16 68.47264  779313752  11271.7224                       <NA>
## 6306  2022-09-16 68.86521  789211684  11616.0336                       <NA>
## 6307  2022-09-16 68.85510  799334016  12118.5405                       <NA>
## 6308  2022-09-16 69.06529  809385030  12601.8264                       <NA>
## 6309  2022-09-16 69.45658  819344462  13238.8854                       <NA>
## 6310  2022-09-16 77.16995 1093621979  32412.2598                       <NA>
## 6311  2022-09-16 77.45567 1100273778  33533.7123                       <NA>
## 6312  2022-09-16 77.75336 1107011730  33816.3374                       <NA>
## 6313  2022-09-16 77.88921 1113896452  34137.9524                       <NA>
## 6314  2022-09-16 78.02152 1120929677  34683.2794                       <NA>
## 6315  2022-09-16 78.43305 1128394861  35640.6575                       <NA>
## 6316  2022-09-16 78.53840 1136053424  36437.8386                       <NA>
## 6317  2022-09-16 78.84838 1144406539  37309.7128                       <NA>
## 6318  2022-09-16 79.08900 1153028462  38078.8477                       <NA>
## 6319  2022-09-16 79.23682 1162203098  37983.6073                       <NA>
## 6320  2022-09-16 79.52696 1170539840  36495.1783                       <NA>
## 6321  2022-09-16 79.70730 1178066137  37354.8322                       <NA>
## 6322  2022-09-16 79.96170 1183478609  37907.4391                       <NA>
## 6323  2022-09-16 80.07975 1190276979  38221.5705                       <NA>
## 6324  2022-09-16 80.26669 1197153389  38578.1652                       <NA>
## 6325  2022-09-16 66.22900    4814696   1740.7967  Latin America & Caribbean
## 6326  2022-09-16 70.97600    6751912   1790.7975  Latin America & Caribbean
## 6327  2022-09-16 53.77800    2882102   1512.2236  Latin America & Caribbean
## 6328  2022-09-16 67.60500    5244677   1684.6274  Latin America & Caribbean
## 6329  2022-09-16 68.02800    5394416   1744.2564  Latin America & Caribbean
## 6330  2022-09-16 68.45000    5548969   1699.2675  Latin America & Caribbean
## 6331  2022-09-16 66.72300    4955302   1738.6216  Latin America & Caribbean
## 6332  2022-09-16 67.17500    5098594   1633.6706  Latin America & Caribbean
## 6333  2022-09-16 65.67900    4677023   1744.4528  Latin America & Caribbean
## 6334  2022-09-16 55.83400    3153252   1504.0366  Latin America & Caribbean
## 6335  2022-09-16 59.63200    3678274   1770.5616  Latin America & Caribbean
## 6336  2022-09-16 60.42700    3792922   1696.0603  Latin America & Caribbean
## 6337  2022-09-16 58.08000    3458102   1772.6272  Latin America & Caribbean
## 6338  2022-09-16 58.85100    3566661   1815.0898  Latin America & Caribbean
## 6339  2022-09-16 62.85900    4154864   1626.7242  Latin America & Caribbean
## 6340  2022-09-16 63.64300    4281167   1667.5557  Latin America & Caribbean
## 6341  2022-09-16 54.43900    2968978   1583.5014  Latin America & Caribbean
## 6342  2022-09-16 55.12400    3059245   1517.9120  Latin America & Caribbean
## 6343  2022-09-16 70.68900    6574510   1790.3641  Latin America & Caribbean
## 6344  2022-09-16 46.27400    2038636   1220.5311  Latin America & Caribbean
## 6345  2022-09-16 46.95300    2096407   1208.9215  Latin America & Caribbean
## 6346  2022-09-16 47.62500    2155648   1243.4754  Latin America & Caribbean
## 6347  2022-09-16 48.28500    2216712   1252.5167  Latin America & Caribbean
## 6348  2022-09-16 48.92600    2280044   1283.6859  Latin America & Caribbean
## 6349  2022-09-16 49.54800    2346005   1360.3403  Latin America & Caribbean
## 6350  2022-09-16 68.87100    5709010   1753.8564  Latin America & Caribbean
## 6351  2022-09-16 69.28400    5874814   1736.2423  Latin America & Caribbean
## 6352  2022-09-16 69.67600    6045704   1764.7423  Latin America & Caribbean
## 6353  2022-09-16 70.04100    6220405   1776.7582  Latin America & Caribbean
## 6354  2022-09-16 64.38200    4410270   1705.0324  Latin America & Caribbean
## 6355  2022-09-16 65.06200    4542218   1765.4006  Latin America & Caribbean
## 6356  2022-09-16 73.81400    8640692   2207.2302  Latin America & Caribbean
## 6357  2022-09-16 74.05100    8798524   2228.1467  Latin America & Caribbean
## 6358  2022-09-16 56.56700    3251145   1611.9284  Latin America & Caribbean
## 6359  2022-09-16 57.31700    3352825   1725.3488  Latin America & Caribbean
## 6360  2022-09-16 74.49500    9112904   2302.2044  Latin America & Caribbean
## 6361  2022-09-16 74.70100    9270794   2351.0936  Latin America & Caribbean
## 6362  2022-09-16 74.89800    9429016   2423.5923  Latin America & Caribbean
## 6363  2022-09-16 50.15100    2414805   1392.6028  Latin America & Caribbean
## 6364  2022-09-16 50.74200    2486418   1433.3394  Latin America & Caribbean
## 6365  2022-09-16 51.33000    2560723   1483.5779  Latin America & Caribbean
## 6366  2022-09-16 51.92100    2637515   1449.8240  Latin America & Caribbean
## 6367  2022-09-16 52.52200    2716652   1458.6395  Latin America & Caribbean
## 6368  2022-09-16 53.14000    2798125   1472.7443  Latin America & Caribbean
## 6369  2022-09-16 73.56900    8480670   2159.7108  Latin America & Caribbean
## 6370  2022-09-16 70.37800    6397140   1714.9617  Latin America & Caribbean
## 6371  2022-09-16 71.77000    7282953   1913.1118  Latin America & Caribbean
## 6372  2022-09-16 75.08800    9587523   2475.1703  Latin America & Caribbean
## 6373  2022-09-16 71.24900    6929267   1810.4737  Latin America & Caribbean
## 6374  2022-09-16 71.51100    7106323   1845.6371  Latin America & Caribbean
## 6375  2022-09-16       NA   10062994   2479.9897  Latin America & Caribbean
## 6376  2022-09-16 73.06100    8150780   2086.2713  Latin America & Caribbean
## 6377  2022-09-16 61.23600    3910642   1610.8764  Latin America & Caribbean
## 6378  2022-09-16 62.05000    4031333   1576.8025  Latin America & Caribbean
## 6379  2022-09-16 74.27800    8955579   2256.0151  Latin America & Caribbean
## 6380  2022-09-16 72.80300    7980955   2183.7657  Latin America & Caribbean
## 6381  2022-09-16 73.31700    8317467   2120.7429  Latin America & Caribbean
## 6382  2022-09-16 72.28500    7634295   2062.6036  Latin America & Caribbean
## 6383  2022-09-16 72.54400    7808520   2141.3752  Latin America & Caribbean
## 6384  2022-09-16 75.27000    9746115   2499.4928  Latin America & Caribbean
## 6385  2022-09-16 72.02600    7458982   1980.9861  Latin America & Caribbean
## 6386  2022-09-16 75.44800    9904608   2239.0081  Latin America & Caribbean
## 6387  2022-09-16 68.62585    3420900   4847.2623        East Asia & Pacific
## 6388  2022-09-16 69.54288    3597900   5739.4994        East Asia & Pacific
## 6389  2022-09-16 69.94622    3629900   5791.0116        East Asia & Pacific
## 6390  2022-09-16 70.32578    3722800   5737.0397        East Asia & Pacific
## 6391  2022-09-16 69.10437    3504600   5139.7280        East Asia & Pacific
## 6392  2022-09-16 81.62927    6813200  32401.2548        East Asia & Pacific
## 6393  2022-09-16 82.37561    6857100  34457.8930        East Asia & Pacific
## 6394  2022-09-16 67.54876    3168100   3955.9929        East Asia & Pacific
## 6395  2022-09-16 68.10598    3305200   4333.7943        East Asia & Pacific
## 6396  2022-09-16 71.04456    3863900   6363.6737        East Asia & Pacific
## 6397  2022-09-16 66.96168    3075605          NA        East Asia & Pacific
## 6398  2022-09-16 85.07805    7507900  44192.3785        East Asia & Pacific
## 6399  2022-09-16 82.32683    6916300  36371.5093        East Asia & Pacific
## 6400  2022-09-16 81.82927    6783500  30304.1988        East Asia & Pacific
## 6401  2022-09-16 84.93415    7452600  45280.2188        East Asia & Pacific
## 6402  2022-09-16 82.97805    7024200  38089.8121        East Asia & Pacific
## 6403  2022-09-16 83.42195    7071600  39656.1118        East Asia & Pacific
## 6404  2022-09-16 70.69054    3802700   5807.3260        East Asia & Pacific
## 6405  2022-09-16 82.77561    6972800  35938.4005        East Asia & Pacific
## 6406  2022-09-16 83.98049    7229500  41796.5937        East Asia & Pacific
## 6407  2022-09-16 84.27805    7291300  42431.8883        East Asia & Pacific
## 6408  2022-09-16 84.22683    7336600  43087.2864        East Asia & Pacific
## 6409  2022-09-16 77.08293    5627600  20386.1437        East Asia & Pacific
## 6410  2022-09-16 77.02927    5686200  20635.4756        East Asia & Pacific
## 6411  2022-09-16 77.38049    5704500  21357.2122        East Asia & Pacific
## 6412  2022-09-16 77.88293    5752000  22388.5615        East Asia & Pacific
## 6413  2022-09-16 82.37561    6957800  36923.8965        East Asia & Pacific
## 6414  2022-09-16 78.03171    5901000  24621.5434        East Asia & Pacific
## 6415  2022-09-16 78.52927    6035400  25526.3195        East Asia & Pacific
## 6416  2022-09-16 78.68293    6156100  25619.9043        East Asia & Pacific
## 6417  2022-09-16 83.48049    7150100  39887.5981        East Asia & Pacific
## 6418  2022-09-16 83.83171    7178900  40959.7332        East Asia & Pacific
## 6419  2022-09-16 80.38293    6606500  25237.5922        East Asia & Pacific
## 6420  2022-09-16 80.87805    6665000  26933.1716        East Asia & Pacific
## 6421  2022-09-16 81.42439    6714300  26885.3714        East Asia & Pacific
## 6422  2022-09-16 81.42683    6744100  27209.9796        East Asia & Pacific
## 6423  2022-09-16 81.37805    6730800  28097.0180        East Asia & Pacific
## 6424  2022-09-16 72.81951    4518000   9468.4483        East Asia & Pacific
## 6425  2022-09-16 73.31951    4583700  10427.0693        East Asia & Pacific
## 6426  2022-09-16 85.38780    7481000  41469.9755        East Asia & Pacific
## 6427  2022-09-16       NA    7413100  44535.9366        East Asia & Pacific
## 6428  2022-09-16 74.67317    5063100  12553.0511        East Asia & Pacific
## 6429  2022-09-16 75.32439    5183400  13397.2455        East Asia & Pacific
## 6430  2022-09-16 75.42927    5264500  13579.9713        East Asia & Pacific
## 6431  2022-09-16 71.38651    3959000   6782.6150        East Asia & Pacific
## 6432  2022-09-16 71.45854    4045300   7122.0169        East Asia & Pacific
## 6433  2022-09-16 71.45610    4123600   7728.2022        East Asia & Pacific
## 6434  2022-09-16 72.10976    4241600   8435.7970        East Asia & Pacific
## 6435  2022-09-16 72.61220    4377800   8370.7568        East Asia & Pacific
## 6436  2022-09-16 84.68049    7393200  44380.5349        East Asia & Pacific
## 6437  2022-09-16 73.36829    4461600   8253.9466        East Asia & Pacific
## 6438  2022-09-16 76.43415    5456200  15386.5902        East Asia & Pacific
## 6439  2022-09-16 76.68537    5524600  16876.1787        East Asia & Pacific
## 6440  2022-09-16 77.67805    5800500  23585.5727        East Asia & Pacific
## 6441  2022-09-16 73.67317    4929700  11709.1556        East Asia & Pacific
## 6442  2022-09-16 79.62683    6435500  25551.2790        East Asia & Pacific
## 6443  2022-09-16 80.12683    6489300  26631.7066        East Asia & Pacific
## 6444  2022-09-16 75.27561    5345100  14174.6314        East Asia & Pacific
## 6445  2022-09-16 76.02927    5397900  15435.9039        East Asia & Pacific
## 6446  2022-09-16 76.88293    5580500  18945.6258        East Asia & Pacific
## 6447  2022-09-16 73.57561    4667500  11085.7650        East Asia & Pacific
## 6448  2022-09-16 80.13171    6543700  24856.6830        East Asia & Pacific
## 6449  2022-09-16 68.97220   10648713          NA      Europe & Central Asia
## 6450  2022-09-16 69.17341   10630564          NA      Europe & Central Asia
## 6451  2022-09-16 69.46171   10481719          NA      Europe & Central Asia
## 6452  2022-09-16 69.31561   10373988          NA      Europe & Central Asia
## 6453  2022-09-16 69.31463   10298723          NA      Europe & Central Asia
## 6454  2022-09-16 69.02585   10668095          NA      Europe & Central Asia
## 6455  2022-09-16 69.05244   10367537          NA      Europe & Central Asia
## 6456  2022-09-16 69.66463   10398489          NA      Europe & Central Asia
## 6457  2022-09-16 69.84805   10648031          NA      Europe & Central Asia
## 6458  2022-09-16 70.02341   10596487          NA      Europe & Central Asia
## 6459  2022-09-16 69.29000   10540525          NA      Europe & Central Asia
## 6460  2022-09-16 69.57317   10598677          NA      Europe & Central Asia
## 6461  2022-09-16 69.13927   10711848          NA      Europe & Central Asia
## 6462  2022-09-16 69.35780   10705535          NA      Europe & Central Asia
## 6463  2022-09-16 69.16463   10337910          NA      Europe & Central Asia
## 6464  2022-09-16 70.70244   10290486   7955.4799      Europe & Central Asia
## 6465  2022-09-16 70.55780   10266570   8284.9988      Europe & Central Asia
## 6466  2022-09-16 69.65122   10612741          NA      Europe & Central Asia
## 6467  2022-09-16 69.24805   10478720          NA      Europe & Central Asia
## 6468  2022-09-16 68.00317    9983967          NA      Europe & Central Asia
## 6469  2022-09-16 68.93610   10029321          NA      Europe & Central Asia
## 6470  2022-09-16 67.86585   10061734          NA      Europe & Central Asia
## 6471  2022-09-16 69.37707   10373400   7592.2846      Europe & Central Asia
## 6472  2022-09-16 69.11707   10369341   7362.5242      Europe & Central Asia
## 6473  2022-09-16 69.10122   10357523   7328.4603      Europe & Central Asia
## 6474  2022-09-16 69.46976   10343355   7554.7755      Europe & Central Asia
## 6475  2022-09-16 69.79171   10328965   7677.9877      Europe & Central Asia
## 6476  2022-09-16 68.97366   10689463          NA      Europe & Central Asia
## 6477  2022-09-16 73.90488   10022650  11167.0294      Europe & Central Asia
## 6478  2022-09-16 74.20732   10000023  11313.5229      Europe & Central Asia
## 6479  2022-09-16 74.85854    9971727  11556.6726      Europe & Central Asia
## 6480  2022-09-16 69.51805   10432055          NA      Europe & Central Asia
## 6481  2022-09-16 75.76341    9866468  12237.3117      Europe & Central Asia
## 6482  2022-09-16 75.56829    9843028  12720.7120      Europe & Central Asia
## 6483  2022-09-16 76.06341    9814023  13037.9647      Europe & Central Asia
## 6484  2022-09-16 68.87415   10087947          NA      Europe & Central Asia
## 6485  2022-09-16 69.38098   10119835          NA      Europe & Central Asia
## 6486  2022-09-16 69.07122   10147935          NA      Europe & Central Asia
## 6487  2022-09-16 69.82244   10178653          NA      Europe & Central Asia
## 6488  2022-09-16 69.40707   10216604          NA      Europe & Central Asia
## 6489  2022-09-16 69.23024   10255815          NA      Europe & Central Asia
## 6490  2022-09-16 73.70244   10038188  11937.0491      Europe & Central Asia
## 6491  2022-09-16 70.32878   10311238   7697.5259      Europe & Central Asia
## 6492  2022-09-16 72.24878   10187576   9357.4174      Europe & Central Asia
## 6493  2022-09-16 75.81707    9787966  13630.6882      Europe & Central Asia
## 6494  2022-09-16 70.67707   10237530   8563.6565      Europe & Central Asia
## 6495  2022-09-16 71.24634   10210971   8970.5112      Europe & Central Asia
## 6496  2022-09-16 69.06171   10711122          NA      Europe & Central Asia
## 6497  2022-09-16       NA    9709886  15486.6340      Europe & Central Asia
## 6498  2022-09-16 69.39390   10684822          NA      Europe & Central Asia
## 6499  2022-09-16 69.61537   10704152          NA      Europe & Central Asia
## 6500  2022-09-16 75.06341    9920362  11470.4034      Europe & Central Asia
## 6501  2022-09-16 75.56585    9893082  11709.8014      Europe & Central Asia
## 6502  2022-09-16 73.15122   10055780  11797.4290      Europe & Central Asia
## 6503  2022-09-16 72.30000   10129552  10259.8419      Europe & Central Asia
## 6504  2022-09-16 72.64878   10107146  10796.7619      Europe & Central Asia
## 6505  2022-09-16 72.64878   10087065  11282.9299      Europe & Central Asia
## 6506  2022-09-16 72.34878   10158608   9829.0275      Europe & Central Asia
## 6507  2022-09-16 75.61707    9750149  14400.7192      Europe & Central Asia
## 6508  2022-09-16 76.06585    9775564  14379.4442      Europe & Central Asia
## 6509  2022-09-16 73.09756   10071370  11746.6312      Europe & Central Asia
## 6510  2022-09-16 76.31951    9771141  15041.0986      Europe & Central Asia
## 6511  2022-09-16 51.39510 2065153294   1054.1649                 Aggregates
## 6512  2022-09-16 49.79466 1974018983    976.5391                 Aggregates
## 6513  2022-09-16 50.53218 2019553695    998.3664                 Aggregates
## 6514  2022-09-16 52.36455 2111931236   1092.5565                 Aggregates
## 6515  2022-09-16 53.37466 2161881347   1126.3736                 Aggregates
## 6516  2022-09-16 49.19617 1940356959    963.9137                 Aggregates
## 6517  2022-09-16 68.34250 4032814517   2789.4805                 Aggregates
## 6518  2022-09-16 68.62332 4077635144   2886.0547                 Aggregates
## 6519  2022-09-16 48.67614 1919643259    963.8455                 Aggregates
## 6520  2022-09-16 68.90468 4122139637   3026.0614                 Aggregates
## 6521  2022-09-16 68.05262 3987186829   2722.4421                 Aggregates
## 6522  2022-09-16 72.43264 4612371789   5363.8177                 Aggregates
## 6523  2022-09-16 72.70218 4657516187   5547.6796                 Aggregates
## 6524  2022-09-16 70.16343 4296851873   3956.5521                 Aggregates
## 6525  2022-09-16 54.36894 2211446261   1146.4588                 Aggregates
## 6526  2022-09-16 55.32964 2262350288   1187.1781                 Aggregates
## 6527  2022-09-16 69.83292 4253850306   3666.5665                 Aggregates
## 6528  2022-09-16 71.51025 4471931983   4754.3509                 Aggregates
## 6529  2022-09-16 71.82972 4518944265   4962.2867                 Aggregates
## 6530  2022-09-16 64.63901 3294789920   2083.6767                 Aggregates
## 6531  2022-09-16 64.92526 3355391546   2128.5321                 Aggregates
## 6532  2022-09-16 65.18188 3414926034   2158.5993                 Aggregates
## 6533  2022-09-16 65.42949 3472795732   2163.6612                 Aggregates
## 6534  2022-09-16 69.20958 4166298061   3224.2169                 Aggregates
## 6535  2022-09-16 69.49564 4210302243   3421.0927                 Aggregates
## 6536  2022-09-16 66.02415 3636953514   2207.1313                 Aggregates
## 6537  2022-09-16 66.26812 3689444106   2256.1577                 Aggregates
## 6538  2022-09-16 70.48350 4340107147   4149.8644                 Aggregates
## 6539  2022-09-16 70.83254 4383682686   4227.4189                 Aggregates
## 6540  2022-09-16 71.16180 4427039470   4514.5164                 Aggregates
## 6541  2022-09-16 66.87276 3791695401   2410.7774                 Aggregates
## 6542  2022-09-16 67.21089 3842263818   2505.7872                 Aggregates
## 6543  2022-09-16 67.52017 3892057436   2537.9818                 Aggregates
## 6544  2022-09-16 67.77000 3940452377   2601.2688                 Aggregates
## 6545  2022-09-16 60.05277 2641036429   1585.2868                 Aggregates
## 6546  2022-09-16 60.57550 2691929607   1649.4569                 Aggregates
## 6547  2022-09-16 72.96134 4701907494   5748.9428                 Aggregates
## 6548  2022-09-16 73.20755 4746018766   5993.3074                 Aggregates
## 6549  2022-09-16 73.41233 4787343661   6233.5842                 Aggregates
## 6550  2022-09-16 73.61554 4826259460   6430.4811                 Aggregates
## 6551  2022-09-16 73.70172 4862446431   6290.0348                 Aggregates
## 6552  2022-09-16 56.18370 2315407668   1251.2663                 Aggregates
## 6553  2022-09-16 56.97615 2369907013   1317.1347                 Aggregates
## 6554  2022-09-16 57.67599 2425733326   1368.2852                 Aggregates
## 6555  2022-09-16 58.32124 2480636089   1425.7665                 Aggregates
## 6556  2022-09-16 58.93400 2535259156   1494.3638                 Aggregates
## 6557  2022-09-16 72.14643 4566062769   5170.3282                 Aggregates
## 6558  2022-09-16 59.52940 2589035943   1544.5399                 Aggregates
## 6559  2022-09-16 61.91517 2843436775   1779.4770                 Aggregates
## 6560  2022-09-16 62.29165 2895270850   1838.1999                 Aggregates
## 6561  2022-09-16 65.67124 3529273394   2155.2671                 Aggregates
## 6562  2022-09-16 65.85184 3583654056   2158.7299                 Aggregates
## 6563  2022-09-16 63.63217 3118212761   1925.0238                 Aggregates
## 6564  2022-09-16 63.96456 3175484847   1974.8673                 Aggregates
## 6565  2022-09-16       NA 4895295243   6693.3678                 Aggregates
## 6566  2022-09-16 63.34284 3061809639   1866.4900                 Aggregates
## 6567  2022-09-16 61.51068 2792102883   1730.9390                 Aggregates
## 6568  2022-09-16 64.33961 3234352999   2020.5657                 Aggregates
## 6569  2022-09-16 61.05868 2741759767   1693.8375                 Aggregates
## 6570  2022-09-16 63.02714 3004914790   1864.3875                 Aggregates
## 6571  2022-09-16 66.53916 3740821342   2315.3534                 Aggregates
## 6572  2022-09-16 62.66835 2948643246   1847.4798                 Aggregates
## 6573  2022-09-16 77.03780     233860          NA      Europe & Central Asia
## 6574  2022-09-16 73.78317     198751          NA      Europe & Central Asia
## 6575  2022-09-16 76.52146     230755          NA      Europe & Central Asia
## 6576  2022-09-16 77.60244     241405          NA      Europe & Central Asia
## 6577  2022-09-16 74.00585     201488          NA      Europe & Central Asia
## 6578  2022-09-16 73.86878     192286          NA      Europe & Central Asia
## 6579  2022-09-16 76.84659     228138          NA      Europe & Central Asia
## 6580  2022-09-16 75.57878     217979          NA      Europe & Central Asia
## 6581  2022-09-16 77.99073     243180          NA      Europe & Central Asia
## 6582  2022-09-16 76.37366     221799          NA      Europe & Central Asia
## 6583  2022-09-16 76.64927     223537          NA      Europe & Central Asia
## 6584  2022-09-16 73.30049     195570          NA      Europe & Central Asia
## 6585  2022-09-16 83.06585     366463  53188.0398      Europe & Central Asia
## 6586  2022-09-16       NA     372295  54291.8701      Europe & Central Asia
## 6587  2022-09-16 76.84561     236977          NA      Europe & Central Asia
## 6588  2022-09-16 77.57659     239511          NA      Europe & Central Asia
## 6589  2022-09-16 73.57049     206098          NA      Europe & Central Asia
## 6590  2022-09-16 74.45585     209137          NA      Europe & Central Asia
## 6591  2022-09-16 74.45098     212317          NA      Europe & Central Asia
## 6592  2022-09-16 74.51171     215209          NA      Europe & Central Asia
## 6593  2022-09-16 77.08293     249740          NA      Europe & Central Asia
## 6594  2022-09-16 78.14098     252852          NA      Europe & Central Asia
## 6595  2022-09-16 78.03634     254826          NA      Europe & Central Asia
## 6596  2022-09-16 77.99195     257797          NA      Europe & Central Asia
## 6597  2022-09-16 76.77317     225735          NA      Europe & Central Asia
## 6598  2022-09-16 77.98439     267468  34188.3821      Europe & Central Asia
## 6599  2022-09-16 78.77780     268916  35557.3100      Europe & Central Asia
## 6600  2022-09-16 81.60976     317414  53821.4708      Europe & Central Asia
## 6601  2022-09-16 73.77634     203369          NA      Europe & Central Asia
## 6602  2022-09-16 73.93390     204438          NA      Europe & Central Asia
## 6603  2022-09-16 82.35854     319014  48933.5457      Europe & Central Asia
## 6604  2022-09-16 82.91707     320716  49191.5744      Europe & Central Asia
## 6605  2022-09-16 77.33902     245859          NA      Europe & Central Asia
## 6606  2022-09-16 73.42317     175574          NA      Europe & Central Asia
## 6607  2022-09-16 73.50341     179029          NA      Europe & Central Asia
## 6608  2022-09-16 73.72195     182378          NA      Europe & Central Asia
## 6609  2022-09-16 73.04293     185653          NA      Europe & Central Asia
## 6610  2022-09-16 73.54171     188983          NA      Europe & Central Asia
## 6611  2022-09-16 81.15854     303782  50731.6907      Europe & Central Asia
## 6612  2022-09-16 81.45366     311566  53646.3690      Europe & Central Asia
## 6613  2022-09-16 78.93463     263725          NA      Europe & Central Asia
## 6614  2022-09-16 79.24707     266021          NA      Europe & Central Asia
## 6615  2022-09-16 82.86098     327386  51233.2440      Europe & Central Asia
## 6616  2022-09-16 78.88537     271128  37302.6717      Europe & Central Asia
## 6617  2022-09-16 79.60244     274047  39622.6070      Europe & Central Asia
## 6618  2022-09-16 82.06098     323764  50946.8163      Europe & Central Asia
## 6619  2022-09-16 82.86098     352721  57699.4589      Europe & Central Asia
## 6620  2022-09-16 82.46829     330815  52951.6815      Europe & Central Asia
## 6621  2022-09-16 76.97220     220154          NA      Europe & Central Asia
## 6622  2022-09-16 82.66098     343400  56501.4577      Europe & Central Asia
## 6623  2022-09-16 79.35122     277381  40725.8860      Europe & Central Asia
## 6624  2022-09-16 83.16341     360563  57818.8595      Europe & Central Asia
## 6625  2022-09-16 78.76024     261057          NA      Europe & Central Asia
## 6626  2022-09-16 81.89756     318041  48193.7014      Europe & Central Asia
## 6627  2022-09-16 80.96341     289521  43763.7756      Europe & Central Asia
## 6628  2022-09-16 79.65366     281205  42174.6651      Europe & Central Asia
## 6629  2022-09-16 81.75122     318499  49527.3988      Europe & Central Asia
## 6630  2022-09-16 80.50244     287523  43143.4606      Europe & Central Asia
## 6631  2022-09-16 80.99756     292074  46766.0169      Europe & Central Asia
## 6632  2022-09-16 80.69024     284968  43288.0763      Europe & Central Asia
## 6633  2022-09-16 82.20488     335439  55513.6423      Europe & Central Asia
## 6634  2022-09-16 81.50244     296734  48850.7659      Europe & Central Asia
## 6635  2022-09-16 48.62023 2372380699    943.7174                 Aggregates
## 6636  2022-09-16 47.53031 2299245319    930.6281                 Aggregates
## 6637  2022-09-16 48.04026 2329154652    928.6909                 Aggregates
## 6638  2022-09-16 64.98076 4919044671   2193.8955                 Aggregates
## 6639  2022-09-16 65.21804 4992700760   2241.2331                 Aggregates
## 6640  2022-09-16 65.77260 5137393838   2388.0428                 Aggregates
## 6641  2022-09-16 70.08556 6105863361   4377.2594                 Aggregates
## 6642  2022-09-16 49.31941 2427869417    964.5551                 Aggregates
## 6643  2022-09-16 50.11970 2483839827   1013.6025                 Aggregates
## 6644  2022-09-16 65.49043 5065355830   2335.6111                 Aggregates
## 6645  2022-09-16 66.98403 5425273244   2889.9050                 Aggregates
## 6646  2022-09-16 67.34297 5497768362   3082.8537                 Aggregates
## 6647  2022-09-16 67.70003 5570325587   3309.3130                 Aggregates
## 6648  2022-09-16 66.67047 5352906491   2733.9846                 Aggregates
## 6649  2022-09-16 68.41899 5717805879   3517.1146                 Aggregates
## 6650  2022-09-16 68.76826 5792386087   3739.6927                 Aggregates
## 6651  2022-09-16 60.90004 3674370514   1689.7012                 Aggregates
## 6652  2022-09-16 61.21718 3749764704   1683.3556                 Aggregates
## 6653  2022-09-16 61.50766 3825225748   1726.4795                 Aggregates
## 6654  2022-09-16 61.82687 3902131693   1767.1932                 Aggregates
## 6655  2022-09-16 66.05610 5209071406   2465.3162                 Aggregates
## 6656  2022-09-16 66.34977 5280906028   2575.4146                 Aggregates
## 6657  2022-09-16 62.70641 4144329655   1891.3953                 Aggregates
## 6658  2022-09-16 62.93391 4225751603   1912.8860                 Aggregates
## 6659  2022-09-16 63.14740 4306159746   1916.6057                 Aggregates
## 6660  2022-09-16 63.35789 4385564153   1906.1401                 Aggregates
## 6661  2022-09-16 68.04952 5643683607   3457.9702                 Aggregates
## 6662  2022-09-16 63.66277 4540599237   1938.6960                 Aggregates
## 6663  2022-09-16 63.87476 4617236728   1972.2931                 Aggregates
## 6664  2022-09-16 64.11202 4693043793   2018.2058                 Aggregates
## 6665  2022-09-16 64.40342 4768632422   2095.1531                 Aggregates
## 6666  2022-09-16 64.70581 4844171403   2169.9982                 Aggregates
##                  capital  longitude  latitude              income
## 1                  Kabul    69.1761   34.5228          Low income
## 2                  Kabul    69.1761   34.5228          Low income
## 3                  Kabul    69.1761   34.5228          Low income
## 4                  Kabul    69.1761   34.5228          Low income
## 5                  Kabul    69.1761   34.5228          Low income
## 6                  Kabul    69.1761   34.5228          Low income
## 7                  Kabul    69.1761   34.5228          Low income
## 8                  Kabul    69.1761   34.5228          Low income
## 9                  Kabul    69.1761   34.5228          Low income
## 10                 Kabul    69.1761   34.5228          Low income
## 11                 Kabul    69.1761   34.5228          Low income
## 12                 Kabul    69.1761   34.5228          Low income
## 13                 Kabul    69.1761   34.5228          Low income
## 14                 Kabul    69.1761   34.5228          Low income
## 15                 Kabul    69.1761   34.5228          Low income
## 16                 Kabul    69.1761   34.5228          Low income
## 17                 Kabul    69.1761   34.5228          Low income
## 18                 Kabul    69.1761   34.5228          Low income
## 19                 Kabul    69.1761   34.5228          Low income
## 20                 Kabul    69.1761   34.5228          Low income
## 21                 Kabul    69.1761   34.5228          Low income
## 22                 Kabul    69.1761   34.5228          Low income
## 23                 Kabul    69.1761   34.5228          Low income
## 24                 Kabul    69.1761   34.5228          Low income
## 25                 Kabul    69.1761   34.5228          Low income
## 26                 Kabul    69.1761   34.5228          Low income
## 27                 Kabul    69.1761   34.5228          Low income
## 28                 Kabul    69.1761   34.5228          Low income
## 29                 Kabul    69.1761   34.5228          Low income
## 30                 Kabul    69.1761   34.5228          Low income
## 31                 Kabul    69.1761   34.5228          Low income
## 32                 Kabul    69.1761   34.5228          Low income
## 33                 Kabul    69.1761   34.5228          Low income
## 34                 Kabul    69.1761   34.5228          Low income
## 35                 Kabul    69.1761   34.5228          Low income
## 36                 Kabul    69.1761   34.5228          Low income
## 37                 Kabul    69.1761   34.5228          Low income
## 38                 Kabul    69.1761   34.5228          Low income
## 39                 Kabul    69.1761   34.5228          Low income
## 40                 Kabul    69.1761   34.5228          Low income
## 41                 Kabul    69.1761   34.5228          Low income
## 42                 Kabul    69.1761   34.5228          Low income
## 43                 Kabul    69.1761   34.5228          Low income
## 44                 Kabul    69.1761   34.5228          Low income
## 45                 Kabul    69.1761   34.5228          Low income
## 46                 Kabul    69.1761   34.5228          Low income
## 47                 Kabul    69.1761   34.5228          Low income
## 48                 Kabul    69.1761   34.5228          Low income
## 49                 Kabul    69.1761   34.5228          Low income
## 50                 Kabul    69.1761   34.5228          Low income
## 51                 Kabul    69.1761   34.5228          Low income
## 52                 Kabul    69.1761   34.5228          Low income
## 53                 Kabul    69.1761   34.5228          Low income
## 54                 Kabul    69.1761   34.5228          Low income
## 55                 Kabul    69.1761   34.5228          Low income
## 56                 Kabul    69.1761   34.5228          Low income
## 57                 Kabul    69.1761   34.5228          Low income
## 58                 Kabul    69.1761   34.5228          Low income
## 59                 Kabul    69.1761   34.5228          Low income
## 60                 Kabul    69.1761   34.5228          Low income
## 61                 Kabul    69.1761   34.5228          Low income
## 62                 Kabul    69.1761   34.5228          Low income
## 63                                                     Aggregates
## 64                                                     Aggregates
## 65                                                     Aggregates
## 66                                                     Aggregates
## 67                                                     Aggregates
## 68                                                     Aggregates
## 69                                                     Aggregates
## 70                                                     Aggregates
## 71                                                     Aggregates
## 72                                                     Aggregates
## 73                                                     Aggregates
## 74                                                     Aggregates
## 75                                                     Aggregates
## 76                                                     Aggregates
## 77                                                     Aggregates
## 78                                                     Aggregates
## 79                                                     Aggregates
## 80                                                     Aggregates
## 81                                                     Aggregates
## 82                                                     Aggregates
## 83                                                     Aggregates
## 84                                                     Aggregates
## 85                                                     Aggregates
## 86                                                     Aggregates
## 87                                                     Aggregates
## 88                                                     Aggregates
## 89                                                     Aggregates
## 90                                                     Aggregates
## 91                                                     Aggregates
## 92                                                     Aggregates
## 93                                                     Aggregates
## 94                                                     Aggregates
## 95                                                     Aggregates
## 96                                                     Aggregates
## 97                                                     Aggregates
## 98                                                     Aggregates
## 99                                                     Aggregates
## 100                                                    Aggregates
## 101                                                    Aggregates
## 102                                                    Aggregates
## 103                                                    Aggregates
## 104                                                    Aggregates
## 105                                                    Aggregates
## 106                                                    Aggregates
## 107                                                    Aggregates
## 108                                                    Aggregates
## 109                                                    Aggregates
## 110                                                    Aggregates
## 111                                                    Aggregates
## 112                                                    Aggregates
## 113                                                    Aggregates
## 114                                                    Aggregates
## 115                                                    Aggregates
## 116                                                    Aggregates
## 117                                                    Aggregates
## 118                                                    Aggregates
## 119                                                    Aggregates
## 120                                                    Aggregates
## 121                                                    Aggregates
## 122                                                    Aggregates
## 123                                                    Aggregates
## 124                                                    Aggregates
## 125                                                    Aggregates
## 126                                                    Aggregates
## 127                                                    Aggregates
## 128                                                    Aggregates
## 129                                                    Aggregates
## 130                                                    Aggregates
## 131                                                    Aggregates
## 132                                                    Aggregates
## 133                                                    Aggregates
## 134                                                    Aggregates
## 135                                                    Aggregates
## 136                                                    Aggregates
## 137                                                    Aggregates
## 138                                                    Aggregates
## 139                                                    Aggregates
## 140                                                    Aggregates
## 141                                                    Aggregates
## 142                                                    Aggregates
## 143                                                    Aggregates
## 144                                                    Aggregates
## 145                                                    Aggregates
## 146                                                    Aggregates
## 147                                                    Aggregates
## 148                                                    Aggregates
## 149                                                    Aggregates
## 150                                                    Aggregates
## 151                                                    Aggregates
## 152                                                    Aggregates
## 153                                                    Aggregates
## 154                                                    Aggregates
## 155                                                    Aggregates
## 156                                                    Aggregates
## 157                                                    Aggregates
## 158                                                    Aggregates
## 159                                                    Aggregates
## 160                                                    Aggregates
## 161                                                    Aggregates
## 162                                                    Aggregates
## 163                                                    Aggregates
## 164                                                    Aggregates
## 165                                                    Aggregates
## 166                                                    Aggregates
## 167                                                    Aggregates
## 168                                                    Aggregates
## 169                                                    Aggregates
## 170                                                    Aggregates
## 171                                                    Aggregates
## 172                                                    Aggregates
## 173                                                    Aggregates
## 174                                                    Aggregates
## 175                                                    Aggregates
## 176                                                    Aggregates
## 177                                                    Aggregates
## 178                                                    Aggregates
## 179                                                    Aggregates
## 180                                                    Aggregates
## 181                                                    Aggregates
## 182                                                    Aggregates
## 183                                                    Aggregates
## 184                                                    Aggregates
## 185                                                    Aggregates
## 186                                                    Aggregates
## 187               Tirane    19.8172   41.3317 Upper middle income
## 188               Tirane    19.8172   41.3317 Upper middle income
## 189               Tirane    19.8172   41.3317 Upper middle income
## 190               Tirane    19.8172   41.3317 Upper middle income
## 191               Tirane    19.8172   41.3317 Upper middle income
## 192               Tirane    19.8172   41.3317 Upper middle income
## 193               Tirane    19.8172   41.3317 Upper middle income
## 194               Tirane    19.8172   41.3317 Upper middle income
## 195               Tirane    19.8172   41.3317 Upper middle income
## 196               Tirane    19.8172   41.3317 Upper middle income
## 197               Tirane    19.8172   41.3317 Upper middle income
## 198               Tirane    19.8172   41.3317 Upper middle income
## 199               Tirane    19.8172   41.3317 Upper middle income
## 200               Tirane    19.8172   41.3317 Upper middle income
## 201               Tirane    19.8172   41.3317 Upper middle income
## 202               Tirane    19.8172   41.3317 Upper middle income
## 203               Tirane    19.8172   41.3317 Upper middle income
## 204               Tirane    19.8172   41.3317 Upper middle income
## 205               Tirane    19.8172   41.3317 Upper middle income
## 206               Tirane    19.8172   41.3317 Upper middle income
## 207               Tirane    19.8172   41.3317 Upper middle income
## 208               Tirane    19.8172   41.3317 Upper middle income
## 209               Tirane    19.8172   41.3317 Upper middle income
## 210               Tirane    19.8172   41.3317 Upper middle income
## 211               Tirane    19.8172   41.3317 Upper middle income
## 212               Tirane    19.8172   41.3317 Upper middle income
## 213               Tirane    19.8172   41.3317 Upper middle income
## 214               Tirane    19.8172   41.3317 Upper middle income
## 215               Tirane    19.8172   41.3317 Upper middle income
## 216               Tirane    19.8172   41.3317 Upper middle income
## 217               Tirane    19.8172   41.3317 Upper middle income
## 218               Tirane    19.8172   41.3317 Upper middle income
## 219               Tirane    19.8172   41.3317 Upper middle income
## 220               Tirane    19.8172   41.3317 Upper middle income
## 221               Tirane    19.8172   41.3317 Upper middle income
## 222               Tirane    19.8172   41.3317 Upper middle income
## 223               Tirane    19.8172   41.3317 Upper middle income
## 224               Tirane    19.8172   41.3317 Upper middle income
## 225               Tirane    19.8172   41.3317 Upper middle income
## 226               Tirane    19.8172   41.3317 Upper middle income
## 227               Tirane    19.8172   41.3317 Upper middle income
## 228               Tirane    19.8172   41.3317 Upper middle income
## 229               Tirane    19.8172   41.3317 Upper middle income
## 230               Tirane    19.8172   41.3317 Upper middle income
## 231               Tirane    19.8172   41.3317 Upper middle income
## 232               Tirane    19.8172   41.3317 Upper middle income
## 233               Tirane    19.8172   41.3317 Upper middle income
## 234               Tirane    19.8172   41.3317 Upper middle income
## 235               Tirane    19.8172   41.3317 Upper middle income
## 236               Tirane    19.8172   41.3317 Upper middle income
## 237               Tirane    19.8172   41.3317 Upper middle income
## 238               Tirane    19.8172   41.3317 Upper middle income
## 239               Tirane    19.8172   41.3317 Upper middle income
## 240               Tirane    19.8172   41.3317 Upper middle income
## 241               Tirane    19.8172   41.3317 Upper middle income
## 242               Tirane    19.8172   41.3317 Upper middle income
## 243               Tirane    19.8172   41.3317 Upper middle income
## 244               Tirane    19.8172   41.3317 Upper middle income
## 245               Tirane    19.8172   41.3317 Upper middle income
## 246               Tirane    19.8172   41.3317 Upper middle income
## 247               Tirane    19.8172   41.3317 Upper middle income
## 248               Tirane    19.8172   41.3317 Upper middle income
## 249              Algiers    3.05097   36.7397 Lower middle income
## 250              Algiers    3.05097   36.7397 Lower middle income
## 251              Algiers    3.05097   36.7397 Lower middle income
## 252              Algiers    3.05097   36.7397 Lower middle income
## 253              Algiers    3.05097   36.7397 Lower middle income
## 254              Algiers    3.05097   36.7397 Lower middle income
## 255              Algiers    3.05097   36.7397 Lower middle income
## 256              Algiers    3.05097   36.7397 Lower middle income
## 257              Algiers    3.05097   36.7397 Lower middle income
## 258              Algiers    3.05097   36.7397 Lower middle income
## 259              Algiers    3.05097   36.7397 Lower middle income
## 260              Algiers    3.05097   36.7397 Lower middle income
## 261              Algiers    3.05097   36.7397 Lower middle income
## 262              Algiers    3.05097   36.7397 Lower middle income
## 263              Algiers    3.05097   36.7397 Lower middle income
## 264              Algiers    3.05097   36.7397 Lower middle income
## 265              Algiers    3.05097   36.7397 Lower middle income
## 266              Algiers    3.05097   36.7397 Lower middle income
## 267              Algiers    3.05097   36.7397 Lower middle income
## 268              Algiers    3.05097   36.7397 Lower middle income
## 269              Algiers    3.05097   36.7397 Lower middle income
## 270              Algiers    3.05097   36.7397 Lower middle income
## 271              Algiers    3.05097   36.7397 Lower middle income
## 272              Algiers    3.05097   36.7397 Lower middle income
## 273              Algiers    3.05097   36.7397 Lower middle income
## 274              Algiers    3.05097   36.7397 Lower middle income
## 275              Algiers    3.05097   36.7397 Lower middle income
## 276              Algiers    3.05097   36.7397 Lower middle income
## 277              Algiers    3.05097   36.7397 Lower middle income
## 278              Algiers    3.05097   36.7397 Lower middle income
## 279              Algiers    3.05097   36.7397 Lower middle income
## 280              Algiers    3.05097   36.7397 Lower middle income
## 281              Algiers    3.05097   36.7397 Lower middle income
## 282              Algiers    3.05097   36.7397 Lower middle income
## 283              Algiers    3.05097   36.7397 Lower middle income
## 284              Algiers    3.05097   36.7397 Lower middle income
## 285              Algiers    3.05097   36.7397 Lower middle income
## 286              Algiers    3.05097   36.7397 Lower middle income
## 287              Algiers    3.05097   36.7397 Lower middle income
## 288              Algiers    3.05097   36.7397 Lower middle income
## 289              Algiers    3.05097   36.7397 Lower middle income
## 290              Algiers    3.05097   36.7397 Lower middle income
## 291              Algiers    3.05097   36.7397 Lower middle income
## 292              Algiers    3.05097   36.7397 Lower middle income
## 293              Algiers    3.05097   36.7397 Lower middle income
## 294              Algiers    3.05097   36.7397 Lower middle income
## 295              Algiers    3.05097   36.7397 Lower middle income
## 296              Algiers    3.05097   36.7397 Lower middle income
## 297              Algiers    3.05097   36.7397 Lower middle income
## 298              Algiers    3.05097   36.7397 Lower middle income
## 299              Algiers    3.05097   36.7397 Lower middle income
## 300              Algiers    3.05097   36.7397 Lower middle income
## 301              Algiers    3.05097   36.7397 Lower middle income
## 302              Algiers    3.05097   36.7397 Lower middle income
## 303              Algiers    3.05097   36.7397 Lower middle income
## 304              Algiers    3.05097   36.7397 Lower middle income
## 305              Algiers    3.05097   36.7397 Lower middle income
## 306              Algiers    3.05097   36.7397 Lower middle income
## 307              Algiers    3.05097   36.7397 Lower middle income
## 308              Algiers    3.05097   36.7397 Lower middle income
## 309              Algiers    3.05097   36.7397 Lower middle income
## 310              Algiers    3.05097   36.7397 Lower middle income
## 311            Pago Pago   -170.691  -14.2846 Upper middle income
## 312            Pago Pago   -170.691  -14.2846 Upper middle income
## 313            Pago Pago   -170.691  -14.2846 Upper middle income
## 314            Pago Pago   -170.691  -14.2846 Upper middle income
## 315            Pago Pago   -170.691  -14.2846 Upper middle income
## 316            Pago Pago   -170.691  -14.2846 Upper middle income
## 317            Pago Pago   -170.691  -14.2846 Upper middle income
## 318            Pago Pago   -170.691  -14.2846 Upper middle income
## 319            Pago Pago   -170.691  -14.2846 Upper middle income
## 320            Pago Pago   -170.691  -14.2846 Upper middle income
## 321            Pago Pago   -170.691  -14.2846 Upper middle income
## 322            Pago Pago   -170.691  -14.2846 Upper middle income
## 323            Pago Pago   -170.691  -14.2846 Upper middle income
## 324            Pago Pago   -170.691  -14.2846 Upper middle income
## 325            Pago Pago   -170.691  -14.2846 Upper middle income
## 326            Pago Pago   -170.691  -14.2846 Upper middle income
## 327            Pago Pago   -170.691  -14.2846 Upper middle income
## 328            Pago Pago   -170.691  -14.2846 Upper middle income
## 329            Pago Pago   -170.691  -14.2846 Upper middle income
## 330            Pago Pago   -170.691  -14.2846 Upper middle income
## 331            Pago Pago   -170.691  -14.2846 Upper middle income
## 332            Pago Pago   -170.691  -14.2846 Upper middle income
## 333            Pago Pago   -170.691  -14.2846 Upper middle income
## 334            Pago Pago   -170.691  -14.2846 Upper middle income
## 335            Pago Pago   -170.691  -14.2846 Upper middle income
## 336            Pago Pago   -170.691  -14.2846 Upper middle income
## 337            Pago Pago   -170.691  -14.2846 Upper middle income
## 338            Pago Pago   -170.691  -14.2846 Upper middle income
## 339            Pago Pago   -170.691  -14.2846 Upper middle income
## 340            Pago Pago   -170.691  -14.2846 Upper middle income
## 341            Pago Pago   -170.691  -14.2846 Upper middle income
## 342            Pago Pago   -170.691  -14.2846 Upper middle income
## 343            Pago Pago   -170.691  -14.2846 Upper middle income
## 344            Pago Pago   -170.691  -14.2846 Upper middle income
## 345            Pago Pago   -170.691  -14.2846 Upper middle income
## 346            Pago Pago   -170.691  -14.2846 Upper middle income
## 347            Pago Pago   -170.691  -14.2846 Upper middle income
## 348            Pago Pago   -170.691  -14.2846 Upper middle income
## 349            Pago Pago   -170.691  -14.2846 Upper middle income
## 350            Pago Pago   -170.691  -14.2846 Upper middle income
## 351            Pago Pago   -170.691  -14.2846 Upper middle income
## 352            Pago Pago   -170.691  -14.2846 Upper middle income
## 353            Pago Pago   -170.691  -14.2846 Upper middle income
## 354            Pago Pago   -170.691  -14.2846 Upper middle income
## 355            Pago Pago   -170.691  -14.2846 Upper middle income
## 356            Pago Pago   -170.691  -14.2846 Upper middle income
## 357            Pago Pago   -170.691  -14.2846 Upper middle income
## 358            Pago Pago   -170.691  -14.2846 Upper middle income
## 359            Pago Pago   -170.691  -14.2846 Upper middle income
## 360            Pago Pago   -170.691  -14.2846 Upper middle income
## 361            Pago Pago   -170.691  -14.2846 Upper middle income
## 362            Pago Pago   -170.691  -14.2846 Upper middle income
## 363            Pago Pago   -170.691  -14.2846 Upper middle income
## 364            Pago Pago   -170.691  -14.2846 Upper middle income
## 365            Pago Pago   -170.691  -14.2846 Upper middle income
## 366            Pago Pago   -170.691  -14.2846 Upper middle income
## 367            Pago Pago   -170.691  -14.2846 Upper middle income
## 368            Pago Pago   -170.691  -14.2846 Upper middle income
## 369            Pago Pago   -170.691  -14.2846 Upper middle income
## 370            Pago Pago   -170.691  -14.2846 Upper middle income
## 371            Pago Pago   -170.691  -14.2846 Upper middle income
## 372            Pago Pago   -170.691  -14.2846 Upper middle income
## 373     Andorra la Vella     1.5218   42.5075         High income
## 374     Andorra la Vella     1.5218   42.5075         High income
## 375     Andorra la Vella     1.5218   42.5075         High income
## 376     Andorra la Vella     1.5218   42.5075         High income
## 377     Andorra la Vella     1.5218   42.5075         High income
## 378     Andorra la Vella     1.5218   42.5075         High income
## 379     Andorra la Vella     1.5218   42.5075         High income
## 380     Andorra la Vella     1.5218   42.5075         High income
## 381     Andorra la Vella     1.5218   42.5075         High income
## 382     Andorra la Vella     1.5218   42.5075         High income
## 383     Andorra la Vella     1.5218   42.5075         High income
## 384     Andorra la Vella     1.5218   42.5075         High income
## 385     Andorra la Vella     1.5218   42.5075         High income
## 386     Andorra la Vella     1.5218   42.5075         High income
## 387     Andorra la Vella     1.5218   42.5075         High income
## 388     Andorra la Vella     1.5218   42.5075         High income
## 389     Andorra la Vella     1.5218   42.5075         High income
## 390     Andorra la Vella     1.5218   42.5075         High income
## 391     Andorra la Vella     1.5218   42.5075         High income
## 392     Andorra la Vella     1.5218   42.5075         High income
## 393     Andorra la Vella     1.5218   42.5075         High income
## 394     Andorra la Vella     1.5218   42.5075         High income
## 395     Andorra la Vella     1.5218   42.5075         High income
## 396     Andorra la Vella     1.5218   42.5075         High income
## 397     Andorra la Vella     1.5218   42.5075         High income
## 398     Andorra la Vella     1.5218   42.5075         High income
## 399     Andorra la Vella     1.5218   42.5075         High income
## 400     Andorra la Vella     1.5218   42.5075         High income
## 401     Andorra la Vella     1.5218   42.5075         High income
## 402     Andorra la Vella     1.5218   42.5075         High income
## 403     Andorra la Vella     1.5218   42.5075         High income
## 404     Andorra la Vella     1.5218   42.5075         High income
## 405     Andorra la Vella     1.5218   42.5075         High income
## 406     Andorra la Vella     1.5218   42.5075         High income
## 407     Andorra la Vella     1.5218   42.5075         High income
## 408     Andorra la Vella     1.5218   42.5075         High income
## 409     Andorra la Vella     1.5218   42.5075         High income
## 410     Andorra la Vella     1.5218   42.5075         High income
## 411     Andorra la Vella     1.5218   42.5075         High income
## 412     Andorra la Vella     1.5218   42.5075         High income
## 413     Andorra la Vella     1.5218   42.5075         High income
## 414     Andorra la Vella     1.5218   42.5075         High income
## 415     Andorra la Vella     1.5218   42.5075         High income
## 416     Andorra la Vella     1.5218   42.5075         High income
## 417     Andorra la Vella     1.5218   42.5075         High income
## 418     Andorra la Vella     1.5218   42.5075         High income
## 419     Andorra la Vella     1.5218   42.5075         High income
## 420     Andorra la Vella     1.5218   42.5075         High income
## 421     Andorra la Vella     1.5218   42.5075         High income
## 422     Andorra la Vella     1.5218   42.5075         High income
## 423     Andorra la Vella     1.5218   42.5075         High income
## 424     Andorra la Vella     1.5218   42.5075         High income
## 425     Andorra la Vella     1.5218   42.5075         High income
## 426     Andorra la Vella     1.5218   42.5075         High income
## 427     Andorra la Vella     1.5218   42.5075         High income
## 428     Andorra la Vella     1.5218   42.5075         High income
## 429     Andorra la Vella     1.5218   42.5075         High income
## 430     Andorra la Vella     1.5218   42.5075         High income
## 431     Andorra la Vella     1.5218   42.5075         High income
## 432     Andorra la Vella     1.5218   42.5075         High income
## 433     Andorra la Vella     1.5218   42.5075         High income
## 434     Andorra la Vella     1.5218   42.5075         High income
## 435               Luanda     13.242  -8.81155 Lower middle income
## 436               Luanda     13.242  -8.81155 Lower middle income
## 437               Luanda     13.242  -8.81155 Lower middle income
## 438               Luanda     13.242  -8.81155 Lower middle income
## 439               Luanda     13.242  -8.81155 Lower middle income
## 440               Luanda     13.242  -8.81155 Lower middle income
## 441               Luanda     13.242  -8.81155 Lower middle income
## 442               Luanda     13.242  -8.81155 Lower middle income
## 443               Luanda     13.242  -8.81155 Lower middle income
## 444               Luanda     13.242  -8.81155 Lower middle income
## 445               Luanda     13.242  -8.81155 Lower middle income
## 446               Luanda     13.242  -8.81155 Lower middle income
## 447               Luanda     13.242  -8.81155 Lower middle income
## 448               Luanda     13.242  -8.81155 Lower middle income
## 449               Luanda     13.242  -8.81155 Lower middle income
## 450               Luanda     13.242  -8.81155 Lower middle income
## 451               Luanda     13.242  -8.81155 Lower middle income
## 452               Luanda     13.242  -8.81155 Lower middle income
## 453               Luanda     13.242  -8.81155 Lower middle income
## 454               Luanda     13.242  -8.81155 Lower middle income
## 455               Luanda     13.242  -8.81155 Lower middle income
## 456               Luanda     13.242  -8.81155 Lower middle income
## 457               Luanda     13.242  -8.81155 Lower middle income
## 458               Luanda     13.242  -8.81155 Lower middle income
## 459               Luanda     13.242  -8.81155 Lower middle income
## 460               Luanda     13.242  -8.81155 Lower middle income
## 461               Luanda     13.242  -8.81155 Lower middle income
## 462               Luanda     13.242  -8.81155 Lower middle income
## 463               Luanda     13.242  -8.81155 Lower middle income
## 464               Luanda     13.242  -8.81155 Lower middle income
## 465               Luanda     13.242  -8.81155 Lower middle income
## 466               Luanda     13.242  -8.81155 Lower middle income
## 467               Luanda     13.242  -8.81155 Lower middle income
## 468               Luanda     13.242  -8.81155 Lower middle income
## 469               Luanda     13.242  -8.81155 Lower middle income
## 470               Luanda     13.242  -8.81155 Lower middle income
## 471               Luanda     13.242  -8.81155 Lower middle income
## 472               Luanda     13.242  -8.81155 Lower middle income
## 473               Luanda     13.242  -8.81155 Lower middle income
## 474               Luanda     13.242  -8.81155 Lower middle income
## 475               Luanda     13.242  -8.81155 Lower middle income
## 476               Luanda     13.242  -8.81155 Lower middle income
## 477               Luanda     13.242  -8.81155 Lower middle income
## 478               Luanda     13.242  -8.81155 Lower middle income
## 479               Luanda     13.242  -8.81155 Lower middle income
## 480               Luanda     13.242  -8.81155 Lower middle income
## 481               Luanda     13.242  -8.81155 Lower middle income
## 482               Luanda     13.242  -8.81155 Lower middle income
## 483               Luanda     13.242  -8.81155 Lower middle income
## 484               Luanda     13.242  -8.81155 Lower middle income
## 485               Luanda     13.242  -8.81155 Lower middle income
## 486               Luanda     13.242  -8.81155 Lower middle income
## 487               Luanda     13.242  -8.81155 Lower middle income
## 488               Luanda     13.242  -8.81155 Lower middle income
## 489               Luanda     13.242  -8.81155 Lower middle income
## 490               Luanda     13.242  -8.81155 Lower middle income
## 491               Luanda     13.242  -8.81155 Lower middle income
## 492               Luanda     13.242  -8.81155 Lower middle income
## 493               Luanda     13.242  -8.81155 Lower middle income
## 494               Luanda     13.242  -8.81155 Lower middle income
## 495               Luanda     13.242  -8.81155 Lower middle income
## 496               Luanda     13.242  -8.81155 Lower middle income
## 497         Saint John's   -61.8456   17.1175         High income
## 498         Saint John's   -61.8456   17.1175         High income
## 499         Saint John's   -61.8456   17.1175         High income
## 500         Saint John's   -61.8456   17.1175         High income
## 501         Saint John's   -61.8456   17.1175         High income
## 502         Saint John's   -61.8456   17.1175         High income
## 503         Saint John's   -61.8456   17.1175         High income
## 504         Saint John's   -61.8456   17.1175         High income
## 505         Saint John's   -61.8456   17.1175         High income
## 506         Saint John's   -61.8456   17.1175         High income
## 507         Saint John's   -61.8456   17.1175         High income
## 508         Saint John's   -61.8456   17.1175         High income
## 509         Saint John's   -61.8456   17.1175         High income
## 510         Saint John's   -61.8456   17.1175         High income
## 511         Saint John's   -61.8456   17.1175         High income
## 512         Saint John's   -61.8456   17.1175         High income
## 513         Saint John's   -61.8456   17.1175         High income
## 514         Saint John's   -61.8456   17.1175         High income
## 515         Saint John's   -61.8456   17.1175         High income
## 516         Saint John's   -61.8456   17.1175         High income
## 517         Saint John's   -61.8456   17.1175         High income
## 518         Saint John's   -61.8456   17.1175         High income
## 519         Saint John's   -61.8456   17.1175         High income
## 520         Saint John's   -61.8456   17.1175         High income
## 521         Saint John's   -61.8456   17.1175         High income
## 522         Saint John's   -61.8456   17.1175         High income
## 523         Saint John's   -61.8456   17.1175         High income
## 524         Saint John's   -61.8456   17.1175         High income
## 525         Saint John's   -61.8456   17.1175         High income
## 526         Saint John's   -61.8456   17.1175         High income
## 527         Saint John's   -61.8456   17.1175         High income
## 528         Saint John's   -61.8456   17.1175         High income
## 529         Saint John's   -61.8456   17.1175         High income
## 530         Saint John's   -61.8456   17.1175         High income
## 531         Saint John's   -61.8456   17.1175         High income
## 532         Saint John's   -61.8456   17.1175         High income
## 533         Saint John's   -61.8456   17.1175         High income
## 534         Saint John's   -61.8456   17.1175         High income
## 535         Saint John's   -61.8456   17.1175         High income
## 536         Saint John's   -61.8456   17.1175         High income
## 537         Saint John's   -61.8456   17.1175         High income
## 538         Saint John's   -61.8456   17.1175         High income
## 539         Saint John's   -61.8456   17.1175         High income
## 540         Saint John's   -61.8456   17.1175         High income
## 541         Saint John's   -61.8456   17.1175         High income
## 542         Saint John's   -61.8456   17.1175         High income
## 543         Saint John's   -61.8456   17.1175         High income
## 544         Saint John's   -61.8456   17.1175         High income
## 545         Saint John's   -61.8456   17.1175         High income
## 546         Saint John's   -61.8456   17.1175         High income
## 547         Saint John's   -61.8456   17.1175         High income
## 548         Saint John's   -61.8456   17.1175         High income
## 549         Saint John's   -61.8456   17.1175         High income
## 550         Saint John's   -61.8456   17.1175         High income
## 551         Saint John's   -61.8456   17.1175         High income
## 552         Saint John's   -61.8456   17.1175         High income
## 553         Saint John's   -61.8456   17.1175         High income
## 554         Saint John's   -61.8456   17.1175         High income
## 555         Saint John's   -61.8456   17.1175         High income
## 556         Saint John's   -61.8456   17.1175         High income
## 557         Saint John's   -61.8456   17.1175         High income
## 558         Saint John's   -61.8456   17.1175         High income
## 559                                                    Aggregates
## 560                                                    Aggregates
## 561                                                    Aggregates
## 562                                                    Aggregates
## 563                                                    Aggregates
## 564                                                    Aggregates
## 565                                                    Aggregates
## 566                                                    Aggregates
## 567                                                    Aggregates
## 568                                                    Aggregates
## 569                                                    Aggregates
## 570                                                    Aggregates
## 571                                                    Aggregates
## 572                                                    Aggregates
## 573                                                    Aggregates
## 574                                                    Aggregates
## 575                                                    Aggregates
## 576                                                    Aggregates
## 577                                                    Aggregates
## 578                                                    Aggregates
## 579                                                    Aggregates
## 580                                                    Aggregates
## 581                                                    Aggregates
## 582                                                    Aggregates
## 583                                                    Aggregates
## 584                                                    Aggregates
## 585                                                    Aggregates
## 586                                                    Aggregates
## 587                                                    Aggregates
## 588                                                    Aggregates
## 589                                                    Aggregates
## 590                                                    Aggregates
## 591                                                    Aggregates
## 592                                                    Aggregates
## 593                                                    Aggregates
## 594                                                    Aggregates
## 595                                                    Aggregates
## 596                                                    Aggregates
## 597                                                    Aggregates
## 598                                                    Aggregates
## 599                                                    Aggregates
## 600                                                    Aggregates
## 601                                                    Aggregates
## 602                                                    Aggregates
## 603                                                    Aggregates
## 604                                                    Aggregates
## 605                                                    Aggregates
## 606                                                    Aggregates
## 607                                                    Aggregates
## 608                                                    Aggregates
## 609                                                    Aggregates
## 610                                                    Aggregates
## 611                                                    Aggregates
## 612                                                    Aggregates
## 613                                                    Aggregates
## 614                                                    Aggregates
## 615                                                    Aggregates
## 616                                                    Aggregates
## 617                                                    Aggregates
## 618                                                    Aggregates
## 619                                                    Aggregates
## 620                                                    Aggregates
## 621         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 622         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 623         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 624         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 625         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 626         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 627         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 628         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 629         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 630         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 631         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 632         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 633         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 634         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 635         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 636         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 637         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 638         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 639         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 640         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 641         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 642         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 643         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 644         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 645         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 646         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 647         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 648         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 649         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 650         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 651         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 652         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 653         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 654         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 655         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 656         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 657         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 658         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 659         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 660         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 661         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 662         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 663         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 664         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 665         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 666         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 667         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 668         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 669         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 670         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 671         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 672         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 673         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 674         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 675         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 676         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 677         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 678         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 679         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 680         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 681         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 682         Buenos Aires   -58.4173  -34.6118 Upper middle income
## 683              Yerevan     44.509   40.1596 Upper middle income
## 684              Yerevan     44.509   40.1596 Upper middle income
## 685              Yerevan     44.509   40.1596 Upper middle income
## 686              Yerevan     44.509   40.1596 Upper middle income
## 687              Yerevan     44.509   40.1596 Upper middle income
## 688              Yerevan     44.509   40.1596 Upper middle income
## 689              Yerevan     44.509   40.1596 Upper middle income
## 690              Yerevan     44.509   40.1596 Upper middle income
## 691              Yerevan     44.509   40.1596 Upper middle income
## 692              Yerevan     44.509   40.1596 Upper middle income
## 693              Yerevan     44.509   40.1596 Upper middle income
## 694              Yerevan     44.509   40.1596 Upper middle income
## 695              Yerevan     44.509   40.1596 Upper middle income
## 696              Yerevan     44.509   40.1596 Upper middle income
## 697              Yerevan     44.509   40.1596 Upper middle income
## 698              Yerevan     44.509   40.1596 Upper middle income
## 699              Yerevan     44.509   40.1596 Upper middle income
## 700              Yerevan     44.509   40.1596 Upper middle income
## 701              Yerevan     44.509   40.1596 Upper middle income
## 702              Yerevan     44.509   40.1596 Upper middle income
## 703              Yerevan     44.509   40.1596 Upper middle income
## 704              Yerevan     44.509   40.1596 Upper middle income
## 705              Yerevan     44.509   40.1596 Upper middle income
## 706              Yerevan     44.509   40.1596 Upper middle income
## 707              Yerevan     44.509   40.1596 Upper middle income
## 708              Yerevan     44.509   40.1596 Upper middle income
## 709              Yerevan     44.509   40.1596 Upper middle income
## 710              Yerevan     44.509   40.1596 Upper middle income
## 711              Yerevan     44.509   40.1596 Upper middle income
## 712              Yerevan     44.509   40.1596 Upper middle income
## 713              Yerevan     44.509   40.1596 Upper middle income
## 714              Yerevan     44.509   40.1596 Upper middle income
## 715              Yerevan     44.509   40.1596 Upper middle income
## 716              Yerevan     44.509   40.1596 Upper middle income
## 717              Yerevan     44.509   40.1596 Upper middle income
## 718              Yerevan     44.509   40.1596 Upper middle income
## 719              Yerevan     44.509   40.1596 Upper middle income
## 720              Yerevan     44.509   40.1596 Upper middle income
## 721              Yerevan     44.509   40.1596 Upper middle income
## 722              Yerevan     44.509   40.1596 Upper middle income
## 723              Yerevan     44.509   40.1596 Upper middle income
## 724              Yerevan     44.509   40.1596 Upper middle income
## 725              Yerevan     44.509   40.1596 Upper middle income
## 726              Yerevan     44.509   40.1596 Upper middle income
## 727              Yerevan     44.509   40.1596 Upper middle income
## 728              Yerevan     44.509   40.1596 Upper middle income
## 729              Yerevan     44.509   40.1596 Upper middle income
## 730              Yerevan     44.509   40.1596 Upper middle income
## 731              Yerevan     44.509   40.1596 Upper middle income
## 732              Yerevan     44.509   40.1596 Upper middle income
## 733              Yerevan     44.509   40.1596 Upper middle income
## 734              Yerevan     44.509   40.1596 Upper middle income
## 735              Yerevan     44.509   40.1596 Upper middle income
## 736              Yerevan     44.509   40.1596 Upper middle income
## 737              Yerevan     44.509   40.1596 Upper middle income
## 738              Yerevan     44.509   40.1596 Upper middle income
## 739              Yerevan     44.509   40.1596 Upper middle income
## 740              Yerevan     44.509   40.1596 Upper middle income
## 741              Yerevan     44.509   40.1596 Upper middle income
## 742              Yerevan     44.509   40.1596 Upper middle income
## 743              Yerevan     44.509   40.1596 Upper middle income
## 744              Yerevan     44.509   40.1596 Upper middle income
## 745           Oranjestad   -70.0167   12.5167         High income
## 746           Oranjestad   -70.0167   12.5167         High income
## 747           Oranjestad   -70.0167   12.5167         High income
## 748           Oranjestad   -70.0167   12.5167         High income
## 749           Oranjestad   -70.0167   12.5167         High income
## 750           Oranjestad   -70.0167   12.5167         High income
## 751           Oranjestad   -70.0167   12.5167         High income
## 752           Oranjestad   -70.0167   12.5167         High income
## 753           Oranjestad   -70.0167   12.5167         High income
## 754           Oranjestad   -70.0167   12.5167         High income
## 755           Oranjestad   -70.0167   12.5167         High income
## 756           Oranjestad   -70.0167   12.5167         High income
## 757           Oranjestad   -70.0167   12.5167         High income
## 758           Oranjestad   -70.0167   12.5167         High income
## 759           Oranjestad   -70.0167   12.5167         High income
## 760           Oranjestad   -70.0167   12.5167         High income
## 761           Oranjestad   -70.0167   12.5167         High income
## 762           Oranjestad   -70.0167   12.5167         High income
## 763           Oranjestad   -70.0167   12.5167         High income
## 764           Oranjestad   -70.0167   12.5167         High income
## 765           Oranjestad   -70.0167   12.5167         High income
## 766           Oranjestad   -70.0167   12.5167         High income
## 767           Oranjestad   -70.0167   12.5167         High income
## 768           Oranjestad   -70.0167   12.5167         High income
## 769           Oranjestad   -70.0167   12.5167         High income
## 770           Oranjestad   -70.0167   12.5167         High income
## 771           Oranjestad   -70.0167   12.5167         High income
## 772           Oranjestad   -70.0167   12.5167         High income
## 773           Oranjestad   -70.0167   12.5167         High income
## 774           Oranjestad   -70.0167   12.5167         High income
## 775           Oranjestad   -70.0167   12.5167         High income
## 776           Oranjestad   -70.0167   12.5167         High income
## 777           Oranjestad   -70.0167   12.5167         High income
## 778           Oranjestad   -70.0167   12.5167         High income
## 779           Oranjestad   -70.0167   12.5167         High income
## 780           Oranjestad   -70.0167   12.5167         High income
## 781           Oranjestad   -70.0167   12.5167         High income
## 782           Oranjestad   -70.0167   12.5167         High income
## 783           Oranjestad   -70.0167   12.5167         High income
## 784           Oranjestad   -70.0167   12.5167         High income
## 785           Oranjestad   -70.0167   12.5167         High income
## 786           Oranjestad   -70.0167   12.5167         High income
## 787           Oranjestad   -70.0167   12.5167         High income
## 788           Oranjestad   -70.0167   12.5167         High income
## 789           Oranjestad   -70.0167   12.5167         High income
## 790           Oranjestad   -70.0167   12.5167         High income
## 791           Oranjestad   -70.0167   12.5167         High income
## 792           Oranjestad   -70.0167   12.5167         High income
## 793           Oranjestad   -70.0167   12.5167         High income
## 794           Oranjestad   -70.0167   12.5167         High income
## 795           Oranjestad   -70.0167   12.5167         High income
## 796           Oranjestad   -70.0167   12.5167         High income
## 797           Oranjestad   -70.0167   12.5167         High income
## 798           Oranjestad   -70.0167   12.5167         High income
## 799           Oranjestad   -70.0167   12.5167         High income
## 800           Oranjestad   -70.0167   12.5167         High income
## 801           Oranjestad   -70.0167   12.5167         High income
## 802           Oranjestad   -70.0167   12.5167         High income
## 803           Oranjestad   -70.0167   12.5167         High income
## 804           Oranjestad   -70.0167   12.5167         High income
## 805           Oranjestad   -70.0167   12.5167         High income
## 806           Oranjestad   -70.0167   12.5167         High income
## 807             Canberra    149.129   -35.282         High income
## 808             Canberra    149.129   -35.282         High income
## 809             Canberra    149.129   -35.282         High income
## 810             Canberra    149.129   -35.282         High income
## 811             Canberra    149.129   -35.282         High income
## 812             Canberra    149.129   -35.282         High income
## 813             Canberra    149.129   -35.282         High income
## 814             Canberra    149.129   -35.282         High income
## 815             Canberra    149.129   -35.282         High income
## 816             Canberra    149.129   -35.282         High income
## 817             Canberra    149.129   -35.282         High income
## 818             Canberra    149.129   -35.282         High income
## 819             Canberra    149.129   -35.282         High income
## 820             Canberra    149.129   -35.282         High income
## 821             Canberra    149.129   -35.282         High income
## 822             Canberra    149.129   -35.282         High income
## 823             Canberra    149.129   -35.282         High income
## 824             Canberra    149.129   -35.282         High income
## 825             Canberra    149.129   -35.282         High income
## 826             Canberra    149.129   -35.282         High income
## 827             Canberra    149.129   -35.282         High income
## 828             Canberra    149.129   -35.282         High income
## 829             Canberra    149.129   -35.282         High income
## 830             Canberra    149.129   -35.282         High income
## 831             Canberra    149.129   -35.282         High income
## 832             Canberra    149.129   -35.282         High income
## 833             Canberra    149.129   -35.282         High income
## 834             Canberra    149.129   -35.282         High income
## 835             Canberra    149.129   -35.282         High income
## 836             Canberra    149.129   -35.282         High income
## 837             Canberra    149.129   -35.282         High income
## 838             Canberra    149.129   -35.282         High income
## 839             Canberra    149.129   -35.282         High income
## 840             Canberra    149.129   -35.282         High income
## 841             Canberra    149.129   -35.282         High income
## 842             Canberra    149.129   -35.282         High income
## 843             Canberra    149.129   -35.282         High income
## 844             Canberra    149.129   -35.282         High income
## 845             Canberra    149.129   -35.282         High income
## 846             Canberra    149.129   -35.282         High income
## 847             Canberra    149.129   -35.282         High income
## 848             Canberra    149.129   -35.282         High income
## 849             Canberra    149.129   -35.282         High income
## 850             Canberra    149.129   -35.282         High income
## 851             Canberra    149.129   -35.282         High income
## 852             Canberra    149.129   -35.282         High income
## 853             Canberra    149.129   -35.282         High income
## 854             Canberra    149.129   -35.282         High income
## 855             Canberra    149.129   -35.282         High income
## 856             Canberra    149.129   -35.282         High income
## 857             Canberra    149.129   -35.282         High income
## 858             Canberra    149.129   -35.282         High income
## 859             Canberra    149.129   -35.282         High income
## 860             Canberra    149.129   -35.282         High income
## 861             Canberra    149.129   -35.282         High income
## 862             Canberra    149.129   -35.282         High income
## 863             Canberra    149.129   -35.282         High income
## 864             Canberra    149.129   -35.282         High income
## 865             Canberra    149.129   -35.282         High income
## 866             Canberra    149.129   -35.282         High income
## 867             Canberra    149.129   -35.282         High income
## 868             Canberra    149.129   -35.282         High income
## 869               Vienna    16.3798   48.2201         High income
## 870               Vienna    16.3798   48.2201         High income
## 871               Vienna    16.3798   48.2201         High income
## 872               Vienna    16.3798   48.2201         High income
## 873               Vienna    16.3798   48.2201         High income
## 874               Vienna    16.3798   48.2201         High income
## 875               Vienna    16.3798   48.2201         High income
## 876               Vienna    16.3798   48.2201         High income
## 877               Vienna    16.3798   48.2201         High income
## 878               Vienna    16.3798   48.2201         High income
## 879               Vienna    16.3798   48.2201         High income
## 880               Vienna    16.3798   48.2201         High income
## 881               Vienna    16.3798   48.2201         High income
## 882               Vienna    16.3798   48.2201         High income
## 883               Vienna    16.3798   48.2201         High income
## 884               Vienna    16.3798   48.2201         High income
## 885               Vienna    16.3798   48.2201         High income
## 886               Vienna    16.3798   48.2201         High income
## 887               Vienna    16.3798   48.2201         High income
## 888               Vienna    16.3798   48.2201         High income
## 889               Vienna    16.3798   48.2201         High income
## 890               Vienna    16.3798   48.2201         High income
## 891               Vienna    16.3798   48.2201         High income
## 892               Vienna    16.3798   48.2201         High income
## 893               Vienna    16.3798   48.2201         High income
## 894               Vienna    16.3798   48.2201         High income
## 895               Vienna    16.3798   48.2201         High income
## 896               Vienna    16.3798   48.2201         High income
## 897               Vienna    16.3798   48.2201         High income
## 898               Vienna    16.3798   48.2201         High income
## 899               Vienna    16.3798   48.2201         High income
## 900               Vienna    16.3798   48.2201         High income
## 901               Vienna    16.3798   48.2201         High income
## 902               Vienna    16.3798   48.2201         High income
## 903               Vienna    16.3798   48.2201         High income
## 904               Vienna    16.3798   48.2201         High income
## 905               Vienna    16.3798   48.2201         High income
## 906               Vienna    16.3798   48.2201         High income
## 907               Vienna    16.3798   48.2201         High income
## 908               Vienna    16.3798   48.2201         High income
## 909               Vienna    16.3798   48.2201         High income
## 910               Vienna    16.3798   48.2201         High income
## 911               Vienna    16.3798   48.2201         High income
## 912               Vienna    16.3798   48.2201         High income
## 913               Vienna    16.3798   48.2201         High income
## 914               Vienna    16.3798   48.2201         High income
## 915               Vienna    16.3798   48.2201         High income
## 916               Vienna    16.3798   48.2201         High income
## 917               Vienna    16.3798   48.2201         High income
## 918               Vienna    16.3798   48.2201         High income
## 919               Vienna    16.3798   48.2201         High income
## 920               Vienna    16.3798   48.2201         High income
## 921               Vienna    16.3798   48.2201         High income
## 922               Vienna    16.3798   48.2201         High income
## 923               Vienna    16.3798   48.2201         High income
## 924               Vienna    16.3798   48.2201         High income
## 925               Vienna    16.3798   48.2201         High income
## 926               Vienna    16.3798   48.2201         High income
## 927               Vienna    16.3798   48.2201         High income
## 928               Vienna    16.3798   48.2201         High income
## 929               Vienna    16.3798   48.2201         High income
## 930               Vienna    16.3798   48.2201         High income
## 931                 Baku    49.8932   40.3834 Upper middle income
## 932                 Baku    49.8932   40.3834 Upper middle income
## 933                 Baku    49.8932   40.3834 Upper middle income
## 934                 Baku    49.8932   40.3834 Upper middle income
## 935                 Baku    49.8932   40.3834 Upper middle income
## 936                 Baku    49.8932   40.3834 Upper middle income
## 937                 Baku    49.8932   40.3834 Upper middle income
## 938                 Baku    49.8932   40.3834 Upper middle income
## 939                 Baku    49.8932   40.3834 Upper middle income
## 940                 Baku    49.8932   40.3834 Upper middle income
## 941                 Baku    49.8932   40.3834 Upper middle income
## 942                 Baku    49.8932   40.3834 Upper middle income
## 943                 Baku    49.8932   40.3834 Upper middle income
## 944                 Baku    49.8932   40.3834 Upper middle income
## 945                 Baku    49.8932   40.3834 Upper middle income
## 946                 Baku    49.8932   40.3834 Upper middle income
## 947                 Baku    49.8932   40.3834 Upper middle income
## 948                 Baku    49.8932   40.3834 Upper middle income
## 949                 Baku    49.8932   40.3834 Upper middle income
## 950                 Baku    49.8932   40.3834 Upper middle income
## 951                 Baku    49.8932   40.3834 Upper middle income
## 952                 Baku    49.8932   40.3834 Upper middle income
## 953                 Baku    49.8932   40.3834 Upper middle income
## 954                 Baku    49.8932   40.3834 Upper middle income
## 955                 Baku    49.8932   40.3834 Upper middle income
## 956                 Baku    49.8932   40.3834 Upper middle income
## 957                 Baku    49.8932   40.3834 Upper middle income
## 958                 Baku    49.8932   40.3834 Upper middle income
## 959                 Baku    49.8932   40.3834 Upper middle income
## 960                 Baku    49.8932   40.3834 Upper middle income
## 961                 Baku    49.8932   40.3834 Upper middle income
## 962                 Baku    49.8932   40.3834 Upper middle income
## 963                 Baku    49.8932   40.3834 Upper middle income
## 964                 Baku    49.8932   40.3834 Upper middle income
## 965                 Baku    49.8932   40.3834 Upper middle income
## 966                 Baku    49.8932   40.3834 Upper middle income
## 967                 Baku    49.8932   40.3834 Upper middle income
## 968                 Baku    49.8932   40.3834 Upper middle income
## 969                 Baku    49.8932   40.3834 Upper middle income
## 970                 Baku    49.8932   40.3834 Upper middle income
## 971                 Baku    49.8932   40.3834 Upper middle income
## 972                 Baku    49.8932   40.3834 Upper middle income
## 973                 Baku    49.8932   40.3834 Upper middle income
## 974                 Baku    49.8932   40.3834 Upper middle income
## 975                 Baku    49.8932   40.3834 Upper middle income
## 976                 Baku    49.8932   40.3834 Upper middle income
## 977                 Baku    49.8932   40.3834 Upper middle income
## 978                 Baku    49.8932   40.3834 Upper middle income
## 979                 Baku    49.8932   40.3834 Upper middle income
## 980                 Baku    49.8932   40.3834 Upper middle income
## 981                 Baku    49.8932   40.3834 Upper middle income
## 982                 Baku    49.8932   40.3834 Upper middle income
## 983                 Baku    49.8932   40.3834 Upper middle income
## 984                 Baku    49.8932   40.3834 Upper middle income
## 985                 Baku    49.8932   40.3834 Upper middle income
## 986                 Baku    49.8932   40.3834 Upper middle income
## 987                 Baku    49.8932   40.3834 Upper middle income
## 988                 Baku    49.8932   40.3834 Upper middle income
## 989                 Baku    49.8932   40.3834 Upper middle income
## 990                 Baku    49.8932   40.3834 Upper middle income
## 991                 Baku    49.8932   40.3834 Upper middle income
## 992                 Baku    49.8932   40.3834 Upper middle income
## 993               Nassau    -77.339   25.0661         High income
## 994               Nassau    -77.339   25.0661         High income
## 995               Nassau    -77.339   25.0661         High income
## 996               Nassau    -77.339   25.0661         High income
## 997               Nassau    -77.339   25.0661         High income
## 998               Nassau    -77.339   25.0661         High income
## 999               Nassau    -77.339   25.0661         High income
## 1000              Nassau    -77.339   25.0661         High income
## 1001              Nassau    -77.339   25.0661         High income
## 1002              Nassau    -77.339   25.0661         High income
## 1003              Nassau    -77.339   25.0661         High income
## 1004              Nassau    -77.339   25.0661         High income
## 1005              Nassau    -77.339   25.0661         High income
## 1006              Nassau    -77.339   25.0661         High income
## 1007              Nassau    -77.339   25.0661         High income
## 1008              Nassau    -77.339   25.0661         High income
## 1009              Nassau    -77.339   25.0661         High income
## 1010              Nassau    -77.339   25.0661         High income
## 1011              Nassau    -77.339   25.0661         High income
## 1012              Nassau    -77.339   25.0661         High income
## 1013              Nassau    -77.339   25.0661         High income
## 1014              Nassau    -77.339   25.0661         High income
## 1015              Nassau    -77.339   25.0661         High income
## 1016              Nassau    -77.339   25.0661         High income
## 1017              Nassau    -77.339   25.0661         High income
## 1018              Nassau    -77.339   25.0661         High income
## 1019              Nassau    -77.339   25.0661         High income
## 1020              Nassau    -77.339   25.0661         High income
## 1021              Nassau    -77.339   25.0661         High income
## 1022              Nassau    -77.339   25.0661         High income
## 1023              Nassau    -77.339   25.0661         High income
## 1024              Nassau    -77.339   25.0661         High income
## 1025              Nassau    -77.339   25.0661         High income
## 1026              Nassau    -77.339   25.0661         High income
## 1027              Nassau    -77.339   25.0661         High income
## 1028              Nassau    -77.339   25.0661         High income
## 1029              Nassau    -77.339   25.0661         High income
## 1030              Nassau    -77.339   25.0661         High income
## 1031              Nassau    -77.339   25.0661         High income
## 1032              Nassau    -77.339   25.0661         High income
## 1033              Nassau    -77.339   25.0661         High income
## 1034              Nassau    -77.339   25.0661         High income
## 1035              Nassau    -77.339   25.0661         High income
## 1036              Nassau    -77.339   25.0661         High income
## 1037              Nassau    -77.339   25.0661         High income
## 1038              Nassau    -77.339   25.0661         High income
## 1039              Nassau    -77.339   25.0661         High income
## 1040              Nassau    -77.339   25.0661         High income
## 1041              Nassau    -77.339   25.0661         High income
## 1042              Nassau    -77.339   25.0661         High income
## 1043              Nassau    -77.339   25.0661         High income
## 1044              Nassau    -77.339   25.0661         High income
## 1045              Nassau    -77.339   25.0661         High income
## 1046              Nassau    -77.339   25.0661         High income
## 1047              Nassau    -77.339   25.0661         High income
## 1048              Nassau    -77.339   25.0661         High income
## 1049              Nassau    -77.339   25.0661         High income
## 1050              Nassau    -77.339   25.0661         High income
## 1051              Nassau    -77.339   25.0661         High income
## 1052              Nassau    -77.339   25.0661         High income
## 1053              Nassau    -77.339   25.0661         High income
## 1054              Nassau    -77.339   25.0661         High income
## 1055              Manama    50.5354   26.1921         High income
## 1056              Manama    50.5354   26.1921         High income
## 1057              Manama    50.5354   26.1921         High income
## 1058              Manama    50.5354   26.1921         High income
## 1059              Manama    50.5354   26.1921         High income
## 1060              Manama    50.5354   26.1921         High income
## 1061              Manama    50.5354   26.1921         High income
## 1062              Manama    50.5354   26.1921         High income
## 1063              Manama    50.5354   26.1921         High income
## 1064              Manama    50.5354   26.1921         High income
## 1065              Manama    50.5354   26.1921         High income
## 1066              Manama    50.5354   26.1921         High income
## 1067              Manama    50.5354   26.1921         High income
## 1068              Manama    50.5354   26.1921         High income
## 1069              Manama    50.5354   26.1921         High income
## 1070              Manama    50.5354   26.1921         High income
## 1071              Manama    50.5354   26.1921         High income
## 1072              Manama    50.5354   26.1921         High income
## 1073              Manama    50.5354   26.1921         High income
## 1074              Manama    50.5354   26.1921         High income
## 1075              Manama    50.5354   26.1921         High income
## 1076              Manama    50.5354   26.1921         High income
## 1077              Manama    50.5354   26.1921         High income
## 1078              Manama    50.5354   26.1921         High income
## 1079              Manama    50.5354   26.1921         High income
## 1080              Manama    50.5354   26.1921         High income
## 1081              Manama    50.5354   26.1921         High income
## 1082              Manama    50.5354   26.1921         High income
## 1083              Manama    50.5354   26.1921         High income
## 1084              Manama    50.5354   26.1921         High income
## 1085              Manama    50.5354   26.1921         High income
## 1086              Manama    50.5354   26.1921         High income
## 1087              Manama    50.5354   26.1921         High income
## 1088              Manama    50.5354   26.1921         High income
## 1089              Manama    50.5354   26.1921         High income
## 1090              Manama    50.5354   26.1921         High income
## 1091              Manama    50.5354   26.1921         High income
## 1092              Manama    50.5354   26.1921         High income
## 1093              Manama    50.5354   26.1921         High income
## 1094              Manama    50.5354   26.1921         High income
## 1095              Manama    50.5354   26.1921         High income
## 1096              Manama    50.5354   26.1921         High income
## 1097              Manama    50.5354   26.1921         High income
## 1098              Manama    50.5354   26.1921         High income
## 1099              Manama    50.5354   26.1921         High income
## 1100              Manama    50.5354   26.1921         High income
## 1101              Manama    50.5354   26.1921         High income
## 1102              Manama    50.5354   26.1921         High income
## 1103              Manama    50.5354   26.1921         High income
## 1104              Manama    50.5354   26.1921         High income
## 1105              Manama    50.5354   26.1921         High income
## 1106              Manama    50.5354   26.1921         High income
## 1107              Manama    50.5354   26.1921         High income
## 1108              Manama    50.5354   26.1921         High income
## 1109              Manama    50.5354   26.1921         High income
## 1110              Manama    50.5354   26.1921         High income
## 1111              Manama    50.5354   26.1921         High income
## 1112              Manama    50.5354   26.1921         High income
## 1113              Manama    50.5354   26.1921         High income
## 1114              Manama    50.5354   26.1921         High income
## 1115              Manama    50.5354   26.1921         High income
## 1116              Manama    50.5354   26.1921         High income
## 1117               Dhaka    90.4113   23.7055 Lower middle income
## 1118               Dhaka    90.4113   23.7055 Lower middle income
## 1119               Dhaka    90.4113   23.7055 Lower middle income
## 1120               Dhaka    90.4113   23.7055 Lower middle income
## 1121               Dhaka    90.4113   23.7055 Lower middle income
## 1122               Dhaka    90.4113   23.7055 Lower middle income
## 1123               Dhaka    90.4113   23.7055 Lower middle income
## 1124               Dhaka    90.4113   23.7055 Lower middle income
## 1125               Dhaka    90.4113   23.7055 Lower middle income
## 1126               Dhaka    90.4113   23.7055 Lower middle income
## 1127               Dhaka    90.4113   23.7055 Lower middle income
## 1128               Dhaka    90.4113   23.7055 Lower middle income
## 1129               Dhaka    90.4113   23.7055 Lower middle income
## 1130               Dhaka    90.4113   23.7055 Lower middle income
## 1131               Dhaka    90.4113   23.7055 Lower middle income
## 1132               Dhaka    90.4113   23.7055 Lower middle income
## 1133               Dhaka    90.4113   23.7055 Lower middle income
## 1134               Dhaka    90.4113   23.7055 Lower middle income
## 1135               Dhaka    90.4113   23.7055 Lower middle income
## 1136               Dhaka    90.4113   23.7055 Lower middle income
## 1137               Dhaka    90.4113   23.7055 Lower middle income
## 1138               Dhaka    90.4113   23.7055 Lower middle income
## 1139               Dhaka    90.4113   23.7055 Lower middle income
## 1140               Dhaka    90.4113   23.7055 Lower middle income
## 1141               Dhaka    90.4113   23.7055 Lower middle income
## 1142               Dhaka    90.4113   23.7055 Lower middle income
## 1143               Dhaka    90.4113   23.7055 Lower middle income
## 1144               Dhaka    90.4113   23.7055 Lower middle income
## 1145               Dhaka    90.4113   23.7055 Lower middle income
## 1146               Dhaka    90.4113   23.7055 Lower middle income
## 1147               Dhaka    90.4113   23.7055 Lower middle income
## 1148               Dhaka    90.4113   23.7055 Lower middle income
## 1149               Dhaka    90.4113   23.7055 Lower middle income
## 1150               Dhaka    90.4113   23.7055 Lower middle income
## 1151               Dhaka    90.4113   23.7055 Lower middle income
## 1152               Dhaka    90.4113   23.7055 Lower middle income
## 1153               Dhaka    90.4113   23.7055 Lower middle income
## 1154               Dhaka    90.4113   23.7055 Lower middle income
## 1155               Dhaka    90.4113   23.7055 Lower middle income
## 1156               Dhaka    90.4113   23.7055 Lower middle income
## 1157               Dhaka    90.4113   23.7055 Lower middle income
## 1158               Dhaka    90.4113   23.7055 Lower middle income
## 1159               Dhaka    90.4113   23.7055 Lower middle income
## 1160               Dhaka    90.4113   23.7055 Lower middle income
## 1161               Dhaka    90.4113   23.7055 Lower middle income
## 1162               Dhaka    90.4113   23.7055 Lower middle income
## 1163               Dhaka    90.4113   23.7055 Lower middle income
## 1164               Dhaka    90.4113   23.7055 Lower middle income
## 1165               Dhaka    90.4113   23.7055 Lower middle income
## 1166               Dhaka    90.4113   23.7055 Lower middle income
## 1167               Dhaka    90.4113   23.7055 Lower middle income
## 1168               Dhaka    90.4113   23.7055 Lower middle income
## 1169               Dhaka    90.4113   23.7055 Lower middle income
## 1170               Dhaka    90.4113   23.7055 Lower middle income
## 1171               Dhaka    90.4113   23.7055 Lower middle income
## 1172               Dhaka    90.4113   23.7055 Lower middle income
## 1173               Dhaka    90.4113   23.7055 Lower middle income
## 1174               Dhaka    90.4113   23.7055 Lower middle income
## 1175               Dhaka    90.4113   23.7055 Lower middle income
## 1176               Dhaka    90.4113   23.7055 Lower middle income
## 1177               Dhaka    90.4113   23.7055 Lower middle income
## 1178               Dhaka    90.4113   23.7055 Lower middle income
## 1179          Bridgetown   -59.6105   13.0935         High income
## 1180          Bridgetown   -59.6105   13.0935         High income
## 1181          Bridgetown   -59.6105   13.0935         High income
## 1182          Bridgetown   -59.6105   13.0935         High income
## 1183          Bridgetown   -59.6105   13.0935         High income
## 1184          Bridgetown   -59.6105   13.0935         High income
## 1185          Bridgetown   -59.6105   13.0935         High income
## 1186          Bridgetown   -59.6105   13.0935         High income
## 1187          Bridgetown   -59.6105   13.0935         High income
## 1188          Bridgetown   -59.6105   13.0935         High income
## 1189          Bridgetown   -59.6105   13.0935         High income
## 1190          Bridgetown   -59.6105   13.0935         High income
## 1191          Bridgetown   -59.6105   13.0935         High income
## 1192          Bridgetown   -59.6105   13.0935         High income
## 1193          Bridgetown   -59.6105   13.0935         High income
## 1194          Bridgetown   -59.6105   13.0935         High income
## 1195          Bridgetown   -59.6105   13.0935         High income
## 1196          Bridgetown   -59.6105   13.0935         High income
## 1197          Bridgetown   -59.6105   13.0935         High income
## 1198          Bridgetown   -59.6105   13.0935         High income
## 1199          Bridgetown   -59.6105   13.0935         High income
## 1200          Bridgetown   -59.6105   13.0935         High income
## 1201          Bridgetown   -59.6105   13.0935         High income
## 1202          Bridgetown   -59.6105   13.0935         High income
## 1203          Bridgetown   -59.6105   13.0935         High income
## 1204          Bridgetown   -59.6105   13.0935         High income
## 1205          Bridgetown   -59.6105   13.0935         High income
## 1206          Bridgetown   -59.6105   13.0935         High income
## 1207          Bridgetown   -59.6105   13.0935         High income
## 1208          Bridgetown   -59.6105   13.0935         High income
## 1209          Bridgetown   -59.6105   13.0935         High income
## 1210          Bridgetown   -59.6105   13.0935         High income
## 1211          Bridgetown   -59.6105   13.0935         High income
## 1212          Bridgetown   -59.6105   13.0935         High income
## 1213          Bridgetown   -59.6105   13.0935         High income
## 1214          Bridgetown   -59.6105   13.0935         High income
## 1215          Bridgetown   -59.6105   13.0935         High income
## 1216          Bridgetown   -59.6105   13.0935         High income
## 1217          Bridgetown   -59.6105   13.0935         High income
## 1218          Bridgetown   -59.6105   13.0935         High income
## 1219          Bridgetown   -59.6105   13.0935         High income
## 1220          Bridgetown   -59.6105   13.0935         High income
## 1221          Bridgetown   -59.6105   13.0935         High income
## 1222          Bridgetown   -59.6105   13.0935         High income
## 1223          Bridgetown   -59.6105   13.0935         High income
## 1224          Bridgetown   -59.6105   13.0935         High income
## 1225          Bridgetown   -59.6105   13.0935         High income
## 1226          Bridgetown   -59.6105   13.0935         High income
## 1227          Bridgetown   -59.6105   13.0935         High income
## 1228          Bridgetown   -59.6105   13.0935         High income
## 1229          Bridgetown   -59.6105   13.0935         High income
## 1230          Bridgetown   -59.6105   13.0935         High income
## 1231          Bridgetown   -59.6105   13.0935         High income
## 1232          Bridgetown   -59.6105   13.0935         High income
## 1233          Bridgetown   -59.6105   13.0935         High income
## 1234          Bridgetown   -59.6105   13.0935         High income
## 1235          Bridgetown   -59.6105   13.0935         High income
## 1236          Bridgetown   -59.6105   13.0935         High income
## 1237          Bridgetown   -59.6105   13.0935         High income
## 1238          Bridgetown   -59.6105   13.0935         High income
## 1239          Bridgetown   -59.6105   13.0935         High income
## 1240          Bridgetown   -59.6105   13.0935         High income
## 1241               Minsk    27.5766   53.9678 Upper middle income
## 1242               Minsk    27.5766   53.9678 Upper middle income
## 1243               Minsk    27.5766   53.9678 Upper middle income
## 1244               Minsk    27.5766   53.9678 Upper middle income
## 1245               Minsk    27.5766   53.9678 Upper middle income
## 1246               Minsk    27.5766   53.9678 Upper middle income
## 1247               Minsk    27.5766   53.9678 Upper middle income
## 1248               Minsk    27.5766   53.9678 Upper middle income
## 1249               Minsk    27.5766   53.9678 Upper middle income
## 1250               Minsk    27.5766   53.9678 Upper middle income
## 1251               Minsk    27.5766   53.9678 Upper middle income
## 1252               Minsk    27.5766   53.9678 Upper middle income
## 1253               Minsk    27.5766   53.9678 Upper middle income
## 1254               Minsk    27.5766   53.9678 Upper middle income
## 1255               Minsk    27.5766   53.9678 Upper middle income
## 1256               Minsk    27.5766   53.9678 Upper middle income
## 1257               Minsk    27.5766   53.9678 Upper middle income
## 1258               Minsk    27.5766   53.9678 Upper middle income
## 1259               Minsk    27.5766   53.9678 Upper middle income
## 1260               Minsk    27.5766   53.9678 Upper middle income
## 1261               Minsk    27.5766   53.9678 Upper middle income
## 1262               Minsk    27.5766   53.9678 Upper middle income
## 1263               Minsk    27.5766   53.9678 Upper middle income
## 1264               Minsk    27.5766   53.9678 Upper middle income
## 1265               Minsk    27.5766   53.9678 Upper middle income
## 1266               Minsk    27.5766   53.9678 Upper middle income
## 1267               Minsk    27.5766   53.9678 Upper middle income
## 1268               Minsk    27.5766   53.9678 Upper middle income
## 1269               Minsk    27.5766   53.9678 Upper middle income
## 1270               Minsk    27.5766   53.9678 Upper middle income
## 1271               Minsk    27.5766   53.9678 Upper middle income
## 1272               Minsk    27.5766   53.9678 Upper middle income
## 1273               Minsk    27.5766   53.9678 Upper middle income
## 1274               Minsk    27.5766   53.9678 Upper middle income
## 1275               Minsk    27.5766   53.9678 Upper middle income
## 1276               Minsk    27.5766   53.9678 Upper middle income
## 1277               Minsk    27.5766   53.9678 Upper middle income
## 1278               Minsk    27.5766   53.9678 Upper middle income
## 1279               Minsk    27.5766   53.9678 Upper middle income
## 1280               Minsk    27.5766   53.9678 Upper middle income
## 1281               Minsk    27.5766   53.9678 Upper middle income
## 1282               Minsk    27.5766   53.9678 Upper middle income
## 1283               Minsk    27.5766   53.9678 Upper middle income
## 1284               Minsk    27.5766   53.9678 Upper middle income
## 1285               Minsk    27.5766   53.9678 Upper middle income
## 1286               Minsk    27.5766   53.9678 Upper middle income
## 1287               Minsk    27.5766   53.9678 Upper middle income
## 1288               Minsk    27.5766   53.9678 Upper middle income
## 1289               Minsk    27.5766   53.9678 Upper middle income
## 1290               Minsk    27.5766   53.9678 Upper middle income
## 1291               Minsk    27.5766   53.9678 Upper middle income
## 1292               Minsk    27.5766   53.9678 Upper middle income
## 1293               Minsk    27.5766   53.9678 Upper middle income
## 1294               Minsk    27.5766   53.9678 Upper middle income
## 1295               Minsk    27.5766   53.9678 Upper middle income
## 1296               Minsk    27.5766   53.9678 Upper middle income
## 1297               Minsk    27.5766   53.9678 Upper middle income
## 1298               Minsk    27.5766   53.9678 Upper middle income
## 1299               Minsk    27.5766   53.9678 Upper middle income
## 1300               Minsk    27.5766   53.9678 Upper middle income
## 1301               Minsk    27.5766   53.9678 Upper middle income
## 1302               Minsk    27.5766   53.9678 Upper middle income
## 1303            Brussels    4.36761   50.8371         High income
## 1304            Brussels    4.36761   50.8371         High income
## 1305            Brussels    4.36761   50.8371         High income
## 1306            Brussels    4.36761   50.8371         High income
## 1307            Brussels    4.36761   50.8371         High income
## 1308            Brussels    4.36761   50.8371         High income
## 1309            Brussels    4.36761   50.8371         High income
## 1310            Brussels    4.36761   50.8371         High income
## 1311            Brussels    4.36761   50.8371         High income
## 1312            Brussels    4.36761   50.8371         High income
## 1313            Brussels    4.36761   50.8371         High income
## 1314            Brussels    4.36761   50.8371         High income
## 1315            Brussels    4.36761   50.8371         High income
## 1316            Brussels    4.36761   50.8371         High income
## 1317            Brussels    4.36761   50.8371         High income
## 1318            Brussels    4.36761   50.8371         High income
## 1319            Brussels    4.36761   50.8371         High income
## 1320            Brussels    4.36761   50.8371         High income
## 1321            Brussels    4.36761   50.8371         High income
## 1322            Brussels    4.36761   50.8371         High income
## 1323            Brussels    4.36761   50.8371         High income
## 1324            Brussels    4.36761   50.8371         High income
## 1325            Brussels    4.36761   50.8371         High income
## 1326            Brussels    4.36761   50.8371         High income
## 1327            Brussels    4.36761   50.8371         High income
## 1328            Brussels    4.36761   50.8371         High income
## 1329            Brussels    4.36761   50.8371         High income
## 1330            Brussels    4.36761   50.8371         High income
## 1331            Brussels    4.36761   50.8371         High income
## 1332            Brussels    4.36761   50.8371         High income
## 1333            Brussels    4.36761   50.8371         High income
## 1334            Brussels    4.36761   50.8371         High income
## 1335            Brussels    4.36761   50.8371         High income
## 1336            Brussels    4.36761   50.8371         High income
## 1337            Brussels    4.36761   50.8371         High income
## 1338            Brussels    4.36761   50.8371         High income
## 1339            Brussels    4.36761   50.8371         High income
## 1340            Brussels    4.36761   50.8371         High income
## 1341            Brussels    4.36761   50.8371         High income
## 1342            Brussels    4.36761   50.8371         High income
## 1343            Brussels    4.36761   50.8371         High income
## 1344            Brussels    4.36761   50.8371         High income
## 1345            Brussels    4.36761   50.8371         High income
## 1346            Brussels    4.36761   50.8371         High income
## 1347            Brussels    4.36761   50.8371         High income
## 1348            Brussels    4.36761   50.8371         High income
## 1349            Brussels    4.36761   50.8371         High income
## 1350            Brussels    4.36761   50.8371         High income
## 1351            Brussels    4.36761   50.8371         High income
## 1352            Brussels    4.36761   50.8371         High income
## 1353            Brussels    4.36761   50.8371         High income
## 1354            Brussels    4.36761   50.8371         High income
## 1355            Brussels    4.36761   50.8371         High income
## 1356            Brussels    4.36761   50.8371         High income
## 1357            Brussels    4.36761   50.8371         High income
## 1358            Brussels    4.36761   50.8371         High income
## 1359            Brussels    4.36761   50.8371         High income
## 1360            Brussels    4.36761   50.8371         High income
## 1361            Brussels    4.36761   50.8371         High income
## 1362            Brussels    4.36761   50.8371         High income
## 1363            Brussels    4.36761   50.8371         High income
## 1364            Brussels    4.36761   50.8371         High income
## 1365            Belmopan   -88.7713   17.2534 Upper middle income
## 1366            Belmopan   -88.7713   17.2534 Upper middle income
## 1367            Belmopan   -88.7713   17.2534 Upper middle income
## 1368            Belmopan   -88.7713   17.2534 Upper middle income
## 1369            Belmopan   -88.7713   17.2534 Upper middle income
## 1370            Belmopan   -88.7713   17.2534 Upper middle income
## 1371            Belmopan   -88.7713   17.2534 Upper middle income
## 1372            Belmopan   -88.7713   17.2534 Upper middle income
## 1373            Belmopan   -88.7713   17.2534 Upper middle income
## 1374            Belmopan   -88.7713   17.2534 Upper middle income
## 1375            Belmopan   -88.7713   17.2534 Upper middle income
## 1376            Belmopan   -88.7713   17.2534 Upper middle income
## 1377            Belmopan   -88.7713   17.2534 Upper middle income
## 1378            Belmopan   -88.7713   17.2534 Upper middle income
## 1379            Belmopan   -88.7713   17.2534 Upper middle income
## 1380            Belmopan   -88.7713   17.2534 Upper middle income
## 1381            Belmopan   -88.7713   17.2534 Upper middle income
## 1382            Belmopan   -88.7713   17.2534 Upper middle income
## 1383            Belmopan   -88.7713   17.2534 Upper middle income
## 1384            Belmopan   -88.7713   17.2534 Upper middle income
## 1385            Belmopan   -88.7713   17.2534 Upper middle income
## 1386            Belmopan   -88.7713   17.2534 Upper middle income
## 1387            Belmopan   -88.7713   17.2534 Upper middle income
## 1388            Belmopan   -88.7713   17.2534 Upper middle income
## 1389            Belmopan   -88.7713   17.2534 Upper middle income
## 1390            Belmopan   -88.7713   17.2534 Upper middle income
## 1391            Belmopan   -88.7713   17.2534 Upper middle income
## 1392            Belmopan   -88.7713   17.2534 Upper middle income
## 1393            Belmopan   -88.7713   17.2534 Upper middle income
## 1394            Belmopan   -88.7713   17.2534 Upper middle income
## 1395            Belmopan   -88.7713   17.2534 Upper middle income
## 1396            Belmopan   -88.7713   17.2534 Upper middle income
## 1397            Belmopan   -88.7713   17.2534 Upper middle income
## 1398            Belmopan   -88.7713   17.2534 Upper middle income
## 1399            Belmopan   -88.7713   17.2534 Upper middle income
## 1400            Belmopan   -88.7713   17.2534 Upper middle income
## 1401            Belmopan   -88.7713   17.2534 Upper middle income
## 1402            Belmopan   -88.7713   17.2534 Upper middle income
## 1403            Belmopan   -88.7713   17.2534 Upper middle income
## 1404            Belmopan   -88.7713   17.2534 Upper middle income
## 1405            Belmopan   -88.7713   17.2534 Upper middle income
## 1406            Belmopan   -88.7713   17.2534 Upper middle income
## 1407            Belmopan   -88.7713   17.2534 Upper middle income
## 1408            Belmopan   -88.7713   17.2534 Upper middle income
## 1409            Belmopan   -88.7713   17.2534 Upper middle income
## 1410            Belmopan   -88.7713   17.2534 Upper middle income
## 1411            Belmopan   -88.7713   17.2534 Upper middle income
## 1412            Belmopan   -88.7713   17.2534 Upper middle income
## 1413            Belmopan   -88.7713   17.2534 Upper middle income
## 1414            Belmopan   -88.7713   17.2534 Upper middle income
## 1415            Belmopan   -88.7713   17.2534 Upper middle income
## 1416            Belmopan   -88.7713   17.2534 Upper middle income
## 1417            Belmopan   -88.7713   17.2534 Upper middle income
## 1418            Belmopan   -88.7713   17.2534 Upper middle income
## 1419            Belmopan   -88.7713   17.2534 Upper middle income
## 1420            Belmopan   -88.7713   17.2534 Upper middle income
## 1421            Belmopan   -88.7713   17.2534 Upper middle income
## 1422            Belmopan   -88.7713   17.2534 Upper middle income
## 1423            Belmopan   -88.7713   17.2534 Upper middle income
## 1424            Belmopan   -88.7713   17.2534 Upper middle income
## 1425            Belmopan   -88.7713   17.2534 Upper middle income
## 1426            Belmopan   -88.7713   17.2534 Upper middle income
## 1427          Porto-Novo     2.6323    6.4779 Lower middle income
## 1428          Porto-Novo     2.6323    6.4779 Lower middle income
## 1429          Porto-Novo     2.6323    6.4779 Lower middle income
## 1430          Porto-Novo     2.6323    6.4779 Lower middle income
## 1431          Porto-Novo     2.6323    6.4779 Lower middle income
## 1432          Porto-Novo     2.6323    6.4779 Lower middle income
## 1433          Porto-Novo     2.6323    6.4779 Lower middle income
## 1434          Porto-Novo     2.6323    6.4779 Lower middle income
## 1435          Porto-Novo     2.6323    6.4779 Lower middle income
## 1436          Porto-Novo     2.6323    6.4779 Lower middle income
## 1437          Porto-Novo     2.6323    6.4779 Lower middle income
## 1438          Porto-Novo     2.6323    6.4779 Lower middle income
## 1439          Porto-Novo     2.6323    6.4779 Lower middle income
## 1440          Porto-Novo     2.6323    6.4779 Lower middle income
## 1441          Porto-Novo     2.6323    6.4779 Lower middle income
## 1442          Porto-Novo     2.6323    6.4779 Lower middle income
## 1443          Porto-Novo     2.6323    6.4779 Lower middle income
## 1444          Porto-Novo     2.6323    6.4779 Lower middle income
## 1445          Porto-Novo     2.6323    6.4779 Lower middle income
## 1446          Porto-Novo     2.6323    6.4779 Lower middle income
## 1447          Porto-Novo     2.6323    6.4779 Lower middle income
## 1448          Porto-Novo     2.6323    6.4779 Lower middle income
## 1449          Porto-Novo     2.6323    6.4779 Lower middle income
## 1450          Porto-Novo     2.6323    6.4779 Lower middle income
## 1451          Porto-Novo     2.6323    6.4779 Lower middle income
## 1452          Porto-Novo     2.6323    6.4779 Lower middle income
## 1453          Porto-Novo     2.6323    6.4779 Lower middle income
## 1454          Porto-Novo     2.6323    6.4779 Lower middle income
## 1455          Porto-Novo     2.6323    6.4779 Lower middle income
## 1456          Porto-Novo     2.6323    6.4779 Lower middle income
## 1457          Porto-Novo     2.6323    6.4779 Lower middle income
## 1458          Porto-Novo     2.6323    6.4779 Lower middle income
## 1459          Porto-Novo     2.6323    6.4779 Lower middle income
## 1460          Porto-Novo     2.6323    6.4779 Lower middle income
## 1461          Porto-Novo     2.6323    6.4779 Lower middle income
## 1462          Porto-Novo     2.6323    6.4779 Lower middle income
## 1463          Porto-Novo     2.6323    6.4779 Lower middle income
## 1464          Porto-Novo     2.6323    6.4779 Lower middle income
## 1465          Porto-Novo     2.6323    6.4779 Lower middle income
## 1466          Porto-Novo     2.6323    6.4779 Lower middle income
## 1467          Porto-Novo     2.6323    6.4779 Lower middle income
## 1468          Porto-Novo     2.6323    6.4779 Lower middle income
## 1469          Porto-Novo     2.6323    6.4779 Lower middle income
## 1470          Porto-Novo     2.6323    6.4779 Lower middle income
## 1471          Porto-Novo     2.6323    6.4779 Lower middle income
## 1472          Porto-Novo     2.6323    6.4779 Lower middle income
## 1473          Porto-Novo     2.6323    6.4779 Lower middle income
## 1474          Porto-Novo     2.6323    6.4779 Lower middle income
## 1475          Porto-Novo     2.6323    6.4779 Lower middle income
## 1476          Porto-Novo     2.6323    6.4779 Lower middle income
## 1477          Porto-Novo     2.6323    6.4779 Lower middle income
## 1478          Porto-Novo     2.6323    6.4779 Lower middle income
## 1479          Porto-Novo     2.6323    6.4779 Lower middle income
## 1480          Porto-Novo     2.6323    6.4779 Lower middle income
## 1481          Porto-Novo     2.6323    6.4779 Lower middle income
## 1482          Porto-Novo     2.6323    6.4779 Lower middle income
## 1483          Porto-Novo     2.6323    6.4779 Lower middle income
## 1484          Porto-Novo     2.6323    6.4779 Lower middle income
## 1485          Porto-Novo     2.6323    6.4779 Lower middle income
## 1486          Porto-Novo     2.6323    6.4779 Lower middle income
## 1487          Porto-Novo     2.6323    6.4779 Lower middle income
## 1488          Porto-Novo     2.6323    6.4779 Lower middle income
## 1489            Hamilton    -64.706   32.3293         High income
## 1490            Hamilton    -64.706   32.3293         High income
## 1491            Hamilton    -64.706   32.3293         High income
## 1492            Hamilton    -64.706   32.3293         High income
## 1493            Hamilton    -64.706   32.3293         High income
## 1494            Hamilton    -64.706   32.3293         High income
## 1495            Hamilton    -64.706   32.3293         High income
## 1496            Hamilton    -64.706   32.3293         High income
## 1497            Hamilton    -64.706   32.3293         High income
## 1498            Hamilton    -64.706   32.3293         High income
## 1499            Hamilton    -64.706   32.3293         High income
## 1500            Hamilton    -64.706   32.3293         High income
## 1501            Hamilton    -64.706   32.3293         High income
## 1502            Hamilton    -64.706   32.3293         High income
## 1503            Hamilton    -64.706   32.3293         High income
## 1504            Hamilton    -64.706   32.3293         High income
## 1505            Hamilton    -64.706   32.3293         High income
## 1506            Hamilton    -64.706   32.3293         High income
## 1507            Hamilton    -64.706   32.3293         High income
## 1508            Hamilton    -64.706   32.3293         High income
## 1509            Hamilton    -64.706   32.3293         High income
## 1510            Hamilton    -64.706   32.3293         High income
## 1511            Hamilton    -64.706   32.3293         High income
## 1512            Hamilton    -64.706   32.3293         High income
## 1513            Hamilton    -64.706   32.3293         High income
## 1514            Hamilton    -64.706   32.3293         High income
## 1515            Hamilton    -64.706   32.3293         High income
## 1516            Hamilton    -64.706   32.3293         High income
## 1517            Hamilton    -64.706   32.3293         High income
## 1518            Hamilton    -64.706   32.3293         High income
## 1519            Hamilton    -64.706   32.3293         High income
## 1520            Hamilton    -64.706   32.3293         High income
## 1521            Hamilton    -64.706   32.3293         High income
## 1522            Hamilton    -64.706   32.3293         High income
## 1523            Hamilton    -64.706   32.3293         High income
## 1524            Hamilton    -64.706   32.3293         High income
## 1525            Hamilton    -64.706   32.3293         High income
## 1526            Hamilton    -64.706   32.3293         High income
## 1527            Hamilton    -64.706   32.3293         High income
## 1528            Hamilton    -64.706   32.3293         High income
## 1529            Hamilton    -64.706   32.3293         High income
## 1530            Hamilton    -64.706   32.3293         High income
## 1531            Hamilton    -64.706   32.3293         High income
## 1532            Hamilton    -64.706   32.3293         High income
## 1533            Hamilton    -64.706   32.3293         High income
## 1534            Hamilton    -64.706   32.3293         High income
## 1535            Hamilton    -64.706   32.3293         High income
## 1536            Hamilton    -64.706   32.3293         High income
## 1537            Hamilton    -64.706   32.3293         High income
## 1538            Hamilton    -64.706   32.3293         High income
## 1539            Hamilton    -64.706   32.3293         High income
## 1540            Hamilton    -64.706   32.3293         High income
## 1541            Hamilton    -64.706   32.3293         High income
## 1542            Hamilton    -64.706   32.3293         High income
## 1543            Hamilton    -64.706   32.3293         High income
## 1544            Hamilton    -64.706   32.3293         High income
## 1545            Hamilton    -64.706   32.3293         High income
## 1546            Hamilton    -64.706   32.3293         High income
## 1547            Hamilton    -64.706   32.3293         High income
## 1548            Hamilton    -64.706   32.3293         High income
## 1549            Hamilton    -64.706   32.3293         High income
## 1550            Hamilton    -64.706   32.3293         High income
## 1551             Thimphu    89.6177   27.5768 Lower middle income
## 1552             Thimphu    89.6177   27.5768 Lower middle income
## 1553             Thimphu    89.6177   27.5768 Lower middle income
## 1554             Thimphu    89.6177   27.5768 Lower middle income
## 1555             Thimphu    89.6177   27.5768 Lower middle income
## 1556             Thimphu    89.6177   27.5768 Lower middle income
## 1557             Thimphu    89.6177   27.5768 Lower middle income
## 1558             Thimphu    89.6177   27.5768 Lower middle income
## 1559             Thimphu    89.6177   27.5768 Lower middle income
## 1560             Thimphu    89.6177   27.5768 Lower middle income
## 1561             Thimphu    89.6177   27.5768 Lower middle income
## 1562             Thimphu    89.6177   27.5768 Lower middle income
## 1563             Thimphu    89.6177   27.5768 Lower middle income
## 1564             Thimphu    89.6177   27.5768 Lower middle income
## 1565             Thimphu    89.6177   27.5768 Lower middle income
## 1566             Thimphu    89.6177   27.5768 Lower middle income
## 1567             Thimphu    89.6177   27.5768 Lower middle income
## 1568             Thimphu    89.6177   27.5768 Lower middle income
## 1569             Thimphu    89.6177   27.5768 Lower middle income
## 1570             Thimphu    89.6177   27.5768 Lower middle income
## 1571             Thimphu    89.6177   27.5768 Lower middle income
## 1572             Thimphu    89.6177   27.5768 Lower middle income
## 1573             Thimphu    89.6177   27.5768 Lower middle income
## 1574             Thimphu    89.6177   27.5768 Lower middle income
## 1575             Thimphu    89.6177   27.5768 Lower middle income
## 1576             Thimphu    89.6177   27.5768 Lower middle income
## 1577             Thimphu    89.6177   27.5768 Lower middle income
## 1578             Thimphu    89.6177   27.5768 Lower middle income
## 1579             Thimphu    89.6177   27.5768 Lower middle income
## 1580             Thimphu    89.6177   27.5768 Lower middle income
## 1581             Thimphu    89.6177   27.5768 Lower middle income
## 1582             Thimphu    89.6177   27.5768 Lower middle income
## 1583             Thimphu    89.6177   27.5768 Lower middle income
## 1584             Thimphu    89.6177   27.5768 Lower middle income
## 1585             Thimphu    89.6177   27.5768 Lower middle income
## 1586             Thimphu    89.6177   27.5768 Lower middle income
## 1587             Thimphu    89.6177   27.5768 Lower middle income
## 1588             Thimphu    89.6177   27.5768 Lower middle income
## 1589             Thimphu    89.6177   27.5768 Lower middle income
## 1590             Thimphu    89.6177   27.5768 Lower middle income
## 1591             Thimphu    89.6177   27.5768 Lower middle income
## 1592             Thimphu    89.6177   27.5768 Lower middle income
## 1593             Thimphu    89.6177   27.5768 Lower middle income
## 1594             Thimphu    89.6177   27.5768 Lower middle income
## 1595             Thimphu    89.6177   27.5768 Lower middle income
## 1596             Thimphu    89.6177   27.5768 Lower middle income
## 1597             Thimphu    89.6177   27.5768 Lower middle income
## 1598             Thimphu    89.6177   27.5768 Lower middle income
## 1599             Thimphu    89.6177   27.5768 Lower middle income
## 1600             Thimphu    89.6177   27.5768 Lower middle income
## 1601             Thimphu    89.6177   27.5768 Lower middle income
## 1602             Thimphu    89.6177   27.5768 Lower middle income
## 1603             Thimphu    89.6177   27.5768 Lower middle income
## 1604             Thimphu    89.6177   27.5768 Lower middle income
## 1605             Thimphu    89.6177   27.5768 Lower middle income
## 1606             Thimphu    89.6177   27.5768 Lower middle income
## 1607             Thimphu    89.6177   27.5768 Lower middle income
## 1608             Thimphu    89.6177   27.5768 Lower middle income
## 1609             Thimphu    89.6177   27.5768 Lower middle income
## 1610             Thimphu    89.6177   27.5768 Lower middle income
## 1611             Thimphu    89.6177   27.5768 Lower middle income
## 1612             Thimphu    89.6177   27.5768 Lower middle income
## 1613              La Paz   -66.1936  -13.9908 Lower middle income
## 1614              La Paz   -66.1936  -13.9908 Lower middle income
## 1615              La Paz   -66.1936  -13.9908 Lower middle income
## 1616              La Paz   -66.1936  -13.9908 Lower middle income
## 1617              La Paz   -66.1936  -13.9908 Lower middle income
## 1618              La Paz   -66.1936  -13.9908 Lower middle income
## 1619              La Paz   -66.1936  -13.9908 Lower middle income
## 1620              La Paz   -66.1936  -13.9908 Lower middle income
## 1621              La Paz   -66.1936  -13.9908 Lower middle income
## 1622              La Paz   -66.1936  -13.9908 Lower middle income
## 1623              La Paz   -66.1936  -13.9908 Lower middle income
## 1624              La Paz   -66.1936  -13.9908 Lower middle income
## 1625              La Paz   -66.1936  -13.9908 Lower middle income
## 1626              La Paz   -66.1936  -13.9908 Lower middle income
## 1627              La Paz   -66.1936  -13.9908 Lower middle income
## 1628              La Paz   -66.1936  -13.9908 Lower middle income
## 1629              La Paz   -66.1936  -13.9908 Lower middle income
## 1630              La Paz   -66.1936  -13.9908 Lower middle income
## 1631              La Paz   -66.1936  -13.9908 Lower middle income
## 1632              La Paz   -66.1936  -13.9908 Lower middle income
## 1633              La Paz   -66.1936  -13.9908 Lower middle income
## 1634              La Paz   -66.1936  -13.9908 Lower middle income
## 1635              La Paz   -66.1936  -13.9908 Lower middle income
## 1636              La Paz   -66.1936  -13.9908 Lower middle income
## 1637              La Paz   -66.1936  -13.9908 Lower middle income
## 1638              La Paz   -66.1936  -13.9908 Lower middle income
## 1639              La Paz   -66.1936  -13.9908 Lower middle income
## 1640              La Paz   -66.1936  -13.9908 Lower middle income
## 1641              La Paz   -66.1936  -13.9908 Lower middle income
## 1642              La Paz   -66.1936  -13.9908 Lower middle income
## 1643              La Paz   -66.1936  -13.9908 Lower middle income
## 1644              La Paz   -66.1936  -13.9908 Lower middle income
## 1645              La Paz   -66.1936  -13.9908 Lower middle income
## 1646              La Paz   -66.1936  -13.9908 Lower middle income
## 1647              La Paz   -66.1936  -13.9908 Lower middle income
## 1648              La Paz   -66.1936  -13.9908 Lower middle income
## 1649              La Paz   -66.1936  -13.9908 Lower middle income
## 1650              La Paz   -66.1936  -13.9908 Lower middle income
## 1651              La Paz   -66.1936  -13.9908 Lower middle income
## 1652              La Paz   -66.1936  -13.9908 Lower middle income
## 1653              La Paz   -66.1936  -13.9908 Lower middle income
## 1654              La Paz   -66.1936  -13.9908 Lower middle income
## 1655              La Paz   -66.1936  -13.9908 Lower middle income
## 1656              La Paz   -66.1936  -13.9908 Lower middle income
## 1657              La Paz   -66.1936  -13.9908 Lower middle income
## 1658              La Paz   -66.1936  -13.9908 Lower middle income
## 1659              La Paz   -66.1936  -13.9908 Lower middle income
## 1660              La Paz   -66.1936  -13.9908 Lower middle income
## 1661              La Paz   -66.1936  -13.9908 Lower middle income
## 1662              La Paz   -66.1936  -13.9908 Lower middle income
## 1663              La Paz   -66.1936  -13.9908 Lower middle income
## 1664              La Paz   -66.1936  -13.9908 Lower middle income
## 1665              La Paz   -66.1936  -13.9908 Lower middle income
## 1666              La Paz   -66.1936  -13.9908 Lower middle income
## 1667              La Paz   -66.1936  -13.9908 Lower middle income
## 1668              La Paz   -66.1936  -13.9908 Lower middle income
## 1669              La Paz   -66.1936  -13.9908 Lower middle income
## 1670              La Paz   -66.1936  -13.9908 Lower middle income
## 1671              La Paz   -66.1936  -13.9908 Lower middle income
## 1672              La Paz   -66.1936  -13.9908 Lower middle income
## 1673              La Paz   -66.1936  -13.9908 Lower middle income
## 1674              La Paz   -66.1936  -13.9908 Lower middle income
## 1675            Sarajevo    18.4214   43.8607 Upper middle income
## 1676            Sarajevo    18.4214   43.8607 Upper middle income
## 1677            Sarajevo    18.4214   43.8607 Upper middle income
## 1678            Sarajevo    18.4214   43.8607 Upper middle income
## 1679            Sarajevo    18.4214   43.8607 Upper middle income
## 1680            Sarajevo    18.4214   43.8607 Upper middle income
## 1681            Sarajevo    18.4214   43.8607 Upper middle income
## 1682            Sarajevo    18.4214   43.8607 Upper middle income
## 1683            Sarajevo    18.4214   43.8607 Upper middle income
## 1684            Sarajevo    18.4214   43.8607 Upper middle income
## 1685            Sarajevo    18.4214   43.8607 Upper middle income
## 1686            Sarajevo    18.4214   43.8607 Upper middle income
## 1687            Sarajevo    18.4214   43.8607 Upper middle income
## 1688            Sarajevo    18.4214   43.8607 Upper middle income
## 1689            Sarajevo    18.4214   43.8607 Upper middle income
## 1690            Sarajevo    18.4214   43.8607 Upper middle income
## 1691            Sarajevo    18.4214   43.8607 Upper middle income
## 1692            Sarajevo    18.4214   43.8607 Upper middle income
## 1693            Sarajevo    18.4214   43.8607 Upper middle income
## 1694            Sarajevo    18.4214   43.8607 Upper middle income
## 1695            Sarajevo    18.4214   43.8607 Upper middle income
## 1696            Sarajevo    18.4214   43.8607 Upper middle income
## 1697            Sarajevo    18.4214   43.8607 Upper middle income
## 1698            Sarajevo    18.4214   43.8607 Upper middle income
## 1699            Sarajevo    18.4214   43.8607 Upper middle income
## 1700            Sarajevo    18.4214   43.8607 Upper middle income
## 1701            Sarajevo    18.4214   43.8607 Upper middle income
## 1702            Sarajevo    18.4214   43.8607 Upper middle income
## 1703            Sarajevo    18.4214   43.8607 Upper middle income
## 1704            Sarajevo    18.4214   43.8607 Upper middle income
## 1705            Sarajevo    18.4214   43.8607 Upper middle income
## 1706            Sarajevo    18.4214   43.8607 Upper middle income
## 1707            Sarajevo    18.4214   43.8607 Upper middle income
## 1708            Sarajevo    18.4214   43.8607 Upper middle income
## 1709            Sarajevo    18.4214   43.8607 Upper middle income
## 1710            Sarajevo    18.4214   43.8607 Upper middle income
## 1711            Sarajevo    18.4214   43.8607 Upper middle income
## 1712            Sarajevo    18.4214   43.8607 Upper middle income
## 1713            Sarajevo    18.4214   43.8607 Upper middle income
## 1714            Sarajevo    18.4214   43.8607 Upper middle income
## 1715            Sarajevo    18.4214   43.8607 Upper middle income
## 1716            Sarajevo    18.4214   43.8607 Upper middle income
## 1717            Sarajevo    18.4214   43.8607 Upper middle income
## 1718            Sarajevo    18.4214   43.8607 Upper middle income
## 1719            Sarajevo    18.4214   43.8607 Upper middle income
## 1720            Sarajevo    18.4214   43.8607 Upper middle income
## 1721            Sarajevo    18.4214   43.8607 Upper middle income
## 1722            Sarajevo    18.4214   43.8607 Upper middle income
## 1723            Sarajevo    18.4214   43.8607 Upper middle income
## 1724            Sarajevo    18.4214   43.8607 Upper middle income
## 1725            Sarajevo    18.4214   43.8607 Upper middle income
## 1726            Sarajevo    18.4214   43.8607 Upper middle income
## 1727            Sarajevo    18.4214   43.8607 Upper middle income
## 1728            Sarajevo    18.4214   43.8607 Upper middle income
## 1729            Sarajevo    18.4214   43.8607 Upper middle income
## 1730            Sarajevo    18.4214   43.8607 Upper middle income
## 1731            Sarajevo    18.4214   43.8607 Upper middle income
## 1732            Sarajevo    18.4214   43.8607 Upper middle income
## 1733            Sarajevo    18.4214   43.8607 Upper middle income
## 1734            Sarajevo    18.4214   43.8607 Upper middle income
## 1735            Sarajevo    18.4214   43.8607 Upper middle income
## 1736            Sarajevo    18.4214   43.8607 Upper middle income
## 1737            Gaborone    25.9201  -24.6544 Upper middle income
## 1738            Gaborone    25.9201  -24.6544 Upper middle income
## 1739            Gaborone    25.9201  -24.6544 Upper middle income
## 1740            Gaborone    25.9201  -24.6544 Upper middle income
## 1741            Gaborone    25.9201  -24.6544 Upper middle income
## 1742            Gaborone    25.9201  -24.6544 Upper middle income
## 1743            Gaborone    25.9201  -24.6544 Upper middle income
## 1744            Gaborone    25.9201  -24.6544 Upper middle income
## 1745            Gaborone    25.9201  -24.6544 Upper middle income
## 1746            Gaborone    25.9201  -24.6544 Upper middle income
## 1747            Gaborone    25.9201  -24.6544 Upper middle income
## 1748            Gaborone    25.9201  -24.6544 Upper middle income
## 1749            Gaborone    25.9201  -24.6544 Upper middle income
## 1750            Gaborone    25.9201  -24.6544 Upper middle income
## 1751            Gaborone    25.9201  -24.6544 Upper middle income
## 1752            Gaborone    25.9201  -24.6544 Upper middle income
## 1753            Gaborone    25.9201  -24.6544 Upper middle income
## 1754            Gaborone    25.9201  -24.6544 Upper middle income
## 1755            Gaborone    25.9201  -24.6544 Upper middle income
## 1756            Gaborone    25.9201  -24.6544 Upper middle income
## 1757            Gaborone    25.9201  -24.6544 Upper middle income
## 1758            Gaborone    25.9201  -24.6544 Upper middle income
## 1759            Gaborone    25.9201  -24.6544 Upper middle income
## 1760            Gaborone    25.9201  -24.6544 Upper middle income
## 1761            Gaborone    25.9201  -24.6544 Upper middle income
## 1762            Gaborone    25.9201  -24.6544 Upper middle income
## 1763            Gaborone    25.9201  -24.6544 Upper middle income
## 1764            Gaborone    25.9201  -24.6544 Upper middle income
## 1765            Gaborone    25.9201  -24.6544 Upper middle income
## 1766            Gaborone    25.9201  -24.6544 Upper middle income
## 1767            Gaborone    25.9201  -24.6544 Upper middle income
## 1768            Gaborone    25.9201  -24.6544 Upper middle income
## 1769            Gaborone    25.9201  -24.6544 Upper middle income
## 1770            Gaborone    25.9201  -24.6544 Upper middle income
## 1771            Gaborone    25.9201  -24.6544 Upper middle income
## 1772            Gaborone    25.9201  -24.6544 Upper middle income
## 1773            Gaborone    25.9201  -24.6544 Upper middle income
## 1774            Gaborone    25.9201  -24.6544 Upper middle income
## 1775            Gaborone    25.9201  -24.6544 Upper middle income
## 1776            Gaborone    25.9201  -24.6544 Upper middle income
## 1777            Gaborone    25.9201  -24.6544 Upper middle income
## 1778            Gaborone    25.9201  -24.6544 Upper middle income
## 1779            Gaborone    25.9201  -24.6544 Upper middle income
## 1780            Gaborone    25.9201  -24.6544 Upper middle income
## 1781            Gaborone    25.9201  -24.6544 Upper middle income
## 1782            Gaborone    25.9201  -24.6544 Upper middle income
## 1783            Gaborone    25.9201  -24.6544 Upper middle income
## 1784            Gaborone    25.9201  -24.6544 Upper middle income
## 1785            Gaborone    25.9201  -24.6544 Upper middle income
## 1786            Gaborone    25.9201  -24.6544 Upper middle income
## 1787            Gaborone    25.9201  -24.6544 Upper middle income
## 1788            Gaborone    25.9201  -24.6544 Upper middle income
## 1789            Gaborone    25.9201  -24.6544 Upper middle income
## 1790            Gaborone    25.9201  -24.6544 Upper middle income
## 1791            Gaborone    25.9201  -24.6544 Upper middle income
## 1792            Gaborone    25.9201  -24.6544 Upper middle income
## 1793            Gaborone    25.9201  -24.6544 Upper middle income
## 1794            Gaborone    25.9201  -24.6544 Upper middle income
## 1795            Gaborone    25.9201  -24.6544 Upper middle income
## 1796            Gaborone    25.9201  -24.6544 Upper middle income
## 1797            Gaborone    25.9201  -24.6544 Upper middle income
## 1798            Gaborone    25.9201  -24.6544 Upper middle income
## 1799            Brasilia   -47.9292  -15.7801 Upper middle income
## 1800            Brasilia   -47.9292  -15.7801 Upper middle income
## 1801            Brasilia   -47.9292  -15.7801 Upper middle income
## 1802            Brasilia   -47.9292  -15.7801 Upper middle income
## 1803            Brasilia   -47.9292  -15.7801 Upper middle income
## 1804            Brasilia   -47.9292  -15.7801 Upper middle income
## 1805            Brasilia   -47.9292  -15.7801 Upper middle income
## 1806            Brasilia   -47.9292  -15.7801 Upper middle income
## 1807            Brasilia   -47.9292  -15.7801 Upper middle income
## 1808            Brasilia   -47.9292  -15.7801 Upper middle income
## 1809            Brasilia   -47.9292  -15.7801 Upper middle income
## 1810            Brasilia   -47.9292  -15.7801 Upper middle income
## 1811            Brasilia   -47.9292  -15.7801 Upper middle income
## 1812            Brasilia   -47.9292  -15.7801 Upper middle income
## 1813            Brasilia   -47.9292  -15.7801 Upper middle income
## 1814            Brasilia   -47.9292  -15.7801 Upper middle income
## 1815            Brasilia   -47.9292  -15.7801 Upper middle income
## 1816            Brasilia   -47.9292  -15.7801 Upper middle income
## 1817            Brasilia   -47.9292  -15.7801 Upper middle income
## 1818            Brasilia   -47.9292  -15.7801 Upper middle income
## 1819            Brasilia   -47.9292  -15.7801 Upper middle income
## 1820            Brasilia   -47.9292  -15.7801 Upper middle income
## 1821            Brasilia   -47.9292  -15.7801 Upper middle income
## 1822            Brasilia   -47.9292  -15.7801 Upper middle income
## 1823            Brasilia   -47.9292  -15.7801 Upper middle income
## 1824            Brasilia   -47.9292  -15.7801 Upper middle income
## 1825            Brasilia   -47.9292  -15.7801 Upper middle income
## 1826            Brasilia   -47.9292  -15.7801 Upper middle income
## 1827            Brasilia   -47.9292  -15.7801 Upper middle income
## 1828            Brasilia   -47.9292  -15.7801 Upper middle income
## 1829            Brasilia   -47.9292  -15.7801 Upper middle income
## 1830            Brasilia   -47.9292  -15.7801 Upper middle income
## 1831            Brasilia   -47.9292  -15.7801 Upper middle income
## 1832            Brasilia   -47.9292  -15.7801 Upper middle income
## 1833            Brasilia   -47.9292  -15.7801 Upper middle income
## 1834            Brasilia   -47.9292  -15.7801 Upper middle income
## 1835            Brasilia   -47.9292  -15.7801 Upper middle income
## 1836            Brasilia   -47.9292  -15.7801 Upper middle income
## 1837            Brasilia   -47.9292  -15.7801 Upper middle income
## 1838            Brasilia   -47.9292  -15.7801 Upper middle income
## 1839            Brasilia   -47.9292  -15.7801 Upper middle income
## 1840            Brasilia   -47.9292  -15.7801 Upper middle income
## 1841            Brasilia   -47.9292  -15.7801 Upper middle income
## 1842            Brasilia   -47.9292  -15.7801 Upper middle income
## 1843            Brasilia   -47.9292  -15.7801 Upper middle income
## 1844            Brasilia   -47.9292  -15.7801 Upper middle income
## 1845            Brasilia   -47.9292  -15.7801 Upper middle income
## 1846            Brasilia   -47.9292  -15.7801 Upper middle income
## 1847            Brasilia   -47.9292  -15.7801 Upper middle income
## 1848            Brasilia   -47.9292  -15.7801 Upper middle income
## 1849            Brasilia   -47.9292  -15.7801 Upper middle income
## 1850            Brasilia   -47.9292  -15.7801 Upper middle income
## 1851            Brasilia   -47.9292  -15.7801 Upper middle income
## 1852            Brasilia   -47.9292  -15.7801 Upper middle income
## 1853            Brasilia   -47.9292  -15.7801 Upper middle income
## 1854            Brasilia   -47.9292  -15.7801 Upper middle income
## 1855            Brasilia   -47.9292  -15.7801 Upper middle income
## 1856            Brasilia   -47.9292  -15.7801 Upper middle income
## 1857            Brasilia   -47.9292  -15.7801 Upper middle income
## 1858            Brasilia   -47.9292  -15.7801 Upper middle income
## 1859            Brasilia   -47.9292  -15.7801 Upper middle income
## 1860            Brasilia   -47.9292  -15.7801 Upper middle income
## 1861           Road Town -64.623056 18.431389         High income
## 1862           Road Town -64.623056 18.431389         High income
## 1863           Road Town -64.623056 18.431389         High income
## 1864           Road Town -64.623056 18.431389         High income
## 1865           Road Town -64.623056 18.431389         High income
## 1866           Road Town -64.623056 18.431389         High income
## 1867           Road Town -64.623056 18.431389         High income
## 1868           Road Town -64.623056 18.431389         High income
## 1869           Road Town -64.623056 18.431389         High income
## 1870           Road Town -64.623056 18.431389         High income
## 1871           Road Town -64.623056 18.431389         High income
## 1872           Road Town -64.623056 18.431389         High income
## 1873           Road Town -64.623056 18.431389         High income
## 1874           Road Town -64.623056 18.431389         High income
## 1875           Road Town -64.623056 18.431389         High income
## 1876           Road Town -64.623056 18.431389         High income
## 1877           Road Town -64.623056 18.431389         High income
## 1878           Road Town -64.623056 18.431389         High income
## 1879           Road Town -64.623056 18.431389         High income
## 1880           Road Town -64.623056 18.431389         High income
## 1881           Road Town -64.623056 18.431389         High income
## 1882           Road Town -64.623056 18.431389         High income
## 1883           Road Town -64.623056 18.431389         High income
## 1884           Road Town -64.623056 18.431389         High income
## 1885           Road Town -64.623056 18.431389         High income
## 1886           Road Town -64.623056 18.431389         High income
## 1887           Road Town -64.623056 18.431389         High income
## 1888           Road Town -64.623056 18.431389         High income
## 1889           Road Town -64.623056 18.431389         High income
## 1890           Road Town -64.623056 18.431389         High income
## 1891           Road Town -64.623056 18.431389         High income
## 1892           Road Town -64.623056 18.431389         High income
## 1893           Road Town -64.623056 18.431389         High income
## 1894           Road Town -64.623056 18.431389         High income
## 1895           Road Town -64.623056 18.431389         High income
## 1896           Road Town -64.623056 18.431389         High income
## 1897           Road Town -64.623056 18.431389         High income
## 1898           Road Town -64.623056 18.431389         High income
## 1899           Road Town -64.623056 18.431389         High income
## 1900           Road Town -64.623056 18.431389         High income
## 1901           Road Town -64.623056 18.431389         High income
## 1902           Road Town -64.623056 18.431389         High income
## 1903           Road Town -64.623056 18.431389         High income
## 1904           Road Town -64.623056 18.431389         High income
## 1905           Road Town -64.623056 18.431389         High income
## 1906           Road Town -64.623056 18.431389         High income
## 1907           Road Town -64.623056 18.431389         High income
## 1908           Road Town -64.623056 18.431389         High income
## 1909           Road Town -64.623056 18.431389         High income
## 1910           Road Town -64.623056 18.431389         High income
## 1911           Road Town -64.623056 18.431389         High income
## 1912           Road Town -64.623056 18.431389         High income
## 1913           Road Town -64.623056 18.431389         High income
## 1914           Road Town -64.623056 18.431389         High income
## 1915           Road Town -64.623056 18.431389         High income
## 1916           Road Town -64.623056 18.431389         High income
## 1917           Road Town -64.623056 18.431389         High income
## 1918           Road Town -64.623056 18.431389         High income
## 1919           Road Town -64.623056 18.431389         High income
## 1920           Road Town -64.623056 18.431389         High income
## 1921           Road Town -64.623056 18.431389         High income
## 1922           Road Town -64.623056 18.431389         High income
## 1923 Bandar Seri Begawan    114.946   4.94199         High income
## 1924 Bandar Seri Begawan    114.946   4.94199         High income
## 1925 Bandar Seri Begawan    114.946   4.94199         High income
## 1926 Bandar Seri Begawan    114.946   4.94199         High income
## 1927 Bandar Seri Begawan    114.946   4.94199         High income
## 1928 Bandar Seri Begawan    114.946   4.94199         High income
## 1929 Bandar Seri Begawan    114.946   4.94199         High income
## 1930 Bandar Seri Begawan    114.946   4.94199         High income
## 1931 Bandar Seri Begawan    114.946   4.94199         High income
## 1932 Bandar Seri Begawan    114.946   4.94199         High income
## 1933 Bandar Seri Begawan    114.946   4.94199         High income
## 1934 Bandar Seri Begawan    114.946   4.94199         High income
## 1935 Bandar Seri Begawan    114.946   4.94199         High income
## 1936 Bandar Seri Begawan    114.946   4.94199         High income
## 1937 Bandar Seri Begawan    114.946   4.94199         High income
## 1938 Bandar Seri Begawan    114.946   4.94199         High income
## 1939 Bandar Seri Begawan    114.946   4.94199         High income
## 1940 Bandar Seri Begawan    114.946   4.94199         High income
## 1941 Bandar Seri Begawan    114.946   4.94199         High income
## 1942 Bandar Seri Begawan    114.946   4.94199         High income
## 1943 Bandar Seri Begawan    114.946   4.94199         High income
## 1944 Bandar Seri Begawan    114.946   4.94199         High income
## 1945 Bandar Seri Begawan    114.946   4.94199         High income
## 1946 Bandar Seri Begawan    114.946   4.94199         High income
## 1947 Bandar Seri Begawan    114.946   4.94199         High income
## 1948 Bandar Seri Begawan    114.946   4.94199         High income
## 1949 Bandar Seri Begawan    114.946   4.94199         High income
## 1950 Bandar Seri Begawan    114.946   4.94199         High income
## 1951 Bandar Seri Begawan    114.946   4.94199         High income
## 1952 Bandar Seri Begawan    114.946   4.94199         High income
## 1953 Bandar Seri Begawan    114.946   4.94199         High income
## 1954 Bandar Seri Begawan    114.946   4.94199         High income
## 1955 Bandar Seri Begawan    114.946   4.94199         High income
## 1956 Bandar Seri Begawan    114.946   4.94199         High income
## 1957 Bandar Seri Begawan    114.946   4.94199         High income
## 1958 Bandar Seri Begawan    114.946   4.94199         High income
## 1959 Bandar Seri Begawan    114.946   4.94199         High income
## 1960 Bandar Seri Begawan    114.946   4.94199         High income
## 1961 Bandar Seri Begawan    114.946   4.94199         High income
## 1962 Bandar Seri Begawan    114.946   4.94199         High income
## 1963 Bandar Seri Begawan    114.946   4.94199         High income
## 1964 Bandar Seri Begawan    114.946   4.94199         High income
## 1965 Bandar Seri Begawan    114.946   4.94199         High income
## 1966 Bandar Seri Begawan    114.946   4.94199         High income
## 1967 Bandar Seri Begawan    114.946   4.94199         High income
## 1968 Bandar Seri Begawan    114.946   4.94199         High income
## 1969 Bandar Seri Begawan    114.946   4.94199         High income
## 1970 Bandar Seri Begawan    114.946   4.94199         High income
## 1971 Bandar Seri Begawan    114.946   4.94199         High income
## 1972 Bandar Seri Begawan    114.946   4.94199         High income
## 1973 Bandar Seri Begawan    114.946   4.94199         High income
## 1974 Bandar Seri Begawan    114.946   4.94199         High income
## 1975 Bandar Seri Begawan    114.946   4.94199         High income
## 1976 Bandar Seri Begawan    114.946   4.94199         High income
## 1977 Bandar Seri Begawan    114.946   4.94199         High income
## 1978 Bandar Seri Begawan    114.946   4.94199         High income
## 1979 Bandar Seri Begawan    114.946   4.94199         High income
## 1980 Bandar Seri Begawan    114.946   4.94199         High income
## 1981 Bandar Seri Begawan    114.946   4.94199         High income
## 1982 Bandar Seri Begawan    114.946   4.94199         High income
## 1983 Bandar Seri Begawan    114.946   4.94199         High income
## 1984 Bandar Seri Begawan    114.946   4.94199         High income
## 1985               Sofia    23.3238   42.7105 Upper middle income
## 1986               Sofia    23.3238   42.7105 Upper middle income
## 1987               Sofia    23.3238   42.7105 Upper middle income
## 1988               Sofia    23.3238   42.7105 Upper middle income
## 1989               Sofia    23.3238   42.7105 Upper middle income
## 1990               Sofia    23.3238   42.7105 Upper middle income
## 1991               Sofia    23.3238   42.7105 Upper middle income
## 1992               Sofia    23.3238   42.7105 Upper middle income
## 1993               Sofia    23.3238   42.7105 Upper middle income
## 1994               Sofia    23.3238   42.7105 Upper middle income
## 1995               Sofia    23.3238   42.7105 Upper middle income
## 1996               Sofia    23.3238   42.7105 Upper middle income
## 1997               Sofia    23.3238   42.7105 Upper middle income
## 1998               Sofia    23.3238   42.7105 Upper middle income
## 1999               Sofia    23.3238   42.7105 Upper middle income
## 2000               Sofia    23.3238   42.7105 Upper middle income
## 2001               Sofia    23.3238   42.7105 Upper middle income
## 2002               Sofia    23.3238   42.7105 Upper middle income
## 2003               Sofia    23.3238   42.7105 Upper middle income
## 2004               Sofia    23.3238   42.7105 Upper middle income
## 2005               Sofia    23.3238   42.7105 Upper middle income
## 2006               Sofia    23.3238   42.7105 Upper middle income
## 2007               Sofia    23.3238   42.7105 Upper middle income
## 2008               Sofia    23.3238   42.7105 Upper middle income
## 2009               Sofia    23.3238   42.7105 Upper middle income
## 2010               Sofia    23.3238   42.7105 Upper middle income
## 2011               Sofia    23.3238   42.7105 Upper middle income
## 2012               Sofia    23.3238   42.7105 Upper middle income
## 2013               Sofia    23.3238   42.7105 Upper middle income
## 2014               Sofia    23.3238   42.7105 Upper middle income
## 2015               Sofia    23.3238   42.7105 Upper middle income
## 2016               Sofia    23.3238   42.7105 Upper middle income
## 2017               Sofia    23.3238   42.7105 Upper middle income
## 2018               Sofia    23.3238   42.7105 Upper middle income
## 2019               Sofia    23.3238   42.7105 Upper middle income
## 2020               Sofia    23.3238   42.7105 Upper middle income
## 2021               Sofia    23.3238   42.7105 Upper middle income
## 2022               Sofia    23.3238   42.7105 Upper middle income
## 2023               Sofia    23.3238   42.7105 Upper middle income
## 2024               Sofia    23.3238   42.7105 Upper middle income
## 2025               Sofia    23.3238   42.7105 Upper middle income
## 2026               Sofia    23.3238   42.7105 Upper middle income
## 2027               Sofia    23.3238   42.7105 Upper middle income
## 2028               Sofia    23.3238   42.7105 Upper middle income
## 2029               Sofia    23.3238   42.7105 Upper middle income
## 2030               Sofia    23.3238   42.7105 Upper middle income
## 2031               Sofia    23.3238   42.7105 Upper middle income
## 2032               Sofia    23.3238   42.7105 Upper middle income
## 2033               Sofia    23.3238   42.7105 Upper middle income
## 2034               Sofia    23.3238   42.7105 Upper middle income
## 2035               Sofia    23.3238   42.7105 Upper middle income
## 2036               Sofia    23.3238   42.7105 Upper middle income
## 2037               Sofia    23.3238   42.7105 Upper middle income
## 2038               Sofia    23.3238   42.7105 Upper middle income
## 2039               Sofia    23.3238   42.7105 Upper middle income
## 2040               Sofia    23.3238   42.7105 Upper middle income
## 2041               Sofia    23.3238   42.7105 Upper middle income
## 2042               Sofia    23.3238   42.7105 Upper middle income
## 2043               Sofia    23.3238   42.7105 Upper middle income
## 2044               Sofia    23.3238   42.7105 Upper middle income
## 2045               Sofia    23.3238   42.7105 Upper middle income
## 2046               Sofia    23.3238   42.7105 Upper middle income
## 2047         Ouagadougou   -1.53395   12.3605          Low income
## 2048         Ouagadougou   -1.53395   12.3605          Low income
## 2049         Ouagadougou   -1.53395   12.3605          Low income
## 2050         Ouagadougou   -1.53395   12.3605          Low income
## 2051         Ouagadougou   -1.53395   12.3605          Low income
## 2052         Ouagadougou   -1.53395   12.3605          Low income
## 2053         Ouagadougou   -1.53395   12.3605          Low income
## 2054         Ouagadougou   -1.53395   12.3605          Low income
## 2055         Ouagadougou   -1.53395   12.3605          Low income
## 2056         Ouagadougou   -1.53395   12.3605          Low income
## 2057         Ouagadougou   -1.53395   12.3605          Low income
## 2058         Ouagadougou   -1.53395   12.3605          Low income
## 2059         Ouagadougou   -1.53395   12.3605          Low income
## 2060         Ouagadougou   -1.53395   12.3605          Low income
## 2061         Ouagadougou   -1.53395   12.3605          Low income
## 2062         Ouagadougou   -1.53395   12.3605          Low income
## 2063         Ouagadougou   -1.53395   12.3605          Low income
## 2064         Ouagadougou   -1.53395   12.3605          Low income
## 2065         Ouagadougou   -1.53395   12.3605          Low income
## 2066         Ouagadougou   -1.53395   12.3605          Low income
## 2067         Ouagadougou   -1.53395   12.3605          Low income
## 2068         Ouagadougou   -1.53395   12.3605          Low income
## 2069         Ouagadougou   -1.53395   12.3605          Low income
## 2070         Ouagadougou   -1.53395   12.3605          Low income
## 2071         Ouagadougou   -1.53395   12.3605          Low income
## 2072         Ouagadougou   -1.53395   12.3605          Low income
## 2073         Ouagadougou   -1.53395   12.3605          Low income
## 2074         Ouagadougou   -1.53395   12.3605          Low income
## 2075         Ouagadougou   -1.53395   12.3605          Low income
## 2076         Ouagadougou   -1.53395   12.3605          Low income
## 2077         Ouagadougou   -1.53395   12.3605          Low income
## 2078         Ouagadougou   -1.53395   12.3605          Low income
## 2079         Ouagadougou   -1.53395   12.3605          Low income
## 2080         Ouagadougou   -1.53395   12.3605          Low income
## 2081         Ouagadougou   -1.53395   12.3605          Low income
## 2082         Ouagadougou   -1.53395   12.3605          Low income
## 2083         Ouagadougou   -1.53395   12.3605          Low income
## 2084         Ouagadougou   -1.53395   12.3605          Low income
## 2085         Ouagadougou   -1.53395   12.3605          Low income
## 2086         Ouagadougou   -1.53395   12.3605          Low income
## 2087         Ouagadougou   -1.53395   12.3605          Low income
## 2088         Ouagadougou   -1.53395   12.3605          Low income
## 2089         Ouagadougou   -1.53395   12.3605          Low income
## 2090         Ouagadougou   -1.53395   12.3605          Low income
## 2091         Ouagadougou   -1.53395   12.3605          Low income
## 2092         Ouagadougou   -1.53395   12.3605          Low income
## 2093         Ouagadougou   -1.53395   12.3605          Low income
## 2094         Ouagadougou   -1.53395   12.3605          Low income
## 2095         Ouagadougou   -1.53395   12.3605          Low income
## 2096         Ouagadougou   -1.53395   12.3605          Low income
## 2097         Ouagadougou   -1.53395   12.3605          Low income
## 2098         Ouagadougou   -1.53395   12.3605          Low income
## 2099         Ouagadougou   -1.53395   12.3605          Low income
## 2100         Ouagadougou   -1.53395   12.3605          Low income
## 2101         Ouagadougou   -1.53395   12.3605          Low income
## 2102         Ouagadougou   -1.53395   12.3605          Low income
## 2103         Ouagadougou   -1.53395   12.3605          Low income
## 2104         Ouagadougou   -1.53395   12.3605          Low income
## 2105         Ouagadougou   -1.53395   12.3605          Low income
## 2106         Ouagadougou   -1.53395   12.3605          Low income
## 2107         Ouagadougou   -1.53395   12.3605          Low income
## 2108         Ouagadougou   -1.53395   12.3605          Low income
## 2109           Bujumbura    29.3639   -3.3784          Low income
## 2110           Bujumbura    29.3639   -3.3784          Low income
## 2111           Bujumbura    29.3639   -3.3784          Low income
## 2112           Bujumbura    29.3639   -3.3784          Low income
## 2113           Bujumbura    29.3639   -3.3784          Low income
## 2114           Bujumbura    29.3639   -3.3784          Low income
## 2115           Bujumbura    29.3639   -3.3784          Low income
## 2116           Bujumbura    29.3639   -3.3784          Low income
## 2117           Bujumbura    29.3639   -3.3784          Low income
## 2118           Bujumbura    29.3639   -3.3784          Low income
## 2119           Bujumbura    29.3639   -3.3784          Low income
## 2120           Bujumbura    29.3639   -3.3784          Low income
## 2121           Bujumbura    29.3639   -3.3784          Low income
## 2122           Bujumbura    29.3639   -3.3784          Low income
## 2123           Bujumbura    29.3639   -3.3784          Low income
## 2124           Bujumbura    29.3639   -3.3784          Low income
## 2125           Bujumbura    29.3639   -3.3784          Low income
## 2126           Bujumbura    29.3639   -3.3784          Low income
## 2127           Bujumbura    29.3639   -3.3784          Low income
## 2128           Bujumbura    29.3639   -3.3784          Low income
## 2129           Bujumbura    29.3639   -3.3784          Low income
## 2130           Bujumbura    29.3639   -3.3784          Low income
## 2131           Bujumbura    29.3639   -3.3784          Low income
## 2132           Bujumbura    29.3639   -3.3784          Low income
## 2133           Bujumbura    29.3639   -3.3784          Low income
## 2134           Bujumbura    29.3639   -3.3784          Low income
## 2135           Bujumbura    29.3639   -3.3784          Low income
## 2136           Bujumbura    29.3639   -3.3784          Low income
## 2137           Bujumbura    29.3639   -3.3784          Low income
## 2138           Bujumbura    29.3639   -3.3784          Low income
## 2139           Bujumbura    29.3639   -3.3784          Low income
## 2140           Bujumbura    29.3639   -3.3784          Low income
## 2141           Bujumbura    29.3639   -3.3784          Low income
## 2142           Bujumbura    29.3639   -3.3784          Low income
## 2143           Bujumbura    29.3639   -3.3784          Low income
## 2144           Bujumbura    29.3639   -3.3784          Low income
## 2145           Bujumbura    29.3639   -3.3784          Low income
## 2146           Bujumbura    29.3639   -3.3784          Low income
## 2147           Bujumbura    29.3639   -3.3784          Low income
## 2148           Bujumbura    29.3639   -3.3784          Low income
## 2149           Bujumbura    29.3639   -3.3784          Low income
## 2150           Bujumbura    29.3639   -3.3784          Low income
## 2151           Bujumbura    29.3639   -3.3784          Low income
## 2152           Bujumbura    29.3639   -3.3784          Low income
## 2153           Bujumbura    29.3639   -3.3784          Low income
## 2154           Bujumbura    29.3639   -3.3784          Low income
## 2155           Bujumbura    29.3639   -3.3784          Low income
## 2156           Bujumbura    29.3639   -3.3784          Low income
## 2157           Bujumbura    29.3639   -3.3784          Low income
## 2158           Bujumbura    29.3639   -3.3784          Low income
## 2159           Bujumbura    29.3639   -3.3784          Low income
## 2160           Bujumbura    29.3639   -3.3784          Low income
## 2161           Bujumbura    29.3639   -3.3784          Low income
## 2162           Bujumbura    29.3639   -3.3784          Low income
## 2163           Bujumbura    29.3639   -3.3784          Low income
## 2164           Bujumbura    29.3639   -3.3784          Low income
## 2165           Bujumbura    29.3639   -3.3784          Low income
## 2166           Bujumbura    29.3639   -3.3784          Low income
## 2167           Bujumbura    29.3639   -3.3784          Low income
## 2168           Bujumbura    29.3639   -3.3784          Low income
## 2169           Bujumbura    29.3639   -3.3784          Low income
## 2170           Bujumbura    29.3639   -3.3784          Low income
## 2171               Praia   -23.5087   14.9218 Lower middle income
## 2172               Praia   -23.5087   14.9218 Lower middle income
## 2173               Praia   -23.5087   14.9218 Lower middle income
## 2174               Praia   -23.5087   14.9218 Lower middle income
## 2175               Praia   -23.5087   14.9218 Lower middle income
## 2176               Praia   -23.5087   14.9218 Lower middle income
## 2177               Praia   -23.5087   14.9218 Lower middle income
## 2178               Praia   -23.5087   14.9218 Lower middle income
## 2179               Praia   -23.5087   14.9218 Lower middle income
## 2180               Praia   -23.5087   14.9218 Lower middle income
## 2181               Praia   -23.5087   14.9218 Lower middle income
## 2182               Praia   -23.5087   14.9218 Lower middle income
## 2183               Praia   -23.5087   14.9218 Lower middle income
## 2184               Praia   -23.5087   14.9218 Lower middle income
## 2185               Praia   -23.5087   14.9218 Lower middle income
## 2186               Praia   -23.5087   14.9218 Lower middle income
## 2187               Praia   -23.5087   14.9218 Lower middle income
## 2188               Praia   -23.5087   14.9218 Lower middle income
## 2189               Praia   -23.5087   14.9218 Lower middle income
## 2190               Praia   -23.5087   14.9218 Lower middle income
## 2191               Praia   -23.5087   14.9218 Lower middle income
## 2192               Praia   -23.5087   14.9218 Lower middle income
## 2193               Praia   -23.5087   14.9218 Lower middle income
## 2194               Praia   -23.5087   14.9218 Lower middle income
## 2195               Praia   -23.5087   14.9218 Lower middle income
## 2196               Praia   -23.5087   14.9218 Lower middle income
## 2197               Praia   -23.5087   14.9218 Lower middle income
## 2198               Praia   -23.5087   14.9218 Lower middle income
## 2199               Praia   -23.5087   14.9218 Lower middle income
## 2200               Praia   -23.5087   14.9218 Lower middle income
## 2201               Praia   -23.5087   14.9218 Lower middle income
## 2202               Praia   -23.5087   14.9218 Lower middle income
## 2203               Praia   -23.5087   14.9218 Lower middle income
## 2204               Praia   -23.5087   14.9218 Lower middle income
## 2205               Praia   -23.5087   14.9218 Lower middle income
## 2206               Praia   -23.5087   14.9218 Lower middle income
## 2207               Praia   -23.5087   14.9218 Lower middle income
## 2208               Praia   -23.5087   14.9218 Lower middle income
## 2209               Praia   -23.5087   14.9218 Lower middle income
## 2210               Praia   -23.5087   14.9218 Lower middle income
## 2211               Praia   -23.5087   14.9218 Lower middle income
## 2212               Praia   -23.5087   14.9218 Lower middle income
## 2213               Praia   -23.5087   14.9218 Lower middle income
## 2214               Praia   -23.5087   14.9218 Lower middle income
## 2215               Praia   -23.5087   14.9218 Lower middle income
## 2216               Praia   -23.5087   14.9218 Lower middle income
## 2217               Praia   -23.5087   14.9218 Lower middle income
## 2218               Praia   -23.5087   14.9218 Lower middle income
## 2219               Praia   -23.5087   14.9218 Lower middle income
## 2220               Praia   -23.5087   14.9218 Lower middle income
## 2221               Praia   -23.5087   14.9218 Lower middle income
## 2222               Praia   -23.5087   14.9218 Lower middle income
## 2223               Praia   -23.5087   14.9218 Lower middle income
## 2224               Praia   -23.5087   14.9218 Lower middle income
## 2225               Praia   -23.5087   14.9218 Lower middle income
## 2226               Praia   -23.5087   14.9218 Lower middle income
## 2227               Praia   -23.5087   14.9218 Lower middle income
## 2228               Praia   -23.5087   14.9218 Lower middle income
## 2229               Praia   -23.5087   14.9218 Lower middle income
## 2230               Praia   -23.5087   14.9218 Lower middle income
## 2231               Praia   -23.5087   14.9218 Lower middle income
## 2232               Praia   -23.5087   14.9218 Lower middle income
## 2233          Phnom Penh    104.874   11.5556 Lower middle income
## 2234          Phnom Penh    104.874   11.5556 Lower middle income
## 2235          Phnom Penh    104.874   11.5556 Lower middle income
## 2236          Phnom Penh    104.874   11.5556 Lower middle income
## 2237          Phnom Penh    104.874   11.5556 Lower middle income
## 2238          Phnom Penh    104.874   11.5556 Lower middle income
## 2239          Phnom Penh    104.874   11.5556 Lower middle income
## 2240          Phnom Penh    104.874   11.5556 Lower middle income
## 2241          Phnom Penh    104.874   11.5556 Lower middle income
## 2242          Phnom Penh    104.874   11.5556 Lower middle income
## 2243          Phnom Penh    104.874   11.5556 Lower middle income
## 2244          Phnom Penh    104.874   11.5556 Lower middle income
## 2245          Phnom Penh    104.874   11.5556 Lower middle income
## 2246          Phnom Penh    104.874   11.5556 Lower middle income
## 2247          Phnom Penh    104.874   11.5556 Lower middle income
## 2248          Phnom Penh    104.874   11.5556 Lower middle income
## 2249          Phnom Penh    104.874   11.5556 Lower middle income
## 2250          Phnom Penh    104.874   11.5556 Lower middle income
## 2251          Phnom Penh    104.874   11.5556 Lower middle income
## 2252          Phnom Penh    104.874   11.5556 Lower middle income
## 2253          Phnom Penh    104.874   11.5556 Lower middle income
## 2254          Phnom Penh    104.874   11.5556 Lower middle income
## 2255          Phnom Penh    104.874   11.5556 Lower middle income
## 2256          Phnom Penh    104.874   11.5556 Lower middle income
## 2257          Phnom Penh    104.874   11.5556 Lower middle income
## 2258          Phnom Penh    104.874   11.5556 Lower middle income
## 2259          Phnom Penh    104.874   11.5556 Lower middle income
## 2260          Phnom Penh    104.874   11.5556 Lower middle income
## 2261          Phnom Penh    104.874   11.5556 Lower middle income
## 2262          Phnom Penh    104.874   11.5556 Lower middle income
## 2263          Phnom Penh    104.874   11.5556 Lower middle income
## 2264          Phnom Penh    104.874   11.5556 Lower middle income
## 2265          Phnom Penh    104.874   11.5556 Lower middle income
## 2266          Phnom Penh    104.874   11.5556 Lower middle income
## 2267          Phnom Penh    104.874   11.5556 Lower middle income
## 2268          Phnom Penh    104.874   11.5556 Lower middle income
## 2269          Phnom Penh    104.874   11.5556 Lower middle income
## 2270          Phnom Penh    104.874   11.5556 Lower middle income
## 2271          Phnom Penh    104.874   11.5556 Lower middle income
## 2272          Phnom Penh    104.874   11.5556 Lower middle income
## 2273          Phnom Penh    104.874   11.5556 Lower middle income
## 2274          Phnom Penh    104.874   11.5556 Lower middle income
## 2275          Phnom Penh    104.874   11.5556 Lower middle income
## 2276          Phnom Penh    104.874   11.5556 Lower middle income
## 2277          Phnom Penh    104.874   11.5556 Lower middle income
## 2278          Phnom Penh    104.874   11.5556 Lower middle income
## 2279          Phnom Penh    104.874   11.5556 Lower middle income
## 2280          Phnom Penh    104.874   11.5556 Lower middle income
## 2281          Phnom Penh    104.874   11.5556 Lower middle income
## 2282          Phnom Penh    104.874   11.5556 Lower middle income
## 2283          Phnom Penh    104.874   11.5556 Lower middle income
## 2284          Phnom Penh    104.874   11.5556 Lower middle income
## 2285          Phnom Penh    104.874   11.5556 Lower middle income
## 2286          Phnom Penh    104.874   11.5556 Lower middle income
## 2287          Phnom Penh    104.874   11.5556 Lower middle income
## 2288          Phnom Penh    104.874   11.5556 Lower middle income
## 2289          Phnom Penh    104.874   11.5556 Lower middle income
## 2290          Phnom Penh    104.874   11.5556 Lower middle income
## 2291          Phnom Penh    104.874   11.5556 Lower middle income
## 2292          Phnom Penh    104.874   11.5556 Lower middle income
## 2293          Phnom Penh    104.874   11.5556 Lower middle income
## 2294          Phnom Penh    104.874   11.5556 Lower middle income
## 2295             Yaounde    11.5174    3.8721 Lower middle income
## 2296             Yaounde    11.5174    3.8721 Lower middle income
## 2297             Yaounde    11.5174    3.8721 Lower middle income
## 2298             Yaounde    11.5174    3.8721 Lower middle income
## 2299             Yaounde    11.5174    3.8721 Lower middle income
## 2300             Yaounde    11.5174    3.8721 Lower middle income
## 2301             Yaounde    11.5174    3.8721 Lower middle income
## 2302             Yaounde    11.5174    3.8721 Lower middle income
## 2303             Yaounde    11.5174    3.8721 Lower middle income
## 2304             Yaounde    11.5174    3.8721 Lower middle income
## 2305             Yaounde    11.5174    3.8721 Lower middle income
## 2306             Yaounde    11.5174    3.8721 Lower middle income
## 2307             Yaounde    11.5174    3.8721 Lower middle income
## 2308             Yaounde    11.5174    3.8721 Lower middle income
## 2309             Yaounde    11.5174    3.8721 Lower middle income
## 2310             Yaounde    11.5174    3.8721 Lower middle income
## 2311             Yaounde    11.5174    3.8721 Lower middle income
## 2312             Yaounde    11.5174    3.8721 Lower middle income
## 2313             Yaounde    11.5174    3.8721 Lower middle income
## 2314             Yaounde    11.5174    3.8721 Lower middle income
## 2315             Yaounde    11.5174    3.8721 Lower middle income
## 2316             Yaounde    11.5174    3.8721 Lower middle income
## 2317             Yaounde    11.5174    3.8721 Lower middle income
## 2318             Yaounde    11.5174    3.8721 Lower middle income
## 2319             Yaounde    11.5174    3.8721 Lower middle income
## 2320             Yaounde    11.5174    3.8721 Lower middle income
## 2321             Yaounde    11.5174    3.8721 Lower middle income
## 2322             Yaounde    11.5174    3.8721 Lower middle income
## 2323             Yaounde    11.5174    3.8721 Lower middle income
## 2324             Yaounde    11.5174    3.8721 Lower middle income
## 2325             Yaounde    11.5174    3.8721 Lower middle income
## 2326             Yaounde    11.5174    3.8721 Lower middle income
## 2327             Yaounde    11.5174    3.8721 Lower middle income
## 2328             Yaounde    11.5174    3.8721 Lower middle income
## 2329             Yaounde    11.5174    3.8721 Lower middle income
## 2330             Yaounde    11.5174    3.8721 Lower middle income
## 2331             Yaounde    11.5174    3.8721 Lower middle income
## 2332             Yaounde    11.5174    3.8721 Lower middle income
## 2333             Yaounde    11.5174    3.8721 Lower middle income
## 2334             Yaounde    11.5174    3.8721 Lower middle income
## 2335             Yaounde    11.5174    3.8721 Lower middle income
## 2336             Yaounde    11.5174    3.8721 Lower middle income
## 2337             Yaounde    11.5174    3.8721 Lower middle income
## 2338             Yaounde    11.5174    3.8721 Lower middle income
## 2339             Yaounde    11.5174    3.8721 Lower middle income
## 2340             Yaounde    11.5174    3.8721 Lower middle income
## 2341             Yaounde    11.5174    3.8721 Lower middle income
## 2342             Yaounde    11.5174    3.8721 Lower middle income
## 2343             Yaounde    11.5174    3.8721 Lower middle income
## 2344             Yaounde    11.5174    3.8721 Lower middle income
## 2345             Yaounde    11.5174    3.8721 Lower middle income
## 2346             Yaounde    11.5174    3.8721 Lower middle income
## 2347             Yaounde    11.5174    3.8721 Lower middle income
## 2348             Yaounde    11.5174    3.8721 Lower middle income
## 2349             Yaounde    11.5174    3.8721 Lower middle income
## 2350             Yaounde    11.5174    3.8721 Lower middle income
## 2351             Yaounde    11.5174    3.8721 Lower middle income
## 2352             Yaounde    11.5174    3.8721 Lower middle income
## 2353             Yaounde    11.5174    3.8721 Lower middle income
## 2354             Yaounde    11.5174    3.8721 Lower middle income
## 2355             Yaounde    11.5174    3.8721 Lower middle income
## 2356             Yaounde    11.5174    3.8721 Lower middle income
## 2357              Ottawa   -75.6919   45.4215         High income
## 2358              Ottawa   -75.6919   45.4215         High income
## 2359              Ottawa   -75.6919   45.4215         High income
## 2360              Ottawa   -75.6919   45.4215         High income
## 2361              Ottawa   -75.6919   45.4215         High income
## 2362              Ottawa   -75.6919   45.4215         High income
## 2363              Ottawa   -75.6919   45.4215         High income
## 2364              Ottawa   -75.6919   45.4215         High income
## 2365              Ottawa   -75.6919   45.4215         High income
## 2366              Ottawa   -75.6919   45.4215         High income
## 2367              Ottawa   -75.6919   45.4215         High income
## 2368              Ottawa   -75.6919   45.4215         High income
## 2369              Ottawa   -75.6919   45.4215         High income
## 2370              Ottawa   -75.6919   45.4215         High income
## 2371              Ottawa   -75.6919   45.4215         High income
## 2372              Ottawa   -75.6919   45.4215         High income
## 2373              Ottawa   -75.6919   45.4215         High income
## 2374              Ottawa   -75.6919   45.4215         High income
## 2375              Ottawa   -75.6919   45.4215         High income
## 2376              Ottawa   -75.6919   45.4215         High income
## 2377              Ottawa   -75.6919   45.4215         High income
## 2378              Ottawa   -75.6919   45.4215         High income
## 2379              Ottawa   -75.6919   45.4215         High income
## 2380              Ottawa   -75.6919   45.4215         High income
## 2381              Ottawa   -75.6919   45.4215         High income
## 2382              Ottawa   -75.6919   45.4215         High income
## 2383              Ottawa   -75.6919   45.4215         High income
## 2384              Ottawa   -75.6919   45.4215         High income
## 2385              Ottawa   -75.6919   45.4215         High income
## 2386              Ottawa   -75.6919   45.4215         High income
## 2387              Ottawa   -75.6919   45.4215         High income
## 2388              Ottawa   -75.6919   45.4215         High income
## 2389              Ottawa   -75.6919   45.4215         High income
## 2390              Ottawa   -75.6919   45.4215         High income
## 2391              Ottawa   -75.6919   45.4215         High income
## 2392              Ottawa   -75.6919   45.4215         High income
## 2393              Ottawa   -75.6919   45.4215         High income
## 2394              Ottawa   -75.6919   45.4215         High income
## 2395              Ottawa   -75.6919   45.4215         High income
## 2396              Ottawa   -75.6919   45.4215         High income
## 2397              Ottawa   -75.6919   45.4215         High income
## 2398              Ottawa   -75.6919   45.4215         High income
## 2399              Ottawa   -75.6919   45.4215         High income
## 2400              Ottawa   -75.6919   45.4215         High income
## 2401              Ottawa   -75.6919   45.4215         High income
## 2402              Ottawa   -75.6919   45.4215         High income
## 2403              Ottawa   -75.6919   45.4215         High income
## 2404              Ottawa   -75.6919   45.4215         High income
## 2405              Ottawa   -75.6919   45.4215         High income
## 2406              Ottawa   -75.6919   45.4215         High income
## 2407              Ottawa   -75.6919   45.4215         High income
## 2408              Ottawa   -75.6919   45.4215         High income
## 2409              Ottawa   -75.6919   45.4215         High income
## 2410              Ottawa   -75.6919   45.4215         High income
## 2411              Ottawa   -75.6919   45.4215         High income
## 2412              Ottawa   -75.6919   45.4215         High income
## 2413              Ottawa   -75.6919   45.4215         High income
## 2414              Ottawa   -75.6919   45.4215         High income
## 2415              Ottawa   -75.6919   45.4215         High income
## 2416              Ottawa   -75.6919   45.4215         High income
## 2417              Ottawa   -75.6919   45.4215         High income
## 2418              Ottawa   -75.6919   45.4215         High income
## 2419                                                   Aggregates
## 2420                                                   Aggregates
## 2421                                                   Aggregates
## 2422                                                   Aggregates
## 2423                                                   Aggregates
## 2424                                                   Aggregates
## 2425                                                   Aggregates
## 2426                                                   Aggregates
## 2427                                                   Aggregates
## 2428                                                   Aggregates
## 2429                                                   Aggregates
## 2430                                                   Aggregates
## 2431                                                   Aggregates
## 2432                                                   Aggregates
## 2433                                                   Aggregates
## 2434                                                   Aggregates
## 2435                                                   Aggregates
## 2436                                                   Aggregates
## 2437                                                   Aggregates
## 2438                                                   Aggregates
## 2439                                                   Aggregates
## 2440                                                   Aggregates
## 2441                                                   Aggregates
## 2442                                                   Aggregates
## 2443                                                   Aggregates
## 2444                                                   Aggregates
## 2445                                                   Aggregates
## 2446                                                   Aggregates
## 2447                                                   Aggregates
## 2448                                                   Aggregates
## 2449                                                   Aggregates
## 2450                                                   Aggregates
## 2451                                                   Aggregates
## 2452                                                   Aggregates
## 2453                                                   Aggregates
## 2454                                                   Aggregates
## 2455                                                   Aggregates
## 2456                                                   Aggregates
## 2457                                                   Aggregates
## 2458                                                   Aggregates
## 2459                                                   Aggregates
## 2460                                                   Aggregates
## 2461                                                   Aggregates
## 2462                                                   Aggregates
## 2463                                                   Aggregates
## 2464                                                   Aggregates
## 2465                                                   Aggregates
## 2466                                                   Aggregates
## 2467                                                   Aggregates
## 2468                                                   Aggregates
## 2469                                                   Aggregates
## 2470                                                   Aggregates
## 2471                                                   Aggregates
## 2472                                                   Aggregates
## 2473                                                   Aggregates
## 2474                                                   Aggregates
## 2475                                                   Aggregates
## 2476                                                   Aggregates
## 2477                                                   Aggregates
## 2478                                                   Aggregates
## 2479                                                   Aggregates
## 2480                                                   Aggregates
## 2481         George Town   -81.3857   19.3022         High income
## 2482         George Town   -81.3857   19.3022         High income
## 2483         George Town   -81.3857   19.3022         High income
## 2484         George Town   -81.3857   19.3022         High income
## 2485         George Town   -81.3857   19.3022         High income
## 2486         George Town   -81.3857   19.3022         High income
## 2487         George Town   -81.3857   19.3022         High income
## 2488         George Town   -81.3857   19.3022         High income
## 2489         George Town   -81.3857   19.3022         High income
## 2490         George Town   -81.3857   19.3022         High income
## 2491         George Town   -81.3857   19.3022         High income
## 2492         George Town   -81.3857   19.3022         High income
## 2493         George Town   -81.3857   19.3022         High income
## 2494         George Town   -81.3857   19.3022         High income
## 2495         George Town   -81.3857   19.3022         High income
## 2496         George Town   -81.3857   19.3022         High income
## 2497         George Town   -81.3857   19.3022         High income
## 2498         George Town   -81.3857   19.3022         High income
## 2499         George Town   -81.3857   19.3022         High income
## 2500         George Town   -81.3857   19.3022         High income
## 2501         George Town   -81.3857   19.3022         High income
## 2502         George Town   -81.3857   19.3022         High income
## 2503         George Town   -81.3857   19.3022         High income
## 2504         George Town   -81.3857   19.3022         High income
## 2505         George Town   -81.3857   19.3022         High income
## 2506         George Town   -81.3857   19.3022         High income
## 2507         George Town   -81.3857   19.3022         High income
## 2508         George Town   -81.3857   19.3022         High income
## 2509         George Town   -81.3857   19.3022         High income
## 2510         George Town   -81.3857   19.3022         High income
## 2511         George Town   -81.3857   19.3022         High income
## 2512         George Town   -81.3857   19.3022         High income
## 2513         George Town   -81.3857   19.3022         High income
## 2514         George Town   -81.3857   19.3022         High income
## 2515         George Town   -81.3857   19.3022         High income
## 2516         George Town   -81.3857   19.3022         High income
## 2517         George Town   -81.3857   19.3022         High income
## 2518         George Town   -81.3857   19.3022         High income
## 2519         George Town   -81.3857   19.3022         High income
## 2520         George Town   -81.3857   19.3022         High income
## 2521         George Town   -81.3857   19.3022         High income
## 2522         George Town   -81.3857   19.3022         High income
## 2523         George Town   -81.3857   19.3022         High income
## 2524         George Town   -81.3857   19.3022         High income
## 2525         George Town   -81.3857   19.3022         High income
## 2526         George Town   -81.3857   19.3022         High income
## 2527         George Town   -81.3857   19.3022         High income
## 2528         George Town   -81.3857   19.3022         High income
## 2529         George Town   -81.3857   19.3022         High income
## 2530         George Town   -81.3857   19.3022         High income
## 2531         George Town   -81.3857   19.3022         High income
## 2532         George Town   -81.3857   19.3022         High income
## 2533         George Town   -81.3857   19.3022         High income
## 2534         George Town   -81.3857   19.3022         High income
## 2535         George Town   -81.3857   19.3022         High income
## 2536         George Town   -81.3857   19.3022         High income
## 2537         George Town   -81.3857   19.3022         High income
## 2538         George Town   -81.3857   19.3022         High income
## 2539         George Town   -81.3857   19.3022         High income
## 2540         George Town   -81.3857   19.3022         High income
## 2541         George Town   -81.3857   19.3022         High income
## 2542         George Town   -81.3857   19.3022         High income
## 2543              Bangui    21.6407   5.63056          Low income
## 2544              Bangui    21.6407   5.63056          Low income
## 2545              Bangui    21.6407   5.63056          Low income
## 2546              Bangui    21.6407   5.63056          Low income
## 2547              Bangui    21.6407   5.63056          Low income
## 2548              Bangui    21.6407   5.63056          Low income
## 2549              Bangui    21.6407   5.63056          Low income
## 2550              Bangui    21.6407   5.63056          Low income
## 2551              Bangui    21.6407   5.63056          Low income
## 2552              Bangui    21.6407   5.63056          Low income
## 2553              Bangui    21.6407   5.63056          Low income
## 2554              Bangui    21.6407   5.63056          Low income
## 2555              Bangui    21.6407   5.63056          Low income
## 2556              Bangui    21.6407   5.63056          Low income
## 2557              Bangui    21.6407   5.63056          Low income
## 2558              Bangui    21.6407   5.63056          Low income
## 2559              Bangui    21.6407   5.63056          Low income
## 2560              Bangui    21.6407   5.63056          Low income
## 2561              Bangui    21.6407   5.63056          Low income
## 2562              Bangui    21.6407   5.63056          Low income
## 2563              Bangui    21.6407   5.63056          Low income
## 2564              Bangui    21.6407   5.63056          Low income
## 2565              Bangui    21.6407   5.63056          Low income
## 2566              Bangui    21.6407   5.63056          Low income
## 2567              Bangui    21.6407   5.63056          Low income
## 2568              Bangui    21.6407   5.63056          Low income
## 2569              Bangui    21.6407   5.63056          Low income
## 2570              Bangui    21.6407   5.63056          Low income
## 2571              Bangui    21.6407   5.63056          Low income
## 2572              Bangui    21.6407   5.63056          Low income
## 2573              Bangui    21.6407   5.63056          Low income
## 2574              Bangui    21.6407   5.63056          Low income
## 2575              Bangui    21.6407   5.63056          Low income
## 2576              Bangui    21.6407   5.63056          Low income
## 2577              Bangui    21.6407   5.63056          Low income
## 2578              Bangui    21.6407   5.63056          Low income
## 2579              Bangui    21.6407   5.63056          Low income
## 2580              Bangui    21.6407   5.63056          Low income
## 2581              Bangui    21.6407   5.63056          Low income
## 2582              Bangui    21.6407   5.63056          Low income
## 2583              Bangui    21.6407   5.63056          Low income
## 2584              Bangui    21.6407   5.63056          Low income
## 2585              Bangui    21.6407   5.63056          Low income
## 2586              Bangui    21.6407   5.63056          Low income
## 2587              Bangui    21.6407   5.63056          Low income
## 2588              Bangui    21.6407   5.63056          Low income
## 2589              Bangui    21.6407   5.63056          Low income
## 2590              Bangui    21.6407   5.63056          Low income
## 2591              Bangui    21.6407   5.63056          Low income
## 2592              Bangui    21.6407   5.63056          Low income
## 2593              Bangui    21.6407   5.63056          Low income
## 2594              Bangui    21.6407   5.63056          Low income
## 2595              Bangui    21.6407   5.63056          Low income
## 2596              Bangui    21.6407   5.63056          Low income
## 2597              Bangui    21.6407   5.63056          Low income
## 2598              Bangui    21.6407   5.63056          Low income
## 2599              Bangui    21.6407   5.63056          Low income
## 2600              Bangui    21.6407   5.63056          Low income
## 2601              Bangui    21.6407   5.63056          Low income
## 2602              Bangui    21.6407   5.63056          Low income
## 2603              Bangui    21.6407   5.63056          Low income
## 2604              Bangui    21.6407   5.63056          Low income
## 2605                                                   Aggregates
## 2606                                                   Aggregates
## 2607                                                   Aggregates
## 2608                                                   Aggregates
## 2609                                                   Aggregates
## 2610                                                   Aggregates
## 2611                                                   Aggregates
## 2612                                                   Aggregates
## 2613                                                   Aggregates
## 2614                                                   Aggregates
## 2615                                                   Aggregates
## 2616                                                   Aggregates
## 2617                                                   Aggregates
## 2618                                                   Aggregates
## 2619                                                   Aggregates
## 2620                                                   Aggregates
## 2621                                                   Aggregates
## 2622                                                   Aggregates
## 2623                                                   Aggregates
## 2624                                                   Aggregates
## 2625                                                   Aggregates
## 2626                                                   Aggregates
## 2627                                                   Aggregates
## 2628                                                   Aggregates
## 2629                                                   Aggregates
## 2630                                                   Aggregates
## 2631                                                   Aggregates
## 2632                                                   Aggregates
## 2633                                                   Aggregates
## 2634                                                   Aggregates
## 2635                                                   Aggregates
## 2636                                                   Aggregates
## 2637                                                   Aggregates
## 2638                                                   Aggregates
## 2639                                                   Aggregates
## 2640                                                   Aggregates
## 2641                                                   Aggregates
## 2642                                                   Aggregates
## 2643                                                   Aggregates
## 2644                                                   Aggregates
## 2645                                                   Aggregates
## 2646                                                   Aggregates
## 2647                                                   Aggregates
## 2648                                                   Aggregates
## 2649                                                   Aggregates
## 2650                                                   Aggregates
## 2651                                                   Aggregates
## 2652                                                   Aggregates
## 2653                                                   Aggregates
## 2654                                                   Aggregates
## 2655                                                   Aggregates
## 2656                                                   Aggregates
## 2657                                                   Aggregates
## 2658                                                   Aggregates
## 2659                                                   Aggregates
## 2660                                                   Aggregates
## 2661                                                   Aggregates
## 2662                                                   Aggregates
## 2663                                                   Aggregates
## 2664                                                   Aggregates
## 2665                                                   Aggregates
## 2666                                                   Aggregates
## 2667           N'Djamena    15.0445   12.1048          Low income
## 2668           N'Djamena    15.0445   12.1048          Low income
## 2669           N'Djamena    15.0445   12.1048          Low income
## 2670           N'Djamena    15.0445   12.1048          Low income
## 2671           N'Djamena    15.0445   12.1048          Low income
## 2672           N'Djamena    15.0445   12.1048          Low income
## 2673           N'Djamena    15.0445   12.1048          Low income
## 2674           N'Djamena    15.0445   12.1048          Low income
## 2675           N'Djamena    15.0445   12.1048          Low income
## 2676           N'Djamena    15.0445   12.1048          Low income
## 2677           N'Djamena    15.0445   12.1048          Low income
## 2678           N'Djamena    15.0445   12.1048          Low income
## 2679           N'Djamena    15.0445   12.1048          Low income
## 2680           N'Djamena    15.0445   12.1048          Low income
## 2681           N'Djamena    15.0445   12.1048          Low income
## 2682           N'Djamena    15.0445   12.1048          Low income
## 2683           N'Djamena    15.0445   12.1048          Low income
## 2684           N'Djamena    15.0445   12.1048          Low income
## 2685           N'Djamena    15.0445   12.1048          Low income
## 2686           N'Djamena    15.0445   12.1048          Low income
## 2687           N'Djamena    15.0445   12.1048          Low income
## 2688           N'Djamena    15.0445   12.1048          Low income
## 2689           N'Djamena    15.0445   12.1048          Low income
## 2690           N'Djamena    15.0445   12.1048          Low income
## 2691           N'Djamena    15.0445   12.1048          Low income
## 2692           N'Djamena    15.0445   12.1048          Low income
## 2693           N'Djamena    15.0445   12.1048          Low income
## 2694           N'Djamena    15.0445   12.1048          Low income
## 2695           N'Djamena    15.0445   12.1048          Low income
## 2696           N'Djamena    15.0445   12.1048          Low income
## 2697           N'Djamena    15.0445   12.1048          Low income
## 2698           N'Djamena    15.0445   12.1048          Low income
## 2699           N'Djamena    15.0445   12.1048          Low income
## 2700           N'Djamena    15.0445   12.1048          Low income
## 2701           N'Djamena    15.0445   12.1048          Low income
## 2702           N'Djamena    15.0445   12.1048          Low income
## 2703           N'Djamena    15.0445   12.1048          Low income
## 2704           N'Djamena    15.0445   12.1048          Low income
## 2705           N'Djamena    15.0445   12.1048          Low income
## 2706           N'Djamena    15.0445   12.1048          Low income
## 2707           N'Djamena    15.0445   12.1048          Low income
## 2708           N'Djamena    15.0445   12.1048          Low income
## 2709           N'Djamena    15.0445   12.1048          Low income
## 2710           N'Djamena    15.0445   12.1048          Low income
## 2711           N'Djamena    15.0445   12.1048          Low income
## 2712           N'Djamena    15.0445   12.1048          Low income
## 2713           N'Djamena    15.0445   12.1048          Low income
## 2714           N'Djamena    15.0445   12.1048          Low income
## 2715           N'Djamena    15.0445   12.1048          Low income
## 2716           N'Djamena    15.0445   12.1048          Low income
## 2717           N'Djamena    15.0445   12.1048          Low income
## 2718           N'Djamena    15.0445   12.1048          Low income
## 2719           N'Djamena    15.0445   12.1048          Low income
## 2720           N'Djamena    15.0445   12.1048          Low income
## 2721           N'Djamena    15.0445   12.1048          Low income
## 2722           N'Djamena    15.0445   12.1048          Low income
## 2723           N'Djamena    15.0445   12.1048          Low income
## 2724           N'Djamena    15.0445   12.1048          Low income
## 2725           N'Djamena    15.0445   12.1048          Low income
## 2726           N'Djamena    15.0445   12.1048          Low income
## 2727           N'Djamena    15.0445   12.1048          Low income
## 2728           N'Djamena    15.0445   12.1048          Low income
## 2729                                                  High income
## 2730                                                  High income
## 2731                                                  High income
## 2732                                                  High income
## 2733                                                  High income
## 2734                                                  High income
## 2735                                                  High income
## 2736                                                  High income
## 2737                                                  High income
## 2738                                                  High income
## 2739                                                  High income
## 2740                                                  High income
## 2741                                                  High income
## 2742                                                  High income
## 2743                                                  High income
## 2744                                                  High income
## 2745                                                  High income
## 2746                                                  High income
## 2747                                                  High income
## 2748                                                  High income
## 2749                                                  High income
## 2750                                                  High income
## 2751                                                  High income
## 2752                                                  High income
## 2753                                                  High income
## 2754                                                  High income
## 2755                                                  High income
## 2756                                                  High income
## 2757                                                  High income
## 2758                                                  High income
## 2759                                                  High income
## 2760                                                  High income
## 2761                                                  High income
## 2762                                                  High income
## 2763                                                  High income
## 2764                                                  High income
## 2765                                                  High income
## 2766                                                  High income
## 2767                                                  High income
## 2768                                                  High income
## 2769                                                  High income
## 2770                                                  High income
## 2771                                                  High income
## 2772                                                  High income
## 2773                                                  High income
## 2774                                                  High income
## 2775                                                  High income
## 2776                                                  High income
## 2777                                                  High income
## 2778                                                  High income
## 2779                                                  High income
## 2780                                                  High income
## 2781                                                  High income
## 2782                                                  High income
## 2783                                                  High income
## 2784                                                  High income
## 2785                                                  High income
## 2786                                                  High income
## 2787                                                  High income
## 2788                                                  High income
## 2789                                                  High income
## 2790                                                  High income
## 2791            Santiago   -70.6475   -33.475         High income
## 2792            Santiago   -70.6475   -33.475         High income
## 2793            Santiago   -70.6475   -33.475         High income
## 2794            Santiago   -70.6475   -33.475         High income
## 2795            Santiago   -70.6475   -33.475         High income
## 2796            Santiago   -70.6475   -33.475         High income
## 2797            Santiago   -70.6475   -33.475         High income
## 2798            Santiago   -70.6475   -33.475         High income
## 2799            Santiago   -70.6475   -33.475         High income
## 2800            Santiago   -70.6475   -33.475         High income
## 2801            Santiago   -70.6475   -33.475         High income
## 2802            Santiago   -70.6475   -33.475         High income
## 2803            Santiago   -70.6475   -33.475         High income
## 2804            Santiago   -70.6475   -33.475         High income
## 2805            Santiago   -70.6475   -33.475         High income
## 2806            Santiago   -70.6475   -33.475         High income
## 2807            Santiago   -70.6475   -33.475         High income
## 2808            Santiago   -70.6475   -33.475         High income
## 2809            Santiago   -70.6475   -33.475         High income
## 2810            Santiago   -70.6475   -33.475         High income
## 2811            Santiago   -70.6475   -33.475         High income
## 2812            Santiago   -70.6475   -33.475         High income
## 2813            Santiago   -70.6475   -33.475         High income
## 2814            Santiago   -70.6475   -33.475         High income
## 2815            Santiago   -70.6475   -33.475         High income
## 2816            Santiago   -70.6475   -33.475         High income
## 2817            Santiago   -70.6475   -33.475         High income
## 2818            Santiago   -70.6475   -33.475         High income
## 2819            Santiago   -70.6475   -33.475         High income
## 2820            Santiago   -70.6475   -33.475         High income
## 2821            Santiago   -70.6475   -33.475         High income
## 2822            Santiago   -70.6475   -33.475         High income
## 2823            Santiago   -70.6475   -33.475         High income
## 2824            Santiago   -70.6475   -33.475         High income
## 2825            Santiago   -70.6475   -33.475         High income
## 2826            Santiago   -70.6475   -33.475         High income
## 2827            Santiago   -70.6475   -33.475         High income
## 2828            Santiago   -70.6475   -33.475         High income
## 2829            Santiago   -70.6475   -33.475         High income
## 2830            Santiago   -70.6475   -33.475         High income
## 2831            Santiago   -70.6475   -33.475         High income
## 2832            Santiago   -70.6475   -33.475         High income
## 2833            Santiago   -70.6475   -33.475         High income
## 2834            Santiago   -70.6475   -33.475         High income
## 2835            Santiago   -70.6475   -33.475         High income
## 2836            Santiago   -70.6475   -33.475         High income
## 2837            Santiago   -70.6475   -33.475         High income
## 2838            Santiago   -70.6475   -33.475         High income
## 2839            Santiago   -70.6475   -33.475         High income
## 2840            Santiago   -70.6475   -33.475         High income
## 2841            Santiago   -70.6475   -33.475         High income
## 2842            Santiago   -70.6475   -33.475         High income
## 2843            Santiago   -70.6475   -33.475         High income
## 2844            Santiago   -70.6475   -33.475         High income
## 2845            Santiago   -70.6475   -33.475         High income
## 2846            Santiago   -70.6475   -33.475         High income
## 2847            Santiago   -70.6475   -33.475         High income
## 2848            Santiago   -70.6475   -33.475         High income
## 2849            Santiago   -70.6475   -33.475         High income
## 2850            Santiago   -70.6475   -33.475         High income
## 2851            Santiago   -70.6475   -33.475         High income
## 2852            Santiago   -70.6475   -33.475         High income
## 2853             Beijing    116.286   40.0495 Upper middle income
## 2854             Beijing    116.286   40.0495 Upper middle income
## 2855             Beijing    116.286   40.0495 Upper middle income
## 2856             Beijing    116.286   40.0495 Upper middle income
## 2857             Beijing    116.286   40.0495 Upper middle income
## 2858             Beijing    116.286   40.0495 Upper middle income
## 2859             Beijing    116.286   40.0495 Upper middle income
## 2860             Beijing    116.286   40.0495 Upper middle income
## 2861             Beijing    116.286   40.0495 Upper middle income
## 2862             Beijing    116.286   40.0495 Upper middle income
## 2863             Beijing    116.286   40.0495 Upper middle income
## 2864             Beijing    116.286   40.0495 Upper middle income
## 2865             Beijing    116.286   40.0495 Upper middle income
## 2866             Beijing    116.286   40.0495 Upper middle income
## 2867             Beijing    116.286   40.0495 Upper middle income
## 2868             Beijing    116.286   40.0495 Upper middle income
## 2869             Beijing    116.286   40.0495 Upper middle income
## 2870             Beijing    116.286   40.0495 Upper middle income
## 2871             Beijing    116.286   40.0495 Upper middle income
## 2872             Beijing    116.286   40.0495 Upper middle income
## 2873             Beijing    116.286   40.0495 Upper middle income
## 2874             Beijing    116.286   40.0495 Upper middle income
## 2875             Beijing    116.286   40.0495 Upper middle income
## 2876             Beijing    116.286   40.0495 Upper middle income
## 2877             Beijing    116.286   40.0495 Upper middle income
## 2878             Beijing    116.286   40.0495 Upper middle income
## 2879             Beijing    116.286   40.0495 Upper middle income
## 2880             Beijing    116.286   40.0495 Upper middle income
## 2881             Beijing    116.286   40.0495 Upper middle income
## 2882             Beijing    116.286   40.0495 Upper middle income
## 2883             Beijing    116.286   40.0495 Upper middle income
## 2884             Beijing    116.286   40.0495 Upper middle income
## 2885             Beijing    116.286   40.0495 Upper middle income
## 2886             Beijing    116.286   40.0495 Upper middle income
## 2887             Beijing    116.286   40.0495 Upper middle income
## 2888             Beijing    116.286   40.0495 Upper middle income
## 2889             Beijing    116.286   40.0495 Upper middle income
## 2890             Beijing    116.286   40.0495 Upper middle income
## 2891             Beijing    116.286   40.0495 Upper middle income
## 2892             Beijing    116.286   40.0495 Upper middle income
## 2893             Beijing    116.286   40.0495 Upper middle income
## 2894             Beijing    116.286   40.0495 Upper middle income
## 2895             Beijing    116.286   40.0495 Upper middle income
## 2896             Beijing    116.286   40.0495 Upper middle income
## 2897             Beijing    116.286   40.0495 Upper middle income
## 2898             Beijing    116.286   40.0495 Upper middle income
## 2899             Beijing    116.286   40.0495 Upper middle income
## 2900             Beijing    116.286   40.0495 Upper middle income
## 2901             Beijing    116.286   40.0495 Upper middle income
## 2902             Beijing    116.286   40.0495 Upper middle income
## 2903             Beijing    116.286   40.0495 Upper middle income
## 2904             Beijing    116.286   40.0495 Upper middle income
## 2905             Beijing    116.286   40.0495 Upper middle income
## 2906             Beijing    116.286   40.0495 Upper middle income
## 2907             Beijing    116.286   40.0495 Upper middle income
## 2908             Beijing    116.286   40.0495 Upper middle income
## 2909             Beijing    116.286   40.0495 Upper middle income
## 2910             Beijing    116.286   40.0495 Upper middle income
## 2911             Beijing    116.286   40.0495 Upper middle income
## 2912             Beijing    116.286   40.0495 Upper middle income
## 2913             Beijing    116.286   40.0495 Upper middle income
## 2914             Beijing    116.286   40.0495 Upper middle income
## 2915              Bogota    -74.082   4.60987 Upper middle income
## 2916              Bogota    -74.082   4.60987 Upper middle income
## 2917              Bogota    -74.082   4.60987 Upper middle income
## 2918              Bogota    -74.082   4.60987 Upper middle income
## 2919              Bogota    -74.082   4.60987 Upper middle income
## 2920              Bogota    -74.082   4.60987 Upper middle income
## 2921              Bogota    -74.082   4.60987 Upper middle income
## 2922              Bogota    -74.082   4.60987 Upper middle income
## 2923              Bogota    -74.082   4.60987 Upper middle income
## 2924              Bogota    -74.082   4.60987 Upper middle income
## 2925              Bogota    -74.082   4.60987 Upper middle income
## 2926              Bogota    -74.082   4.60987 Upper middle income
## 2927              Bogota    -74.082   4.60987 Upper middle income
## 2928              Bogota    -74.082   4.60987 Upper middle income
## 2929              Bogota    -74.082   4.60987 Upper middle income
## 2930              Bogota    -74.082   4.60987 Upper middle income
## 2931              Bogota    -74.082   4.60987 Upper middle income
## 2932              Bogota    -74.082   4.60987 Upper middle income
## 2933              Bogota    -74.082   4.60987 Upper middle income
## 2934              Bogota    -74.082   4.60987 Upper middle income
## 2935              Bogota    -74.082   4.60987 Upper middle income
## 2936              Bogota    -74.082   4.60987 Upper middle income
## 2937              Bogota    -74.082   4.60987 Upper middle income
## 2938              Bogota    -74.082   4.60987 Upper middle income
## 2939              Bogota    -74.082   4.60987 Upper middle income
## 2940              Bogota    -74.082   4.60987 Upper middle income
## 2941              Bogota    -74.082   4.60987 Upper middle income
## 2942              Bogota    -74.082   4.60987 Upper middle income
## 2943              Bogota    -74.082   4.60987 Upper middle income
## 2944              Bogota    -74.082   4.60987 Upper middle income
## 2945              Bogota    -74.082   4.60987 Upper middle income
## 2946              Bogota    -74.082   4.60987 Upper middle income
## 2947              Bogota    -74.082   4.60987 Upper middle income
## 2948              Bogota    -74.082   4.60987 Upper middle income
## 2949              Bogota    -74.082   4.60987 Upper middle income
## 2950              Bogota    -74.082   4.60987 Upper middle income
## 2951              Bogota    -74.082   4.60987 Upper middle income
## 2952              Bogota    -74.082   4.60987 Upper middle income
## 2953              Bogota    -74.082   4.60987 Upper middle income
## 2954              Bogota    -74.082   4.60987 Upper middle income
## 2955              Bogota    -74.082   4.60987 Upper middle income
## 2956              Bogota    -74.082   4.60987 Upper middle income
## 2957              Bogota    -74.082   4.60987 Upper middle income
## 2958              Bogota    -74.082   4.60987 Upper middle income
## 2959              Bogota    -74.082   4.60987 Upper middle income
## 2960              Bogota    -74.082   4.60987 Upper middle income
## 2961              Bogota    -74.082   4.60987 Upper middle income
## 2962              Bogota    -74.082   4.60987 Upper middle income
## 2963              Bogota    -74.082   4.60987 Upper middle income
## 2964              Bogota    -74.082   4.60987 Upper middle income
## 2965              Bogota    -74.082   4.60987 Upper middle income
## 2966              Bogota    -74.082   4.60987 Upper middle income
## 2967              Bogota    -74.082   4.60987 Upper middle income
## 2968              Bogota    -74.082   4.60987 Upper middle income
## 2969              Bogota    -74.082   4.60987 Upper middle income
## 2970              Bogota    -74.082   4.60987 Upper middle income
## 2971              Bogota    -74.082   4.60987 Upper middle income
## 2972              Bogota    -74.082   4.60987 Upper middle income
## 2973              Bogota    -74.082   4.60987 Upper middle income
## 2974              Bogota    -74.082   4.60987 Upper middle income
## 2975              Bogota    -74.082   4.60987 Upper middle income
## 2976              Bogota    -74.082   4.60987 Upper middle income
## 2977              Moroni    43.2418  -11.6986 Lower middle income
## 2978              Moroni    43.2418  -11.6986 Lower middle income
## 2979              Moroni    43.2418  -11.6986 Lower middle income
## 2980              Moroni    43.2418  -11.6986 Lower middle income
## 2981              Moroni    43.2418  -11.6986 Lower middle income
## 2982              Moroni    43.2418  -11.6986 Lower middle income
## 2983              Moroni    43.2418  -11.6986 Lower middle income
## 2984              Moroni    43.2418  -11.6986 Lower middle income
## 2985              Moroni    43.2418  -11.6986 Lower middle income
## 2986              Moroni    43.2418  -11.6986 Lower middle income
## 2987              Moroni    43.2418  -11.6986 Lower middle income
## 2988              Moroni    43.2418  -11.6986 Lower middle income
## 2989              Moroni    43.2418  -11.6986 Lower middle income
## 2990              Moroni    43.2418  -11.6986 Lower middle income
## 2991              Moroni    43.2418  -11.6986 Lower middle income
## 2992              Moroni    43.2418  -11.6986 Lower middle income
## 2993              Moroni    43.2418  -11.6986 Lower middle income
## 2994              Moroni    43.2418  -11.6986 Lower middle income
## 2995              Moroni    43.2418  -11.6986 Lower middle income
## 2996              Moroni    43.2418  -11.6986 Lower middle income
## 2997              Moroni    43.2418  -11.6986 Lower middle income
## 2998              Moroni    43.2418  -11.6986 Lower middle income
## 2999              Moroni    43.2418  -11.6986 Lower middle income
## 3000              Moroni    43.2418  -11.6986 Lower middle income
## 3001              Moroni    43.2418  -11.6986 Lower middle income
## 3002              Moroni    43.2418  -11.6986 Lower middle income
## 3003              Moroni    43.2418  -11.6986 Lower middle income
## 3004              Moroni    43.2418  -11.6986 Lower middle income
## 3005              Moroni    43.2418  -11.6986 Lower middle income
## 3006              Moroni    43.2418  -11.6986 Lower middle income
## 3007              Moroni    43.2418  -11.6986 Lower middle income
## 3008              Moroni    43.2418  -11.6986 Lower middle income
## 3009              Moroni    43.2418  -11.6986 Lower middle income
## 3010              Moroni    43.2418  -11.6986 Lower middle income
## 3011              Moroni    43.2418  -11.6986 Lower middle income
## 3012              Moroni    43.2418  -11.6986 Lower middle income
## 3013              Moroni    43.2418  -11.6986 Lower middle income
## 3014              Moroni    43.2418  -11.6986 Lower middle income
## 3015              Moroni    43.2418  -11.6986 Lower middle income
## 3016              Moroni    43.2418  -11.6986 Lower middle income
## 3017              Moroni    43.2418  -11.6986 Lower middle income
## 3018              Moroni    43.2418  -11.6986 Lower middle income
## 3019              Moroni    43.2418  -11.6986 Lower middle income
## 3020              Moroni    43.2418  -11.6986 Lower middle income
## 3021              Moroni    43.2418  -11.6986 Lower middle income
## 3022              Moroni    43.2418  -11.6986 Lower middle income
## 3023              Moroni    43.2418  -11.6986 Lower middle income
## 3024              Moroni    43.2418  -11.6986 Lower middle income
## 3025              Moroni    43.2418  -11.6986 Lower middle income
## 3026              Moroni    43.2418  -11.6986 Lower middle income
## 3027              Moroni    43.2418  -11.6986 Lower middle income
## 3028              Moroni    43.2418  -11.6986 Lower middle income
## 3029              Moroni    43.2418  -11.6986 Lower middle income
## 3030              Moroni    43.2418  -11.6986 Lower middle income
## 3031              Moroni    43.2418  -11.6986 Lower middle income
## 3032              Moroni    43.2418  -11.6986 Lower middle income
## 3033              Moroni    43.2418  -11.6986 Lower middle income
## 3034              Moroni    43.2418  -11.6986 Lower middle income
## 3035              Moroni    43.2418  -11.6986 Lower middle income
## 3036              Moroni    43.2418  -11.6986 Lower middle income
## 3037              Moroni    43.2418  -11.6986 Lower middle income
## 3038              Moroni    43.2418  -11.6986 Lower middle income
## 3039            Kinshasa    15.3222    -4.325          Low income
## 3040            Kinshasa    15.3222    -4.325          Low income
## 3041            Kinshasa    15.3222    -4.325          Low income
## 3042            Kinshasa    15.3222    -4.325          Low income
## 3043            Kinshasa    15.3222    -4.325          Low income
## 3044            Kinshasa    15.3222    -4.325          Low income
## 3045            Kinshasa    15.3222    -4.325          Low income
## 3046            Kinshasa    15.3222    -4.325          Low income
## 3047            Kinshasa    15.3222    -4.325          Low income
## 3048            Kinshasa    15.3222    -4.325          Low income
## 3049            Kinshasa    15.3222    -4.325          Low income
## 3050            Kinshasa    15.3222    -4.325          Low income
## 3051            Kinshasa    15.3222    -4.325          Low income
## 3052            Kinshasa    15.3222    -4.325          Low income
## 3053            Kinshasa    15.3222    -4.325          Low income
## 3054            Kinshasa    15.3222    -4.325          Low income
## 3055            Kinshasa    15.3222    -4.325          Low income
## 3056            Kinshasa    15.3222    -4.325          Low income
## 3057            Kinshasa    15.3222    -4.325          Low income
## 3058            Kinshasa    15.3222    -4.325          Low income
## 3059            Kinshasa    15.3222    -4.325          Low income
## 3060            Kinshasa    15.3222    -4.325          Low income
## 3061            Kinshasa    15.3222    -4.325          Low income
## 3062            Kinshasa    15.3222    -4.325          Low income
## 3063            Kinshasa    15.3222    -4.325          Low income
## 3064            Kinshasa    15.3222    -4.325          Low income
## 3065            Kinshasa    15.3222    -4.325          Low income
## 3066            Kinshasa    15.3222    -4.325          Low income
## 3067            Kinshasa    15.3222    -4.325          Low income
## 3068            Kinshasa    15.3222    -4.325          Low income
## 3069            Kinshasa    15.3222    -4.325          Low income
## 3070            Kinshasa    15.3222    -4.325          Low income
## 3071            Kinshasa    15.3222    -4.325          Low income
## 3072            Kinshasa    15.3222    -4.325          Low income
## 3073            Kinshasa    15.3222    -4.325          Low income
## 3074            Kinshasa    15.3222    -4.325          Low income
## 3075            Kinshasa    15.3222    -4.325          Low income
## 3076            Kinshasa    15.3222    -4.325          Low income
## 3077            Kinshasa    15.3222    -4.325          Low income
## 3078            Kinshasa    15.3222    -4.325          Low income
## 3079            Kinshasa    15.3222    -4.325          Low income
## 3080            Kinshasa    15.3222    -4.325          Low income
## 3081            Kinshasa    15.3222    -4.325          Low income
## 3082            Kinshasa    15.3222    -4.325          Low income
## 3083            Kinshasa    15.3222    -4.325          Low income
## 3084            Kinshasa    15.3222    -4.325          Low income
## 3085            Kinshasa    15.3222    -4.325          Low income
## 3086            Kinshasa    15.3222    -4.325          Low income
## 3087            Kinshasa    15.3222    -4.325          Low income
## 3088            Kinshasa    15.3222    -4.325          Low income
## 3089            Kinshasa    15.3222    -4.325          Low income
## 3090            Kinshasa    15.3222    -4.325          Low income
## 3091            Kinshasa    15.3222    -4.325          Low income
## 3092            Kinshasa    15.3222    -4.325          Low income
## 3093            Kinshasa    15.3222    -4.325          Low income
## 3094            Kinshasa    15.3222    -4.325          Low income
## 3095            Kinshasa    15.3222    -4.325          Low income
## 3096            Kinshasa    15.3222    -4.325          Low income
## 3097            Kinshasa    15.3222    -4.325          Low income
## 3098            Kinshasa    15.3222    -4.325          Low income
## 3099            Kinshasa    15.3222    -4.325          Low income
## 3100            Kinshasa    15.3222    -4.325          Low income
## 3101         Brazzaville    15.2662   -4.2767 Lower middle income
## 3102         Brazzaville    15.2662   -4.2767 Lower middle income
## 3103         Brazzaville    15.2662   -4.2767 Lower middle income
## 3104         Brazzaville    15.2662   -4.2767 Lower middle income
## 3105         Brazzaville    15.2662   -4.2767 Lower middle income
## 3106         Brazzaville    15.2662   -4.2767 Lower middle income
## 3107         Brazzaville    15.2662   -4.2767 Lower middle income
## 3108         Brazzaville    15.2662   -4.2767 Lower middle income
## 3109         Brazzaville    15.2662   -4.2767 Lower middle income
## 3110         Brazzaville    15.2662   -4.2767 Lower middle income
## 3111         Brazzaville    15.2662   -4.2767 Lower middle income
## 3112         Brazzaville    15.2662   -4.2767 Lower middle income
## 3113         Brazzaville    15.2662   -4.2767 Lower middle income
## 3114         Brazzaville    15.2662   -4.2767 Lower middle income
## 3115         Brazzaville    15.2662   -4.2767 Lower middle income
## 3116         Brazzaville    15.2662   -4.2767 Lower middle income
## 3117         Brazzaville    15.2662   -4.2767 Lower middle income
## 3118         Brazzaville    15.2662   -4.2767 Lower middle income
## 3119         Brazzaville    15.2662   -4.2767 Lower middle income
## 3120         Brazzaville    15.2662   -4.2767 Lower middle income
## 3121         Brazzaville    15.2662   -4.2767 Lower middle income
## 3122         Brazzaville    15.2662   -4.2767 Lower middle income
## 3123         Brazzaville    15.2662   -4.2767 Lower middle income
## 3124         Brazzaville    15.2662   -4.2767 Lower middle income
## 3125         Brazzaville    15.2662   -4.2767 Lower middle income
## 3126         Brazzaville    15.2662   -4.2767 Lower middle income
## 3127         Brazzaville    15.2662   -4.2767 Lower middle income
## 3128         Brazzaville    15.2662   -4.2767 Lower middle income
## 3129         Brazzaville    15.2662   -4.2767 Lower middle income
## 3130         Brazzaville    15.2662   -4.2767 Lower middle income
## 3131         Brazzaville    15.2662   -4.2767 Lower middle income
## 3132         Brazzaville    15.2662   -4.2767 Lower middle income
## 3133         Brazzaville    15.2662   -4.2767 Lower middle income
## 3134         Brazzaville    15.2662   -4.2767 Lower middle income
## 3135         Brazzaville    15.2662   -4.2767 Lower middle income
## 3136         Brazzaville    15.2662   -4.2767 Lower middle income
## 3137         Brazzaville    15.2662   -4.2767 Lower middle income
## 3138         Brazzaville    15.2662   -4.2767 Lower middle income
## 3139         Brazzaville    15.2662   -4.2767 Lower middle income
## 3140         Brazzaville    15.2662   -4.2767 Lower middle income
## 3141         Brazzaville    15.2662   -4.2767 Lower middle income
## 3142         Brazzaville    15.2662   -4.2767 Lower middle income
## 3143         Brazzaville    15.2662   -4.2767 Lower middle income
## 3144         Brazzaville    15.2662   -4.2767 Lower middle income
## 3145         Brazzaville    15.2662   -4.2767 Lower middle income
## 3146         Brazzaville    15.2662   -4.2767 Lower middle income
## 3147         Brazzaville    15.2662   -4.2767 Lower middle income
## 3148         Brazzaville    15.2662   -4.2767 Lower middle income
## 3149         Brazzaville    15.2662   -4.2767 Lower middle income
## 3150         Brazzaville    15.2662   -4.2767 Lower middle income
## 3151         Brazzaville    15.2662   -4.2767 Lower middle income
## 3152         Brazzaville    15.2662   -4.2767 Lower middle income
## 3153         Brazzaville    15.2662   -4.2767 Lower middle income
## 3154         Brazzaville    15.2662   -4.2767 Lower middle income
## 3155         Brazzaville    15.2662   -4.2767 Lower middle income
## 3156         Brazzaville    15.2662   -4.2767 Lower middle income
## 3157         Brazzaville    15.2662   -4.2767 Lower middle income
## 3158         Brazzaville    15.2662   -4.2767 Lower middle income
## 3159         Brazzaville    15.2662   -4.2767 Lower middle income
## 3160         Brazzaville    15.2662   -4.2767 Lower middle income
## 3161         Brazzaville    15.2662   -4.2767 Lower middle income
## 3162         Brazzaville    15.2662   -4.2767 Lower middle income
## 3163            San Jose   -84.0089   9.63701 Upper middle income
## 3164            San Jose   -84.0089   9.63701 Upper middle income
## 3165            San Jose   -84.0089   9.63701 Upper middle income
## 3166            San Jose   -84.0089   9.63701 Upper middle income
## 3167            San Jose   -84.0089   9.63701 Upper middle income
## 3168            San Jose   -84.0089   9.63701 Upper middle income
## 3169            San Jose   -84.0089   9.63701 Upper middle income
## 3170            San Jose   -84.0089   9.63701 Upper middle income
## 3171            San Jose   -84.0089   9.63701 Upper middle income
## 3172            San Jose   -84.0089   9.63701 Upper middle income
## 3173            San Jose   -84.0089   9.63701 Upper middle income
## 3174            San Jose   -84.0089   9.63701 Upper middle income
## 3175            San Jose   -84.0089   9.63701 Upper middle income
## 3176            San Jose   -84.0089   9.63701 Upper middle income
## 3177            San Jose   -84.0089   9.63701 Upper middle income
## 3178            San Jose   -84.0089   9.63701 Upper middle income
## 3179            San Jose   -84.0089   9.63701 Upper middle income
## 3180            San Jose   -84.0089   9.63701 Upper middle income
## 3181            San Jose   -84.0089   9.63701 Upper middle income
## 3182            San Jose   -84.0089   9.63701 Upper middle income
## 3183            San Jose   -84.0089   9.63701 Upper middle income
## 3184            San Jose   -84.0089   9.63701 Upper middle income
## 3185            San Jose   -84.0089   9.63701 Upper middle income
## 3186            San Jose   -84.0089   9.63701 Upper middle income
## 3187            San Jose   -84.0089   9.63701 Upper middle income
## 3188            San Jose   -84.0089   9.63701 Upper middle income
## 3189            San Jose   -84.0089   9.63701 Upper middle income
## 3190            San Jose   -84.0089   9.63701 Upper middle income
## 3191            San Jose   -84.0089   9.63701 Upper middle income
## 3192            San Jose   -84.0089   9.63701 Upper middle income
## 3193            San Jose   -84.0089   9.63701 Upper middle income
## 3194            San Jose   -84.0089   9.63701 Upper middle income
## 3195            San Jose   -84.0089   9.63701 Upper middle income
## 3196            San Jose   -84.0089   9.63701 Upper middle income
## 3197            San Jose   -84.0089   9.63701 Upper middle income
## 3198            San Jose   -84.0089   9.63701 Upper middle income
## 3199            San Jose   -84.0089   9.63701 Upper middle income
## 3200            San Jose   -84.0089   9.63701 Upper middle income
## 3201            San Jose   -84.0089   9.63701 Upper middle income
## 3202            San Jose   -84.0089   9.63701 Upper middle income
## 3203            San Jose   -84.0089   9.63701 Upper middle income
## 3204            San Jose   -84.0089   9.63701 Upper middle income
## 3205            San Jose   -84.0089   9.63701 Upper middle income
## 3206            San Jose   -84.0089   9.63701 Upper middle income
## 3207            San Jose   -84.0089   9.63701 Upper middle income
## 3208            San Jose   -84.0089   9.63701 Upper middle income
## 3209            San Jose   -84.0089   9.63701 Upper middle income
## 3210            San Jose   -84.0089   9.63701 Upper middle income
## 3211            San Jose   -84.0089   9.63701 Upper middle income
## 3212            San Jose   -84.0089   9.63701 Upper middle income
## 3213            San Jose   -84.0089   9.63701 Upper middle income
## 3214            San Jose   -84.0089   9.63701 Upper middle income
## 3215            San Jose   -84.0089   9.63701 Upper middle income
## 3216            San Jose   -84.0089   9.63701 Upper middle income
## 3217            San Jose   -84.0089   9.63701 Upper middle income
## 3218            San Jose   -84.0089   9.63701 Upper middle income
## 3219            San Jose   -84.0089   9.63701 Upper middle income
## 3220            San Jose   -84.0089   9.63701 Upper middle income
## 3221            San Jose   -84.0089   9.63701 Upper middle income
## 3222            San Jose   -84.0089   9.63701 Upper middle income
## 3223            San Jose   -84.0089   9.63701 Upper middle income
## 3224            San Jose   -84.0089   9.63701 Upper middle income
## 3225        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3226        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3227        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3228        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3229        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3230        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3231        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3232        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3233        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3234        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3235        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3236        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3237        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3238        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3239        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3240        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3241        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3242        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3243        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3244        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3245        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3246        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3247        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3248        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3249        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3250        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3251        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3252        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3253        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3254        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3255        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3256        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3257        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3258        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3259        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3260        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3261        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3262        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3263        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3264        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3265        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3266        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3267        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3268        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3269        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3270        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3271        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3272        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3273        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3274        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3275        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3276        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3277        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3278        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3279        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3280        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3281        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3282        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3283        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3284        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3285        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3286        Yamoussoukro    -4.0305     5.332 Lower middle income
## 3287              Zagreb    15.9614   45.8069         High income
## 3288              Zagreb    15.9614   45.8069         High income
## 3289              Zagreb    15.9614   45.8069         High income
## 3290              Zagreb    15.9614   45.8069         High income
## 3291              Zagreb    15.9614   45.8069         High income
## 3292              Zagreb    15.9614   45.8069         High income
## 3293              Zagreb    15.9614   45.8069         High income
## 3294              Zagreb    15.9614   45.8069         High income
## 3295              Zagreb    15.9614   45.8069         High income
## 3296              Zagreb    15.9614   45.8069         High income
## 3297              Zagreb    15.9614   45.8069         High income
## 3298              Zagreb    15.9614   45.8069         High income
## 3299              Zagreb    15.9614   45.8069         High income
## 3300              Zagreb    15.9614   45.8069         High income
## 3301              Zagreb    15.9614   45.8069         High income
## 3302              Zagreb    15.9614   45.8069         High income
## 3303              Zagreb    15.9614   45.8069         High income
## 3304              Zagreb    15.9614   45.8069         High income
## 3305              Zagreb    15.9614   45.8069         High income
## 3306              Zagreb    15.9614   45.8069         High income
## 3307              Zagreb    15.9614   45.8069         High income
## 3308              Zagreb    15.9614   45.8069         High income
## 3309              Zagreb    15.9614   45.8069         High income
## 3310              Zagreb    15.9614   45.8069         High income
## 3311              Zagreb    15.9614   45.8069         High income
## 3312              Zagreb    15.9614   45.8069         High income
## 3313              Zagreb    15.9614   45.8069         High income
## 3314              Zagreb    15.9614   45.8069         High income
## 3315              Zagreb    15.9614   45.8069         High income
## 3316              Zagreb    15.9614   45.8069         High income
## 3317              Zagreb    15.9614   45.8069         High income
## 3318              Zagreb    15.9614   45.8069         High income
## 3319              Zagreb    15.9614   45.8069         High income
## 3320              Zagreb    15.9614   45.8069         High income
## 3321              Zagreb    15.9614   45.8069         High income
## 3322              Zagreb    15.9614   45.8069         High income
## 3323              Zagreb    15.9614   45.8069         High income
## 3324              Zagreb    15.9614   45.8069         High income
## 3325              Zagreb    15.9614   45.8069         High income
## 3326              Zagreb    15.9614   45.8069         High income
## 3327              Zagreb    15.9614   45.8069         High income
## 3328              Zagreb    15.9614   45.8069         High income
## 3329              Zagreb    15.9614   45.8069         High income
## 3330              Zagreb    15.9614   45.8069         High income
## 3331              Zagreb    15.9614   45.8069         High income
## 3332              Zagreb    15.9614   45.8069         High income
## 3333              Zagreb    15.9614   45.8069         High income
## 3334              Zagreb    15.9614   45.8069         High income
## 3335              Zagreb    15.9614   45.8069         High income
## 3336              Zagreb    15.9614   45.8069         High income
## 3337              Zagreb    15.9614   45.8069         High income
## 3338              Zagreb    15.9614   45.8069         High income
## 3339              Zagreb    15.9614   45.8069         High income
## 3340              Zagreb    15.9614   45.8069         High income
## 3341              Zagreb    15.9614   45.8069         High income
## 3342              Zagreb    15.9614   45.8069         High income
## 3343              Zagreb    15.9614   45.8069         High income
## 3344              Zagreb    15.9614   45.8069         High income
## 3345              Zagreb    15.9614   45.8069         High income
## 3346              Zagreb    15.9614   45.8069         High income
## 3347              Zagreb    15.9614   45.8069         High income
## 3348              Zagreb    15.9614   45.8069         High income
## 3349              Havana   -82.3667   23.1333 Upper middle income
## 3350              Havana   -82.3667   23.1333 Upper middle income
## 3351              Havana   -82.3667   23.1333 Upper middle income
## 3352              Havana   -82.3667   23.1333 Upper middle income
## 3353              Havana   -82.3667   23.1333 Upper middle income
## 3354              Havana   -82.3667   23.1333 Upper middle income
## 3355              Havana   -82.3667   23.1333 Upper middle income
## 3356              Havana   -82.3667   23.1333 Upper middle income
## 3357              Havana   -82.3667   23.1333 Upper middle income
## 3358              Havana   -82.3667   23.1333 Upper middle income
## 3359              Havana   -82.3667   23.1333 Upper middle income
## 3360              Havana   -82.3667   23.1333 Upper middle income
## 3361              Havana   -82.3667   23.1333 Upper middle income
## 3362              Havana   -82.3667   23.1333 Upper middle income
## 3363              Havana   -82.3667   23.1333 Upper middle income
## 3364              Havana   -82.3667   23.1333 Upper middle income
## 3365              Havana   -82.3667   23.1333 Upper middle income
## 3366              Havana   -82.3667   23.1333 Upper middle income
## 3367              Havana   -82.3667   23.1333 Upper middle income
## 3368              Havana   -82.3667   23.1333 Upper middle income
## 3369              Havana   -82.3667   23.1333 Upper middle income
## 3370              Havana   -82.3667   23.1333 Upper middle income
## 3371              Havana   -82.3667   23.1333 Upper middle income
## 3372              Havana   -82.3667   23.1333 Upper middle income
## 3373              Havana   -82.3667   23.1333 Upper middle income
## 3374              Havana   -82.3667   23.1333 Upper middle income
## 3375              Havana   -82.3667   23.1333 Upper middle income
## 3376              Havana   -82.3667   23.1333 Upper middle income
## 3377              Havana   -82.3667   23.1333 Upper middle income
## 3378              Havana   -82.3667   23.1333 Upper middle income
## 3379              Havana   -82.3667   23.1333 Upper middle income
## 3380              Havana   -82.3667   23.1333 Upper middle income
## 3381              Havana   -82.3667   23.1333 Upper middle income
## 3382              Havana   -82.3667   23.1333 Upper middle income
## 3383              Havana   -82.3667   23.1333 Upper middle income
## 3384              Havana   -82.3667   23.1333 Upper middle income
## 3385              Havana   -82.3667   23.1333 Upper middle income
## 3386              Havana   -82.3667   23.1333 Upper middle income
## 3387              Havana   -82.3667   23.1333 Upper middle income
## 3388              Havana   -82.3667   23.1333 Upper middle income
## 3389              Havana   -82.3667   23.1333 Upper middle income
## 3390              Havana   -82.3667   23.1333 Upper middle income
## 3391              Havana   -82.3667   23.1333 Upper middle income
## 3392              Havana   -82.3667   23.1333 Upper middle income
## 3393              Havana   -82.3667   23.1333 Upper middle income
## 3394              Havana   -82.3667   23.1333 Upper middle income
## 3395              Havana   -82.3667   23.1333 Upper middle income
## 3396              Havana   -82.3667   23.1333 Upper middle income
## 3397              Havana   -82.3667   23.1333 Upper middle income
## 3398              Havana   -82.3667   23.1333 Upper middle income
## 3399              Havana   -82.3667   23.1333 Upper middle income
## 3400              Havana   -82.3667   23.1333 Upper middle income
## 3401              Havana   -82.3667   23.1333 Upper middle income
## 3402              Havana   -82.3667   23.1333 Upper middle income
## 3403              Havana   -82.3667   23.1333 Upper middle income
## 3404              Havana   -82.3667   23.1333 Upper middle income
## 3405              Havana   -82.3667   23.1333 Upper middle income
## 3406              Havana   -82.3667   23.1333 Upper middle income
## 3407              Havana   -82.3667   23.1333 Upper middle income
## 3408              Havana   -82.3667   23.1333 Upper middle income
## 3409              Havana   -82.3667   23.1333 Upper middle income
## 3410              Havana   -82.3667   23.1333 Upper middle income
## 3411          Willemstad                              High income
## 3412          Willemstad                              High income
## 3413          Willemstad                              High income
## 3414          Willemstad                              High income
## 3415          Willemstad                              High income
## 3416          Willemstad                              High income
## 3417          Willemstad                              High income
## 3418          Willemstad                              High income
## 3419          Willemstad                              High income
## 3420          Willemstad                              High income
## 3421          Willemstad                              High income
## 3422          Willemstad                              High income
## 3423          Willemstad                              High income
## 3424          Willemstad                              High income
## 3425          Willemstad                              High income
## 3426          Willemstad                              High income
## 3427          Willemstad                              High income
## 3428          Willemstad                              High income
## 3429          Willemstad                              High income
## 3430          Willemstad                              High income
## 3431          Willemstad                              High income
## 3432          Willemstad                              High income
## 3433          Willemstad                              High income
## 3434          Willemstad                              High income
## 3435          Willemstad                              High income
## 3436          Willemstad                              High income
## 3437          Willemstad                              High income
## 3438          Willemstad                              High income
## 3439          Willemstad                              High income
## 3440          Willemstad                              High income
## 3441          Willemstad                              High income
## 3442          Willemstad                              High income
## 3443          Willemstad                              High income
## 3444          Willemstad                              High income
## 3445          Willemstad                              High income
## 3446          Willemstad                              High income
## 3447          Willemstad                              High income
## 3448          Willemstad                              High income
## 3449          Willemstad                              High income
## 3450          Willemstad                              High income
## 3451          Willemstad                              High income
## 3452          Willemstad                              High income
## 3453          Willemstad                              High income
## 3454          Willemstad                              High income
## 3455          Willemstad                              High income
## 3456          Willemstad                              High income
## 3457          Willemstad                              High income
## 3458          Willemstad                              High income
## 3459          Willemstad                              High income
## 3460          Willemstad                              High income
## 3461          Willemstad                              High income
## 3462          Willemstad                              High income
## 3463          Willemstad                              High income
## 3464          Willemstad                              High income
## 3465          Willemstad                              High income
## 3466          Willemstad                              High income
## 3467          Willemstad                              High income
## 3468          Willemstad                              High income
## 3469          Willemstad                              High income
## 3470          Willemstad                              High income
## 3471          Willemstad                              High income
## 3472          Willemstad                              High income
## 3473             Nicosia    33.3736   35.1676         High income
## 3474             Nicosia    33.3736   35.1676         High income
## 3475             Nicosia    33.3736   35.1676         High income
## 3476             Nicosia    33.3736   35.1676         High income
## 3477             Nicosia    33.3736   35.1676         High income
## 3478             Nicosia    33.3736   35.1676         High income
## 3479             Nicosia    33.3736   35.1676         High income
## 3480             Nicosia    33.3736   35.1676         High income
## 3481             Nicosia    33.3736   35.1676         High income
## 3482             Nicosia    33.3736   35.1676         High income
## 3483             Nicosia    33.3736   35.1676         High income
## 3484             Nicosia    33.3736   35.1676         High income
## 3485             Nicosia    33.3736   35.1676         High income
## 3486             Nicosia    33.3736   35.1676         High income
## 3487             Nicosia    33.3736   35.1676         High income
## 3488             Nicosia    33.3736   35.1676         High income
## 3489             Nicosia    33.3736   35.1676         High income
## 3490             Nicosia    33.3736   35.1676         High income
## 3491             Nicosia    33.3736   35.1676         High income
## 3492             Nicosia    33.3736   35.1676         High income
## 3493             Nicosia    33.3736   35.1676         High income
## 3494             Nicosia    33.3736   35.1676         High income
## 3495             Nicosia    33.3736   35.1676         High income
## 3496             Nicosia    33.3736   35.1676         High income
## 3497             Nicosia    33.3736   35.1676         High income
## 3498             Nicosia    33.3736   35.1676         High income
## 3499             Nicosia    33.3736   35.1676         High income
## 3500             Nicosia    33.3736   35.1676         High income
## 3501             Nicosia    33.3736   35.1676         High income
## 3502             Nicosia    33.3736   35.1676         High income
## 3503             Nicosia    33.3736   35.1676         High income
## 3504             Nicosia    33.3736   35.1676         High income
## 3505             Nicosia    33.3736   35.1676         High income
## 3506             Nicosia    33.3736   35.1676         High income
## 3507             Nicosia    33.3736   35.1676         High income
## 3508             Nicosia    33.3736   35.1676         High income
## 3509             Nicosia    33.3736   35.1676         High income
## 3510             Nicosia    33.3736   35.1676         High income
## 3511             Nicosia    33.3736   35.1676         High income
## 3512             Nicosia    33.3736   35.1676         High income
## 3513             Nicosia    33.3736   35.1676         High income
## 3514             Nicosia    33.3736   35.1676         High income
## 3515             Nicosia    33.3736   35.1676         High income
## 3516             Nicosia    33.3736   35.1676         High income
## 3517             Nicosia    33.3736   35.1676         High income
## 3518             Nicosia    33.3736   35.1676         High income
## 3519             Nicosia    33.3736   35.1676         High income
## 3520             Nicosia    33.3736   35.1676         High income
## 3521             Nicosia    33.3736   35.1676         High income
## 3522             Nicosia    33.3736   35.1676         High income
## 3523             Nicosia    33.3736   35.1676         High income
## 3524             Nicosia    33.3736   35.1676         High income
## 3525             Nicosia    33.3736   35.1676         High income
## 3526             Nicosia    33.3736   35.1676         High income
## 3527             Nicosia    33.3736   35.1676         High income
## 3528             Nicosia    33.3736   35.1676         High income
## 3529             Nicosia    33.3736   35.1676         High income
## 3530             Nicosia    33.3736   35.1676         High income
## 3531             Nicosia    33.3736   35.1676         High income
## 3532             Nicosia    33.3736   35.1676         High income
## 3533             Nicosia    33.3736   35.1676         High income
## 3534             Nicosia    33.3736   35.1676         High income
## 3535                <NA>       <NA>      <NA>                <NA>
## 3536                <NA>       <NA>      <NA>                <NA>
## 3537                <NA>       <NA>      <NA>                <NA>
## 3538                <NA>       <NA>      <NA>                <NA>
## 3539                <NA>       <NA>      <NA>                <NA>
## 3540                <NA>       <NA>      <NA>                <NA>
## 3541                <NA>       <NA>      <NA>                <NA>
## 3542                <NA>       <NA>      <NA>                <NA>
## 3543                <NA>       <NA>      <NA>                <NA>
## 3544                <NA>       <NA>      <NA>                <NA>
## 3545                <NA>       <NA>      <NA>                <NA>
## 3546                <NA>       <NA>      <NA>                <NA>
## 3547                <NA>       <NA>      <NA>                <NA>
## 3548                <NA>       <NA>      <NA>                <NA>
## 3549                <NA>       <NA>      <NA>                <NA>
## 3550                <NA>       <NA>      <NA>                <NA>
## 3551                <NA>       <NA>      <NA>                <NA>
## 3552                <NA>       <NA>      <NA>                <NA>
## 3553                <NA>       <NA>      <NA>                <NA>
## 3554                <NA>       <NA>      <NA>                <NA>
## 3555                <NA>       <NA>      <NA>                <NA>
## 3556                <NA>       <NA>      <NA>                <NA>
## 3557                <NA>       <NA>      <NA>                <NA>
## 3558                <NA>       <NA>      <NA>                <NA>
## 3559                <NA>       <NA>      <NA>                <NA>
## 3560                <NA>       <NA>      <NA>                <NA>
## 3561                <NA>       <NA>      <NA>                <NA>
## 3562                <NA>       <NA>      <NA>                <NA>
## 3563                <NA>       <NA>      <NA>                <NA>
## 3564                <NA>       <NA>      <NA>                <NA>
## 3565                <NA>       <NA>      <NA>                <NA>
## 3566                <NA>       <NA>      <NA>                <NA>
## 3567                <NA>       <NA>      <NA>                <NA>
## 3568                <NA>       <NA>      <NA>                <NA>
## 3569                <NA>       <NA>      <NA>                <NA>
## 3570                <NA>       <NA>      <NA>                <NA>
## 3571                <NA>       <NA>      <NA>                <NA>
## 3572                <NA>       <NA>      <NA>                <NA>
## 3573                <NA>       <NA>      <NA>                <NA>
## 3574                <NA>       <NA>      <NA>                <NA>
## 3575                <NA>       <NA>      <NA>                <NA>
## 3576                <NA>       <NA>      <NA>                <NA>
## 3577                <NA>       <NA>      <NA>                <NA>
## 3578                <NA>       <NA>      <NA>                <NA>
## 3579                <NA>       <NA>      <NA>                <NA>
## 3580                <NA>       <NA>      <NA>                <NA>
## 3581                <NA>       <NA>      <NA>                <NA>
## 3582                <NA>       <NA>      <NA>                <NA>
## 3583                <NA>       <NA>      <NA>                <NA>
## 3584                <NA>       <NA>      <NA>                <NA>
## 3585                <NA>       <NA>      <NA>                <NA>
## 3586                <NA>       <NA>      <NA>                <NA>
## 3587                <NA>       <NA>      <NA>                <NA>
## 3588                <NA>       <NA>      <NA>                <NA>
## 3589                <NA>       <NA>      <NA>                <NA>
## 3590                <NA>       <NA>      <NA>                <NA>
## 3591                <NA>       <NA>      <NA>                <NA>
## 3592                <NA>       <NA>      <NA>                <NA>
## 3593                <NA>       <NA>      <NA>                <NA>
## 3594                <NA>       <NA>      <NA>                <NA>
## 3595                <NA>       <NA>      <NA>                <NA>
## 3596                <NA>       <NA>      <NA>                <NA>
## 3597          Copenhagen    12.5681   55.6763         High income
## 3598          Copenhagen    12.5681   55.6763         High income
## 3599          Copenhagen    12.5681   55.6763         High income
## 3600          Copenhagen    12.5681   55.6763         High income
## 3601          Copenhagen    12.5681   55.6763         High income
## 3602          Copenhagen    12.5681   55.6763         High income
## 3603          Copenhagen    12.5681   55.6763         High income
## 3604          Copenhagen    12.5681   55.6763         High income
## 3605          Copenhagen    12.5681   55.6763         High income
## 3606          Copenhagen    12.5681   55.6763         High income
## 3607          Copenhagen    12.5681   55.6763         High income
## 3608          Copenhagen    12.5681   55.6763         High income
## 3609          Copenhagen    12.5681   55.6763         High income
## 3610          Copenhagen    12.5681   55.6763         High income
## 3611          Copenhagen    12.5681   55.6763         High income
## 3612          Copenhagen    12.5681   55.6763         High income
## 3613          Copenhagen    12.5681   55.6763         High income
## 3614          Copenhagen    12.5681   55.6763         High income
## 3615          Copenhagen    12.5681   55.6763         High income
## 3616          Copenhagen    12.5681   55.6763         High income
## 3617          Copenhagen    12.5681   55.6763         High income
## 3618          Copenhagen    12.5681   55.6763         High income
## 3619          Copenhagen    12.5681   55.6763         High income
## 3620          Copenhagen    12.5681   55.6763         High income
## 3621          Copenhagen    12.5681   55.6763         High income
## 3622          Copenhagen    12.5681   55.6763         High income
## 3623          Copenhagen    12.5681   55.6763         High income
## 3624          Copenhagen    12.5681   55.6763         High income
## 3625          Copenhagen    12.5681   55.6763         High income
## 3626          Copenhagen    12.5681   55.6763         High income
## 3627          Copenhagen    12.5681   55.6763         High income
## 3628          Copenhagen    12.5681   55.6763         High income
## 3629          Copenhagen    12.5681   55.6763         High income
## 3630          Copenhagen    12.5681   55.6763         High income
## 3631          Copenhagen    12.5681   55.6763         High income
## 3632          Copenhagen    12.5681   55.6763         High income
## 3633          Copenhagen    12.5681   55.6763         High income
## 3634          Copenhagen    12.5681   55.6763         High income
## 3635          Copenhagen    12.5681   55.6763         High income
## 3636          Copenhagen    12.5681   55.6763         High income
## 3637          Copenhagen    12.5681   55.6763         High income
## 3638          Copenhagen    12.5681   55.6763         High income
## 3639          Copenhagen    12.5681   55.6763         High income
## 3640          Copenhagen    12.5681   55.6763         High income
## 3641          Copenhagen    12.5681   55.6763         High income
## 3642          Copenhagen    12.5681   55.6763         High income
## 3643          Copenhagen    12.5681   55.6763         High income
## 3644          Copenhagen    12.5681   55.6763         High income
## 3645          Copenhagen    12.5681   55.6763         High income
## 3646          Copenhagen    12.5681   55.6763         High income
## 3647          Copenhagen    12.5681   55.6763         High income
## 3648          Copenhagen    12.5681   55.6763         High income
## 3649          Copenhagen    12.5681   55.6763         High income
## 3650          Copenhagen    12.5681   55.6763         High income
## 3651          Copenhagen    12.5681   55.6763         High income
## 3652          Copenhagen    12.5681   55.6763         High income
## 3653          Copenhagen    12.5681   55.6763         High income
## 3654          Copenhagen    12.5681   55.6763         High income
## 3655          Copenhagen    12.5681   55.6763         High income
## 3656          Copenhagen    12.5681   55.6763         High income
## 3657          Copenhagen    12.5681   55.6763         High income
## 3658          Copenhagen    12.5681   55.6763         High income
## 3659            Djibouti    43.1425   11.5806 Lower middle income
## 3660            Djibouti    43.1425   11.5806 Lower middle income
## 3661            Djibouti    43.1425   11.5806 Lower middle income
## 3662            Djibouti    43.1425   11.5806 Lower middle income
## 3663            Djibouti    43.1425   11.5806 Lower middle income
## 3664            Djibouti    43.1425   11.5806 Lower middle income
## 3665            Djibouti    43.1425   11.5806 Lower middle income
## 3666            Djibouti    43.1425   11.5806 Lower middle income
## 3667            Djibouti    43.1425   11.5806 Lower middle income
## 3668            Djibouti    43.1425   11.5806 Lower middle income
## 3669            Djibouti    43.1425   11.5806 Lower middle income
## 3670            Djibouti    43.1425   11.5806 Lower middle income
## 3671            Djibouti    43.1425   11.5806 Lower middle income
## 3672            Djibouti    43.1425   11.5806 Lower middle income
## 3673            Djibouti    43.1425   11.5806 Lower middle income
## 3674            Djibouti    43.1425   11.5806 Lower middle income
## 3675            Djibouti    43.1425   11.5806 Lower middle income
## 3676            Djibouti    43.1425   11.5806 Lower middle income
## 3677            Djibouti    43.1425   11.5806 Lower middle income
## 3678            Djibouti    43.1425   11.5806 Lower middle income
## 3679            Djibouti    43.1425   11.5806 Lower middle income
## 3680            Djibouti    43.1425   11.5806 Lower middle income
## 3681            Djibouti    43.1425   11.5806 Lower middle income
## 3682            Djibouti    43.1425   11.5806 Lower middle income
## 3683            Djibouti    43.1425   11.5806 Lower middle income
## 3684            Djibouti    43.1425   11.5806 Lower middle income
## 3685            Djibouti    43.1425   11.5806 Lower middle income
## 3686            Djibouti    43.1425   11.5806 Lower middle income
## 3687            Djibouti    43.1425   11.5806 Lower middle income
## 3688            Djibouti    43.1425   11.5806 Lower middle income
## 3689            Djibouti    43.1425   11.5806 Lower middle income
## 3690            Djibouti    43.1425   11.5806 Lower middle income
## 3691            Djibouti    43.1425   11.5806 Lower middle income
## 3692            Djibouti    43.1425   11.5806 Lower middle income
## 3693            Djibouti    43.1425   11.5806 Lower middle income
## 3694            Djibouti    43.1425   11.5806 Lower middle income
## 3695            Djibouti    43.1425   11.5806 Lower middle income
## 3696            Djibouti    43.1425   11.5806 Lower middle income
## 3697            Djibouti    43.1425   11.5806 Lower middle income
## 3698            Djibouti    43.1425   11.5806 Lower middle income
## 3699            Djibouti    43.1425   11.5806 Lower middle income
## 3700            Djibouti    43.1425   11.5806 Lower middle income
## 3701            Djibouti    43.1425   11.5806 Lower middle income
## 3702            Djibouti    43.1425   11.5806 Lower middle income
## 3703            Djibouti    43.1425   11.5806 Lower middle income
## 3704            Djibouti    43.1425   11.5806 Lower middle income
## 3705            Djibouti    43.1425   11.5806 Lower middle income
## 3706            Djibouti    43.1425   11.5806 Lower middle income
## 3707            Djibouti    43.1425   11.5806 Lower middle income
## 3708            Djibouti    43.1425   11.5806 Lower middle income
## 3709            Djibouti    43.1425   11.5806 Lower middle income
## 3710            Djibouti    43.1425   11.5806 Lower middle income
## 3711            Djibouti    43.1425   11.5806 Lower middle income
## 3712            Djibouti    43.1425   11.5806 Lower middle income
## 3713            Djibouti    43.1425   11.5806 Lower middle income
## 3714            Djibouti    43.1425   11.5806 Lower middle income
## 3715            Djibouti    43.1425   11.5806 Lower middle income
## 3716            Djibouti    43.1425   11.5806 Lower middle income
## 3717            Djibouti    43.1425   11.5806 Lower middle income
## 3718            Djibouti    43.1425   11.5806 Lower middle income
## 3719            Djibouti    43.1425   11.5806 Lower middle income
## 3720            Djibouti    43.1425   11.5806 Lower middle income
## 3721              Roseau     -61.39   15.2976 Upper middle income
## 3722              Roseau     -61.39   15.2976 Upper middle income
## 3723              Roseau     -61.39   15.2976 Upper middle income
## 3724              Roseau     -61.39   15.2976 Upper middle income
## 3725              Roseau     -61.39   15.2976 Upper middle income
## 3726              Roseau     -61.39   15.2976 Upper middle income
## 3727              Roseau     -61.39   15.2976 Upper middle income
## 3728              Roseau     -61.39   15.2976 Upper middle income
## 3729              Roseau     -61.39   15.2976 Upper middle income
## 3730              Roseau     -61.39   15.2976 Upper middle income
## 3731              Roseau     -61.39   15.2976 Upper middle income
## 3732              Roseau     -61.39   15.2976 Upper middle income
## 3733              Roseau     -61.39   15.2976 Upper middle income
## 3734              Roseau     -61.39   15.2976 Upper middle income
## 3735              Roseau     -61.39   15.2976 Upper middle income
## 3736              Roseau     -61.39   15.2976 Upper middle income
## 3737              Roseau     -61.39   15.2976 Upper middle income
## 3738              Roseau     -61.39   15.2976 Upper middle income
## 3739              Roseau     -61.39   15.2976 Upper middle income
## 3740              Roseau     -61.39   15.2976 Upper middle income
## 3741              Roseau     -61.39   15.2976 Upper middle income
## 3742              Roseau     -61.39   15.2976 Upper middle income
## 3743              Roseau     -61.39   15.2976 Upper middle income
## 3744              Roseau     -61.39   15.2976 Upper middle income
## 3745              Roseau     -61.39   15.2976 Upper middle income
## 3746              Roseau     -61.39   15.2976 Upper middle income
## 3747              Roseau     -61.39   15.2976 Upper middle income
## 3748              Roseau     -61.39   15.2976 Upper middle income
## 3749              Roseau     -61.39   15.2976 Upper middle income
## 3750              Roseau     -61.39   15.2976 Upper middle income
## 3751              Roseau     -61.39   15.2976 Upper middle income
## 3752              Roseau     -61.39   15.2976 Upper middle income
## 3753              Roseau     -61.39   15.2976 Upper middle income
## 3754              Roseau     -61.39   15.2976 Upper middle income
## 3755              Roseau     -61.39   15.2976 Upper middle income
## 3756              Roseau     -61.39   15.2976 Upper middle income
## 3757              Roseau     -61.39   15.2976 Upper middle income
## 3758              Roseau     -61.39   15.2976 Upper middle income
## 3759              Roseau     -61.39   15.2976 Upper middle income
## 3760              Roseau     -61.39   15.2976 Upper middle income
## 3761              Roseau     -61.39   15.2976 Upper middle income
## 3762              Roseau     -61.39   15.2976 Upper middle income
## 3763              Roseau     -61.39   15.2976 Upper middle income
## 3764              Roseau     -61.39   15.2976 Upper middle income
## 3765              Roseau     -61.39   15.2976 Upper middle income
## 3766              Roseau     -61.39   15.2976 Upper middle income
## 3767              Roseau     -61.39   15.2976 Upper middle income
## 3768              Roseau     -61.39   15.2976 Upper middle income
## 3769              Roseau     -61.39   15.2976 Upper middle income
## 3770              Roseau     -61.39   15.2976 Upper middle income
## 3771              Roseau     -61.39   15.2976 Upper middle income
## 3772              Roseau     -61.39   15.2976 Upper middle income
## 3773              Roseau     -61.39   15.2976 Upper middle income
## 3774              Roseau     -61.39   15.2976 Upper middle income
## 3775              Roseau     -61.39   15.2976 Upper middle income
## 3776              Roseau     -61.39   15.2976 Upper middle income
## 3777              Roseau     -61.39   15.2976 Upper middle income
## 3778              Roseau     -61.39   15.2976 Upper middle income
## 3779              Roseau     -61.39   15.2976 Upper middle income
## 3780              Roseau     -61.39   15.2976 Upper middle income
## 3781              Roseau     -61.39   15.2976 Upper middle income
## 3782              Roseau     -61.39   15.2976 Upper middle income
## 3783       Santo Domingo   -69.8908    18.479 Upper middle income
## 3784       Santo Domingo   -69.8908    18.479 Upper middle income
## 3785       Santo Domingo   -69.8908    18.479 Upper middle income
## 3786       Santo Domingo   -69.8908    18.479 Upper middle income
## 3787       Santo Domingo   -69.8908    18.479 Upper middle income
## 3788       Santo Domingo   -69.8908    18.479 Upper middle income
## 3789       Santo Domingo   -69.8908    18.479 Upper middle income
## 3790       Santo Domingo   -69.8908    18.479 Upper middle income
## 3791       Santo Domingo   -69.8908    18.479 Upper middle income
## 3792       Santo Domingo   -69.8908    18.479 Upper middle income
## 3793       Santo Domingo   -69.8908    18.479 Upper middle income
## 3794       Santo Domingo   -69.8908    18.479 Upper middle income
## 3795       Santo Domingo   -69.8908    18.479 Upper middle income
## 3796       Santo Domingo   -69.8908    18.479 Upper middle income
## 3797       Santo Domingo   -69.8908    18.479 Upper middle income
## 3798       Santo Domingo   -69.8908    18.479 Upper middle income
## 3799       Santo Domingo   -69.8908    18.479 Upper middle income
## 3800       Santo Domingo   -69.8908    18.479 Upper middle income
## 3801       Santo Domingo   -69.8908    18.479 Upper middle income
## 3802       Santo Domingo   -69.8908    18.479 Upper middle income
## 3803       Santo Domingo   -69.8908    18.479 Upper middle income
## 3804       Santo Domingo   -69.8908    18.479 Upper middle income
## 3805       Santo Domingo   -69.8908    18.479 Upper middle income
## 3806       Santo Domingo   -69.8908    18.479 Upper middle income
## 3807       Santo Domingo   -69.8908    18.479 Upper middle income
## 3808       Santo Domingo   -69.8908    18.479 Upper middle income
## 3809       Santo Domingo   -69.8908    18.479 Upper middle income
## 3810       Santo Domingo   -69.8908    18.479 Upper middle income
## 3811       Santo Domingo   -69.8908    18.479 Upper middle income
## 3812       Santo Domingo   -69.8908    18.479 Upper middle income
## 3813       Santo Domingo   -69.8908    18.479 Upper middle income
## 3814       Santo Domingo   -69.8908    18.479 Upper middle income
## 3815       Santo Domingo   -69.8908    18.479 Upper middle income
## 3816       Santo Domingo   -69.8908    18.479 Upper middle income
## 3817       Santo Domingo   -69.8908    18.479 Upper middle income
## 3818       Santo Domingo   -69.8908    18.479 Upper middle income
## 3819       Santo Domingo   -69.8908    18.479 Upper middle income
## 3820       Santo Domingo   -69.8908    18.479 Upper middle income
## 3821       Santo Domingo   -69.8908    18.479 Upper middle income
## 3822       Santo Domingo   -69.8908    18.479 Upper middle income
## 3823       Santo Domingo   -69.8908    18.479 Upper middle income
## 3824       Santo Domingo   -69.8908    18.479 Upper middle income
## 3825       Santo Domingo   -69.8908    18.479 Upper middle income
## 3826       Santo Domingo   -69.8908    18.479 Upper middle income
## 3827       Santo Domingo   -69.8908    18.479 Upper middle income
## 3828       Santo Domingo   -69.8908    18.479 Upper middle income
## 3829       Santo Domingo   -69.8908    18.479 Upper middle income
## 3830       Santo Domingo   -69.8908    18.479 Upper middle income
## 3831       Santo Domingo   -69.8908    18.479 Upper middle income
## 3832       Santo Domingo   -69.8908    18.479 Upper middle income
## 3833       Santo Domingo   -69.8908    18.479 Upper middle income
## 3834       Santo Domingo   -69.8908    18.479 Upper middle income
## 3835       Santo Domingo   -69.8908    18.479 Upper middle income
## 3836       Santo Domingo   -69.8908    18.479 Upper middle income
## 3837       Santo Domingo   -69.8908    18.479 Upper middle income
## 3838       Santo Domingo   -69.8908    18.479 Upper middle income
## 3839       Santo Domingo   -69.8908    18.479 Upper middle income
## 3840       Santo Domingo   -69.8908    18.479 Upper middle income
## 3841       Santo Domingo   -69.8908    18.479 Upper middle income
## 3842       Santo Domingo   -69.8908    18.479 Upper middle income
## 3843       Santo Domingo   -69.8908    18.479 Upper middle income
## 3844       Santo Domingo   -69.8908    18.479 Upper middle income
## 3845                                                   Aggregates
## 3846                                                   Aggregates
## 3847                                                   Aggregates
## 3848                                                   Aggregates
## 3849                                                   Aggregates
## 3850                                                   Aggregates
## 3851                                                   Aggregates
## 3852                                                   Aggregates
## 3853                                                   Aggregates
## 3854                                                   Aggregates
## 3855                                                   Aggregates
## 3856                                                   Aggregates
## 3857                                                   Aggregates
## 3858                                                   Aggregates
## 3859                                                   Aggregates
## 3860                                                   Aggregates
## 3861                                                   Aggregates
## 3862                                                   Aggregates
## 3863                                                   Aggregates
## 3864                                                   Aggregates
## 3865                                                   Aggregates
## 3866                                                   Aggregates
## 3867                                                   Aggregates
## 3868                                                   Aggregates
## 3869                                                   Aggregates
## 3870                                                   Aggregates
## 3871                                                   Aggregates
## 3872                                                   Aggregates
## 3873                                                   Aggregates
## 3874                                                   Aggregates
## 3875                                                   Aggregates
## 3876                                                   Aggregates
## 3877                                                   Aggregates
## 3878                                                   Aggregates
## 3879                                                   Aggregates
## 3880                                                   Aggregates
## 3881                                                   Aggregates
## 3882                                                   Aggregates
## 3883                                                   Aggregates
## 3884                                                   Aggregates
## 3885                                                   Aggregates
## 3886                                                   Aggregates
## 3887                                                   Aggregates
## 3888                                                   Aggregates
## 3889                                                   Aggregates
## 3890                                                   Aggregates
## 3891                                                   Aggregates
## 3892                                                   Aggregates
## 3893                                                   Aggregates
## 3894                                                   Aggregates
## 3895                                                   Aggregates
## 3896                                                   Aggregates
## 3897                                                   Aggregates
## 3898                                                   Aggregates
## 3899                                                   Aggregates
## 3900                                                   Aggregates
## 3901                                                   Aggregates
## 3902                                                   Aggregates
## 3903                                                   Aggregates
## 3904                                                   Aggregates
## 3905                                                   Aggregates
## 3906                                                   Aggregates
## 3907                                                   Aggregates
## 3908                                                   Aggregates
## 3909                                                   Aggregates
## 3910                                                   Aggregates
## 3911                                                   Aggregates
## 3912                                                   Aggregates
## 3913                                                   Aggregates
## 3914                                                   Aggregates
## 3915                                                   Aggregates
## 3916                                                   Aggregates
## 3917                                                   Aggregates
## 3918                                                   Aggregates
## 3919                                                   Aggregates
## 3920                                                   Aggregates
## 3921                                                   Aggregates
## 3922                                                   Aggregates
## 3923                                                   Aggregates
## 3924                                                   Aggregates
## 3925                                                   Aggregates
## 3926                                                   Aggregates
## 3927                                                   Aggregates
## 3928                                                   Aggregates
## 3929                                                   Aggregates
## 3930                                                   Aggregates
## 3931                                                   Aggregates
## 3932                                                   Aggregates
## 3933                                                   Aggregates
## 3934                                                   Aggregates
## 3935                                                   Aggregates
## 3936                                                   Aggregates
## 3937                                                   Aggregates
## 3938                                                   Aggregates
## 3939                                                   Aggregates
## 3940                                                   Aggregates
## 3941                                                   Aggregates
## 3942                                                   Aggregates
## 3943                                                   Aggregates
## 3944                                                   Aggregates
## 3945                                                   Aggregates
## 3946                                                   Aggregates
## 3947                                                   Aggregates
## 3948                                                   Aggregates
## 3949                                                   Aggregates
## 3950                                                   Aggregates
## 3951                                                   Aggregates
## 3952                                                   Aggregates
## 3953                                                   Aggregates
## 3954                                                   Aggregates
## 3955                                                   Aggregates
## 3956                                                   Aggregates
## 3957                                                   Aggregates
## 3958                                                   Aggregates
## 3959                                                   Aggregates
## 3960                                                   Aggregates
## 3961                                                   Aggregates
## 3962                                                   Aggregates
## 3963                                                   Aggregates
## 3964                                                   Aggregates
## 3965                                                   Aggregates
## 3966                                                   Aggregates
## 3967                                                   Aggregates
## 3968                                                   Aggregates
## 3969                                                   Aggregates
## 3970                                                   Aggregates
## 3971                                                   Aggregates
## 3972                                                   Aggregates
## 3973                                                   Aggregates
## 3974                                                   Aggregates
## 3975                                                   Aggregates
## 3976                                                   Aggregates
## 3977                                                   Aggregates
## 3978                                                   Aggregates
## 3979                                                   Aggregates
## 3980                                                   Aggregates
## 3981                                                   Aggregates
## 3982                                                   Aggregates
## 3983                                                   Aggregates
## 3984                                                   Aggregates
## 3985                                                   Aggregates
## 3986                                                   Aggregates
## 3987                                                   Aggregates
## 3988                                                   Aggregates
## 3989                                                   Aggregates
## 3990                                                   Aggregates
## 3991                                                   Aggregates
## 3992                                                   Aggregates
## 3993                                                   Aggregates
## 3994                                                   Aggregates
## 3995                                                   Aggregates
## 3996                                                   Aggregates
## 3997                                                   Aggregates
## 3998                                                   Aggregates
## 3999                                                   Aggregates
## 4000                                                   Aggregates
## 4001                                                   Aggregates
## 4002                                                   Aggregates
## 4003                                                   Aggregates
## 4004                                                   Aggregates
## 4005                                                   Aggregates
## 4006                                                   Aggregates
## 4007                                                   Aggregates
## 4008                                                   Aggregates
## 4009                                                   Aggregates
## 4010                                                   Aggregates
## 4011                                                   Aggregates
## 4012                                                   Aggregates
## 4013                                                   Aggregates
## 4014                                                   Aggregates
## 4015                                                   Aggregates
## 4016                                                   Aggregates
## 4017                                                   Aggregates
## 4018                                                   Aggregates
## 4019                                                   Aggregates
## 4020                                                   Aggregates
## 4021                                                   Aggregates
## 4022                                                   Aggregates
## 4023                                                   Aggregates
## 4024                                                   Aggregates
## 4025                                                   Aggregates
## 4026                                                   Aggregates
## 4027                                                   Aggregates
## 4028                                                   Aggregates
## 4029                                                   Aggregates
## 4030                                                   Aggregates
## 4031                                                   Aggregates
## 4032                                                   Aggregates
## 4033                                                   Aggregates
## 4034                                                   Aggregates
## 4035                                                   Aggregates
## 4036                                                   Aggregates
## 4037                                                   Aggregates
## 4038                                                   Aggregates
## 4039                                                   Aggregates
## 4040                                                   Aggregates
## 4041                                                   Aggregates
## 4042                                                   Aggregates
## 4043                                                   Aggregates
## 4044                                                   Aggregates
## 4045                                                   Aggregates
## 4046                                                   Aggregates
## 4047                                                   Aggregates
## 4048                                                   Aggregates
## 4049                                                   Aggregates
## 4050                                                   Aggregates
## 4051                                                   Aggregates
## 4052                                                   Aggregates
## 4053                                                   Aggregates
## 4054                                                   Aggregates
## 4055                                                   Aggregates
## 4056                                                   Aggregates
## 4057                                                   Aggregates
## 4058                                                   Aggregates
## 4059                                                   Aggregates
## 4060                                                   Aggregates
## 4061                                                   Aggregates
## 4062                                                   Aggregates
## 4063                                                   Aggregates
## 4064                                                   Aggregates
## 4065                                                   Aggregates
## 4066                                                   Aggregates
## 4067                                                   Aggregates
## 4068                                                   Aggregates
## 4069                                                   Aggregates
## 4070                                                   Aggregates
## 4071                                                   Aggregates
## 4072                                                   Aggregates
## 4073                                                   Aggregates
## 4074                                                   Aggregates
## 4075                                                   Aggregates
## 4076                                                   Aggregates
## 4077                                                   Aggregates
## 4078                                                   Aggregates
## 4079                                                   Aggregates
## 4080                                                   Aggregates
## 4081                                                   Aggregates
## 4082                                                   Aggregates
## 4083                                                   Aggregates
## 4084                                                   Aggregates
## 4085                                                   Aggregates
## 4086                                                   Aggregates
## 4087                                                   Aggregates
## 4088                                                   Aggregates
## 4089                                                   Aggregates
## 4090                                                   Aggregates
## 4091                                                   Aggregates
## 4092                                                   Aggregates
## 4093               Quito   -78.5243 -0.229498 Upper middle income
## 4094               Quito   -78.5243 -0.229498 Upper middle income
## 4095               Quito   -78.5243 -0.229498 Upper middle income
## 4096               Quito   -78.5243 -0.229498 Upper middle income
## 4097               Quito   -78.5243 -0.229498 Upper middle income
## 4098               Quito   -78.5243 -0.229498 Upper middle income
## 4099               Quito   -78.5243 -0.229498 Upper middle income
## 4100               Quito   -78.5243 -0.229498 Upper middle income
## 4101               Quito   -78.5243 -0.229498 Upper middle income
## 4102               Quito   -78.5243 -0.229498 Upper middle income
## 4103               Quito   -78.5243 -0.229498 Upper middle income
## 4104               Quito   -78.5243 -0.229498 Upper middle income
## 4105               Quito   -78.5243 -0.229498 Upper middle income
## 4106               Quito   -78.5243 -0.229498 Upper middle income
## 4107               Quito   -78.5243 -0.229498 Upper middle income
## 4108               Quito   -78.5243 -0.229498 Upper middle income
## 4109               Quito   -78.5243 -0.229498 Upper middle income
## 4110               Quito   -78.5243 -0.229498 Upper middle income
## 4111               Quito   -78.5243 -0.229498 Upper middle income
## 4112               Quito   -78.5243 -0.229498 Upper middle income
## 4113               Quito   -78.5243 -0.229498 Upper middle income
## 4114               Quito   -78.5243 -0.229498 Upper middle income
## 4115               Quito   -78.5243 -0.229498 Upper middle income
## 4116               Quito   -78.5243 -0.229498 Upper middle income
## 4117               Quito   -78.5243 -0.229498 Upper middle income
## 4118               Quito   -78.5243 -0.229498 Upper middle income
## 4119               Quito   -78.5243 -0.229498 Upper middle income
## 4120               Quito   -78.5243 -0.229498 Upper middle income
## 4121               Quito   -78.5243 -0.229498 Upper middle income
## 4122               Quito   -78.5243 -0.229498 Upper middle income
## 4123               Quito   -78.5243 -0.229498 Upper middle income
## 4124               Quito   -78.5243 -0.229498 Upper middle income
## 4125               Quito   -78.5243 -0.229498 Upper middle income
## 4126               Quito   -78.5243 -0.229498 Upper middle income
## 4127               Quito   -78.5243 -0.229498 Upper middle income
## 4128               Quito   -78.5243 -0.229498 Upper middle income
## 4129               Quito   -78.5243 -0.229498 Upper middle income
## 4130               Quito   -78.5243 -0.229498 Upper middle income
## 4131               Quito   -78.5243 -0.229498 Upper middle income
## 4132               Quito   -78.5243 -0.229498 Upper middle income
## 4133               Quito   -78.5243 -0.229498 Upper middle income
## 4134               Quito   -78.5243 -0.229498 Upper middle income
## 4135               Quito   -78.5243 -0.229498 Upper middle income
## 4136               Quito   -78.5243 -0.229498 Upper middle income
## 4137               Quito   -78.5243 -0.229498 Upper middle income
## 4138               Quito   -78.5243 -0.229498 Upper middle income
## 4139               Quito   -78.5243 -0.229498 Upper middle income
## 4140               Quito   -78.5243 -0.229498 Upper middle income
## 4141               Quito   -78.5243 -0.229498 Upper middle income
## 4142               Quito   -78.5243 -0.229498 Upper middle income
## 4143               Quito   -78.5243 -0.229498 Upper middle income
## 4144               Quito   -78.5243 -0.229498 Upper middle income
## 4145               Quito   -78.5243 -0.229498 Upper middle income
## 4146               Quito   -78.5243 -0.229498 Upper middle income
## 4147               Quito   -78.5243 -0.229498 Upper middle income
## 4148               Quito   -78.5243 -0.229498 Upper middle income
## 4149               Quito   -78.5243 -0.229498 Upper middle income
## 4150               Quito   -78.5243 -0.229498 Upper middle income
## 4151               Quito   -78.5243 -0.229498 Upper middle income
## 4152               Quito   -78.5243 -0.229498 Upper middle income
## 4153               Quito   -78.5243 -0.229498 Upper middle income
## 4154               Quito   -78.5243 -0.229498 Upper middle income
## 4155               Cairo    31.2461   30.0982 Lower middle income
## 4156               Cairo    31.2461   30.0982 Lower middle income
## 4157               Cairo    31.2461   30.0982 Lower middle income
## 4158               Cairo    31.2461   30.0982 Lower middle income
## 4159               Cairo    31.2461   30.0982 Lower middle income
## 4160               Cairo    31.2461   30.0982 Lower middle income
## 4161               Cairo    31.2461   30.0982 Lower middle income
## 4162               Cairo    31.2461   30.0982 Lower middle income
## 4163               Cairo    31.2461   30.0982 Lower middle income
## 4164               Cairo    31.2461   30.0982 Lower middle income
## 4165               Cairo    31.2461   30.0982 Lower middle income
## 4166               Cairo    31.2461   30.0982 Lower middle income
## 4167               Cairo    31.2461   30.0982 Lower middle income
## 4168               Cairo    31.2461   30.0982 Lower middle income
## 4169               Cairo    31.2461   30.0982 Lower middle income
## 4170               Cairo    31.2461   30.0982 Lower middle income
## 4171               Cairo    31.2461   30.0982 Lower middle income
## 4172               Cairo    31.2461   30.0982 Lower middle income
## 4173               Cairo    31.2461   30.0982 Lower middle income
## 4174               Cairo    31.2461   30.0982 Lower middle income
## 4175               Cairo    31.2461   30.0982 Lower middle income
## 4176               Cairo    31.2461   30.0982 Lower middle income
## 4177               Cairo    31.2461   30.0982 Lower middle income
## 4178               Cairo    31.2461   30.0982 Lower middle income
## 4179               Cairo    31.2461   30.0982 Lower middle income
## 4180               Cairo    31.2461   30.0982 Lower middle income
## 4181               Cairo    31.2461   30.0982 Lower middle income
## 4182               Cairo    31.2461   30.0982 Lower middle income
## 4183               Cairo    31.2461   30.0982 Lower middle income
## 4184               Cairo    31.2461   30.0982 Lower middle income
## 4185               Cairo    31.2461   30.0982 Lower middle income
## 4186               Cairo    31.2461   30.0982 Lower middle income
## 4187               Cairo    31.2461   30.0982 Lower middle income
## 4188               Cairo    31.2461   30.0982 Lower middle income
## 4189               Cairo    31.2461   30.0982 Lower middle income
## 4190               Cairo    31.2461   30.0982 Lower middle income
## 4191               Cairo    31.2461   30.0982 Lower middle income
## 4192               Cairo    31.2461   30.0982 Lower middle income
## 4193               Cairo    31.2461   30.0982 Lower middle income
## 4194               Cairo    31.2461   30.0982 Lower middle income
## 4195               Cairo    31.2461   30.0982 Lower middle income
## 4196               Cairo    31.2461   30.0982 Lower middle income
## 4197               Cairo    31.2461   30.0982 Lower middle income
## 4198               Cairo    31.2461   30.0982 Lower middle income
## 4199               Cairo    31.2461   30.0982 Lower middle income
## 4200               Cairo    31.2461   30.0982 Lower middle income
## 4201               Cairo    31.2461   30.0982 Lower middle income
## 4202               Cairo    31.2461   30.0982 Lower middle income
## 4203               Cairo    31.2461   30.0982 Lower middle income
## 4204               Cairo    31.2461   30.0982 Lower middle income
## 4205               Cairo    31.2461   30.0982 Lower middle income
## 4206               Cairo    31.2461   30.0982 Lower middle income
## 4207               Cairo    31.2461   30.0982 Lower middle income
## 4208               Cairo    31.2461   30.0982 Lower middle income
## 4209               Cairo    31.2461   30.0982 Lower middle income
## 4210               Cairo    31.2461   30.0982 Lower middle income
## 4211               Cairo    31.2461   30.0982 Lower middle income
## 4212               Cairo    31.2461   30.0982 Lower middle income
## 4213               Cairo    31.2461   30.0982 Lower middle income
## 4214               Cairo    31.2461   30.0982 Lower middle income
## 4215               Cairo    31.2461   30.0982 Lower middle income
## 4216               Cairo    31.2461   30.0982 Lower middle income
## 4217        San Salvador   -89.2073   13.7034 Lower middle income
## 4218        San Salvador   -89.2073   13.7034 Lower middle income
## 4219        San Salvador   -89.2073   13.7034 Lower middle income
## 4220        San Salvador   -89.2073   13.7034 Lower middle income
## 4221        San Salvador   -89.2073   13.7034 Lower middle income
## 4222        San Salvador   -89.2073   13.7034 Lower middle income
## 4223        San Salvador   -89.2073   13.7034 Lower middle income
## 4224        San Salvador   -89.2073   13.7034 Lower middle income
## 4225        San Salvador   -89.2073   13.7034 Lower middle income
## 4226        San Salvador   -89.2073   13.7034 Lower middle income
## 4227        San Salvador   -89.2073   13.7034 Lower middle income
## 4228        San Salvador   -89.2073   13.7034 Lower middle income
## 4229        San Salvador   -89.2073   13.7034 Lower middle income
## 4230        San Salvador   -89.2073   13.7034 Lower middle income
## 4231        San Salvador   -89.2073   13.7034 Lower middle income
## 4232        San Salvador   -89.2073   13.7034 Lower middle income
## 4233        San Salvador   -89.2073   13.7034 Lower middle income
## 4234        San Salvador   -89.2073   13.7034 Lower middle income
## 4235        San Salvador   -89.2073   13.7034 Lower middle income
## 4236        San Salvador   -89.2073   13.7034 Lower middle income
## 4237        San Salvador   -89.2073   13.7034 Lower middle income
## 4238        San Salvador   -89.2073   13.7034 Lower middle income
## 4239        San Salvador   -89.2073   13.7034 Lower middle income
## 4240        San Salvador   -89.2073   13.7034 Lower middle income
## 4241        San Salvador   -89.2073   13.7034 Lower middle income
## 4242        San Salvador   -89.2073   13.7034 Lower middle income
## 4243        San Salvador   -89.2073   13.7034 Lower middle income
## 4244        San Salvador   -89.2073   13.7034 Lower middle income
## 4245        San Salvador   -89.2073   13.7034 Lower middle income
## 4246        San Salvador   -89.2073   13.7034 Lower middle income
## 4247        San Salvador   -89.2073   13.7034 Lower middle income
## 4248        San Salvador   -89.2073   13.7034 Lower middle income
## 4249        San Salvador   -89.2073   13.7034 Lower middle income
## 4250        San Salvador   -89.2073   13.7034 Lower middle income
## 4251        San Salvador   -89.2073   13.7034 Lower middle income
## 4252        San Salvador   -89.2073   13.7034 Lower middle income
## 4253        San Salvador   -89.2073   13.7034 Lower middle income
## 4254        San Salvador   -89.2073   13.7034 Lower middle income
## 4255        San Salvador   -89.2073   13.7034 Lower middle income
## 4256        San Salvador   -89.2073   13.7034 Lower middle income
## 4257        San Salvador   -89.2073   13.7034 Lower middle income
## 4258        San Salvador   -89.2073   13.7034 Lower middle income
## 4259        San Salvador   -89.2073   13.7034 Lower middle income
## 4260        San Salvador   -89.2073   13.7034 Lower middle income
## 4261        San Salvador   -89.2073   13.7034 Lower middle income
## 4262        San Salvador   -89.2073   13.7034 Lower middle income
## 4263        San Salvador   -89.2073   13.7034 Lower middle income
## 4264        San Salvador   -89.2073   13.7034 Lower middle income
## 4265        San Salvador   -89.2073   13.7034 Lower middle income
## 4266        San Salvador   -89.2073   13.7034 Lower middle income
## 4267        San Salvador   -89.2073   13.7034 Lower middle income
## 4268        San Salvador   -89.2073   13.7034 Lower middle income
## 4269        San Salvador   -89.2073   13.7034 Lower middle income
## 4270        San Salvador   -89.2073   13.7034 Lower middle income
## 4271        San Salvador   -89.2073   13.7034 Lower middle income
## 4272        San Salvador   -89.2073   13.7034 Lower middle income
## 4273        San Salvador   -89.2073   13.7034 Lower middle income
## 4274        San Salvador   -89.2073   13.7034 Lower middle income
## 4275        San Salvador   -89.2073   13.7034 Lower middle income
## 4276        San Salvador   -89.2073   13.7034 Lower middle income
## 4277        San Salvador   -89.2073   13.7034 Lower middle income
## 4278        San Salvador   -89.2073   13.7034 Lower middle income
## 4279              Malabo     8.7741    3.7523 Upper middle income
## 4280              Malabo     8.7741    3.7523 Upper middle income
## 4281              Malabo     8.7741    3.7523 Upper middle income
## 4282              Malabo     8.7741    3.7523 Upper middle income
## 4283              Malabo     8.7741    3.7523 Upper middle income
## 4284              Malabo     8.7741    3.7523 Upper middle income
## 4285              Malabo     8.7741    3.7523 Upper middle income
## 4286              Malabo     8.7741    3.7523 Upper middle income
## 4287              Malabo     8.7741    3.7523 Upper middle income
## 4288              Malabo     8.7741    3.7523 Upper middle income
## 4289              Malabo     8.7741    3.7523 Upper middle income
## 4290              Malabo     8.7741    3.7523 Upper middle income
## 4291              Malabo     8.7741    3.7523 Upper middle income
## 4292              Malabo     8.7741    3.7523 Upper middle income
## 4293              Malabo     8.7741    3.7523 Upper middle income
## 4294              Malabo     8.7741    3.7523 Upper middle income
## 4295              Malabo     8.7741    3.7523 Upper middle income
## 4296              Malabo     8.7741    3.7523 Upper middle income
## 4297              Malabo     8.7741    3.7523 Upper middle income
## 4298              Malabo     8.7741    3.7523 Upper middle income
## 4299              Malabo     8.7741    3.7523 Upper middle income
## 4300              Malabo     8.7741    3.7523 Upper middle income
## 4301              Malabo     8.7741    3.7523 Upper middle income
## 4302              Malabo     8.7741    3.7523 Upper middle income
## 4303              Malabo     8.7741    3.7523 Upper middle income
## 4304              Malabo     8.7741    3.7523 Upper middle income
## 4305              Malabo     8.7741    3.7523 Upper middle income
## 4306              Malabo     8.7741    3.7523 Upper middle income
## 4307              Malabo     8.7741    3.7523 Upper middle income
## 4308              Malabo     8.7741    3.7523 Upper middle income
## 4309              Malabo     8.7741    3.7523 Upper middle income
## 4310              Malabo     8.7741    3.7523 Upper middle income
## 4311              Malabo     8.7741    3.7523 Upper middle income
## 4312              Malabo     8.7741    3.7523 Upper middle income
## 4313              Malabo     8.7741    3.7523 Upper middle income
## 4314              Malabo     8.7741    3.7523 Upper middle income
## 4315              Malabo     8.7741    3.7523 Upper middle income
## 4316              Malabo     8.7741    3.7523 Upper middle income
## 4317              Malabo     8.7741    3.7523 Upper middle income
## 4318              Malabo     8.7741    3.7523 Upper middle income
## 4319              Malabo     8.7741    3.7523 Upper middle income
## 4320              Malabo     8.7741    3.7523 Upper middle income
## 4321              Malabo     8.7741    3.7523 Upper middle income
## 4322              Malabo     8.7741    3.7523 Upper middle income
## 4323              Malabo     8.7741    3.7523 Upper middle income
## 4324              Malabo     8.7741    3.7523 Upper middle income
## 4325              Malabo     8.7741    3.7523 Upper middle income
## 4326              Malabo     8.7741    3.7523 Upper middle income
## 4327              Malabo     8.7741    3.7523 Upper middle income
## 4328              Malabo     8.7741    3.7523 Upper middle income
## 4329              Malabo     8.7741    3.7523 Upper middle income
## 4330              Malabo     8.7741    3.7523 Upper middle income
## 4331              Malabo     8.7741    3.7523 Upper middle income
## 4332              Malabo     8.7741    3.7523 Upper middle income
## 4333              Malabo     8.7741    3.7523 Upper middle income
## 4334              Malabo     8.7741    3.7523 Upper middle income
## 4335              Malabo     8.7741    3.7523 Upper middle income
## 4336              Malabo     8.7741    3.7523 Upper middle income
## 4337              Malabo     8.7741    3.7523 Upper middle income
## 4338              Malabo     8.7741    3.7523 Upper middle income
## 4339              Malabo     8.7741    3.7523 Upper middle income
## 4340              Malabo     8.7741    3.7523 Upper middle income
## 4341              Asmara    38.9183   15.3315          Low income
## 4342              Asmara    38.9183   15.3315          Low income
## 4343              Asmara    38.9183   15.3315          Low income
## 4344              Asmara    38.9183   15.3315          Low income
## 4345              Asmara    38.9183   15.3315          Low income
## 4346              Asmara    38.9183   15.3315          Low income
## 4347              Asmara    38.9183   15.3315          Low income
## 4348              Asmara    38.9183   15.3315          Low income
## 4349              Asmara    38.9183   15.3315          Low income
## 4350              Asmara    38.9183   15.3315          Low income
## 4351              Asmara    38.9183   15.3315          Low income
## 4352              Asmara    38.9183   15.3315          Low income
## 4353              Asmara    38.9183   15.3315          Low income
## 4354              Asmara    38.9183   15.3315          Low income
## 4355              Asmara    38.9183   15.3315          Low income
## 4356              Asmara    38.9183   15.3315          Low income
## 4357              Asmara    38.9183   15.3315          Low income
## 4358              Asmara    38.9183   15.3315          Low income
## 4359              Asmara    38.9183   15.3315          Low income
## 4360              Asmara    38.9183   15.3315          Low income
## 4361              Asmara    38.9183   15.3315          Low income
## 4362              Asmara    38.9183   15.3315          Low income
## 4363              Asmara    38.9183   15.3315          Low income
## 4364              Asmara    38.9183   15.3315          Low income
## 4365              Asmara    38.9183   15.3315          Low income
## 4366              Asmara    38.9183   15.3315          Low income
## 4367              Asmara    38.9183   15.3315          Low income
## 4368              Asmara    38.9183   15.3315          Low income
## 4369              Asmara    38.9183   15.3315          Low income
## 4370              Asmara    38.9183   15.3315          Low income
## 4371              Asmara    38.9183   15.3315          Low income
## 4372              Asmara    38.9183   15.3315          Low income
## 4373              Asmara    38.9183   15.3315          Low income
## 4374              Asmara    38.9183   15.3315          Low income
## 4375              Asmara    38.9183   15.3315          Low income
## 4376              Asmara    38.9183   15.3315          Low income
## 4377              Asmara    38.9183   15.3315          Low income
## 4378              Asmara    38.9183   15.3315          Low income
## 4379              Asmara    38.9183   15.3315          Low income
## 4380              Asmara    38.9183   15.3315          Low income
## 4381              Asmara    38.9183   15.3315          Low income
## 4382              Asmara    38.9183   15.3315          Low income
## 4383              Asmara    38.9183   15.3315          Low income
## 4384              Asmara    38.9183   15.3315          Low income
## 4385              Asmara    38.9183   15.3315          Low income
## 4386              Asmara    38.9183   15.3315          Low income
## 4387              Asmara    38.9183   15.3315          Low income
## 4388              Asmara    38.9183   15.3315          Low income
## 4389              Asmara    38.9183   15.3315          Low income
## 4390              Asmara    38.9183   15.3315          Low income
## 4391              Asmara    38.9183   15.3315          Low income
## 4392              Asmara    38.9183   15.3315          Low income
## 4393              Asmara    38.9183   15.3315          Low income
## 4394              Asmara    38.9183   15.3315          Low income
## 4395              Asmara    38.9183   15.3315          Low income
## 4396              Asmara    38.9183   15.3315          Low income
## 4397              Asmara    38.9183   15.3315          Low income
## 4398              Asmara    38.9183   15.3315          Low income
## 4399              Asmara    38.9183   15.3315          Low income
## 4400              Asmara    38.9183   15.3315          Low income
## 4401              Asmara    38.9183   15.3315          Low income
## 4402              Asmara    38.9183   15.3315          Low income
## 4403             Tallinn    24.7586   59.4392         High income
## 4404             Tallinn    24.7586   59.4392         High income
## 4405             Tallinn    24.7586   59.4392         High income
## 4406             Tallinn    24.7586   59.4392         High income
## 4407             Tallinn    24.7586   59.4392         High income
## 4408             Tallinn    24.7586   59.4392         High income
## 4409             Tallinn    24.7586   59.4392         High income
## 4410             Tallinn    24.7586   59.4392         High income
## 4411             Tallinn    24.7586   59.4392         High income
## 4412             Tallinn    24.7586   59.4392         High income
## 4413             Tallinn    24.7586   59.4392         High income
## 4414             Tallinn    24.7586   59.4392         High income
## 4415             Tallinn    24.7586   59.4392         High income
## 4416             Tallinn    24.7586   59.4392         High income
## 4417             Tallinn    24.7586   59.4392         High income
## 4418             Tallinn    24.7586   59.4392         High income
## 4419             Tallinn    24.7586   59.4392         High income
## 4420             Tallinn    24.7586   59.4392         High income
## 4421             Tallinn    24.7586   59.4392         High income
## 4422             Tallinn    24.7586   59.4392         High income
## 4423             Tallinn    24.7586   59.4392         High income
## 4424             Tallinn    24.7586   59.4392         High income
## 4425             Tallinn    24.7586   59.4392         High income
## 4426             Tallinn    24.7586   59.4392         High income
## 4427             Tallinn    24.7586   59.4392         High income
## 4428             Tallinn    24.7586   59.4392         High income
## 4429             Tallinn    24.7586   59.4392         High income
## 4430             Tallinn    24.7586   59.4392         High income
## 4431             Tallinn    24.7586   59.4392         High income
## 4432             Tallinn    24.7586   59.4392         High income
## 4433             Tallinn    24.7586   59.4392         High income
## 4434             Tallinn    24.7586   59.4392         High income
## 4435             Tallinn    24.7586   59.4392         High income
## 4436             Tallinn    24.7586   59.4392         High income
## 4437             Tallinn    24.7586   59.4392         High income
## 4438             Tallinn    24.7586   59.4392         High income
## 4439             Tallinn    24.7586   59.4392         High income
## 4440             Tallinn    24.7586   59.4392         High income
## 4441             Tallinn    24.7586   59.4392         High income
## 4442             Tallinn    24.7586   59.4392         High income
## 4443             Tallinn    24.7586   59.4392         High income
## 4444             Tallinn    24.7586   59.4392         High income
## 4445             Tallinn    24.7586   59.4392         High income
## 4446             Tallinn    24.7586   59.4392         High income
## 4447             Tallinn    24.7586   59.4392         High income
## 4448             Tallinn    24.7586   59.4392         High income
## 4449             Tallinn    24.7586   59.4392         High income
## 4450             Tallinn    24.7586   59.4392         High income
## 4451             Tallinn    24.7586   59.4392         High income
## 4452             Tallinn    24.7586   59.4392         High income
## 4453             Tallinn    24.7586   59.4392         High income
## 4454             Tallinn    24.7586   59.4392         High income
## 4455             Tallinn    24.7586   59.4392         High income
## 4456             Tallinn    24.7586   59.4392         High income
## 4457             Tallinn    24.7586   59.4392         High income
## 4458             Tallinn    24.7586   59.4392         High income
## 4459             Tallinn    24.7586   59.4392         High income
## 4460             Tallinn    24.7586   59.4392         High income
## 4461             Tallinn    24.7586   59.4392         High income
## 4462             Tallinn    24.7586   59.4392         High income
## 4463             Tallinn    24.7586   59.4392         High income
## 4464             Tallinn    24.7586   59.4392         High income
## 4465             Mbabane    31.4659  -26.5225 Lower middle income
## 4466             Mbabane    31.4659  -26.5225 Lower middle income
## 4467             Mbabane    31.4659  -26.5225 Lower middle income
## 4468             Mbabane    31.4659  -26.5225 Lower middle income
## 4469             Mbabane    31.4659  -26.5225 Lower middle income
## 4470             Mbabane    31.4659  -26.5225 Lower middle income
## 4471             Mbabane    31.4659  -26.5225 Lower middle income
## 4472             Mbabane    31.4659  -26.5225 Lower middle income
## 4473             Mbabane    31.4659  -26.5225 Lower middle income
## 4474             Mbabane    31.4659  -26.5225 Lower middle income
## 4475             Mbabane    31.4659  -26.5225 Lower middle income
## 4476             Mbabane    31.4659  -26.5225 Lower middle income
## 4477             Mbabane    31.4659  -26.5225 Lower middle income
## 4478             Mbabane    31.4659  -26.5225 Lower middle income
## 4479             Mbabane    31.4659  -26.5225 Lower middle income
## 4480             Mbabane    31.4659  -26.5225 Lower middle income
## 4481             Mbabane    31.4659  -26.5225 Lower middle income
## 4482             Mbabane    31.4659  -26.5225 Lower middle income
## 4483             Mbabane    31.4659  -26.5225 Lower middle income
## 4484             Mbabane    31.4659  -26.5225 Lower middle income
## 4485             Mbabane    31.4659  -26.5225 Lower middle income
## 4486             Mbabane    31.4659  -26.5225 Lower middle income
## 4487             Mbabane    31.4659  -26.5225 Lower middle income
## 4488             Mbabane    31.4659  -26.5225 Lower middle income
## 4489             Mbabane    31.4659  -26.5225 Lower middle income
## 4490             Mbabane    31.4659  -26.5225 Lower middle income
## 4491             Mbabane    31.4659  -26.5225 Lower middle income
## 4492             Mbabane    31.4659  -26.5225 Lower middle income
## 4493             Mbabane    31.4659  -26.5225 Lower middle income
## 4494             Mbabane    31.4659  -26.5225 Lower middle income
## 4495             Mbabane    31.4659  -26.5225 Lower middle income
## 4496             Mbabane    31.4659  -26.5225 Lower middle income
## 4497             Mbabane    31.4659  -26.5225 Lower middle income
## 4498             Mbabane    31.4659  -26.5225 Lower middle income
## 4499             Mbabane    31.4659  -26.5225 Lower middle income
## 4500             Mbabane    31.4659  -26.5225 Lower middle income
## 4501             Mbabane    31.4659  -26.5225 Lower middle income
## 4502             Mbabane    31.4659  -26.5225 Lower middle income
## 4503             Mbabane    31.4659  -26.5225 Lower middle income
## 4504             Mbabane    31.4659  -26.5225 Lower middle income
## 4505             Mbabane    31.4659  -26.5225 Lower middle income
## 4506             Mbabane    31.4659  -26.5225 Lower middle income
## 4507             Mbabane    31.4659  -26.5225 Lower middle income
## 4508             Mbabane    31.4659  -26.5225 Lower middle income
## 4509             Mbabane    31.4659  -26.5225 Lower middle income
## 4510             Mbabane    31.4659  -26.5225 Lower middle income
## 4511             Mbabane    31.4659  -26.5225 Lower middle income
## 4512             Mbabane    31.4659  -26.5225 Lower middle income
## 4513             Mbabane    31.4659  -26.5225 Lower middle income
## 4514             Mbabane    31.4659  -26.5225 Lower middle income
## 4515             Mbabane    31.4659  -26.5225 Lower middle income
## 4516             Mbabane    31.4659  -26.5225 Lower middle income
## 4517             Mbabane    31.4659  -26.5225 Lower middle income
## 4518             Mbabane    31.4659  -26.5225 Lower middle income
## 4519             Mbabane    31.4659  -26.5225 Lower middle income
## 4520             Mbabane    31.4659  -26.5225 Lower middle income
## 4521             Mbabane    31.4659  -26.5225 Lower middle income
## 4522             Mbabane    31.4659  -26.5225 Lower middle income
## 4523             Mbabane    31.4659  -26.5225 Lower middle income
## 4524             Mbabane    31.4659  -26.5225 Lower middle income
## 4525             Mbabane    31.4659  -26.5225 Lower middle income
## 4526             Mbabane    31.4659  -26.5225 Lower middle income
## 4527         Addis Ababa    38.7468   9.02274          Low income
## 4528         Addis Ababa    38.7468   9.02274          Low income
## 4529         Addis Ababa    38.7468   9.02274          Low income
## 4530         Addis Ababa    38.7468   9.02274          Low income
## 4531         Addis Ababa    38.7468   9.02274          Low income
## 4532         Addis Ababa    38.7468   9.02274          Low income
## 4533         Addis Ababa    38.7468   9.02274          Low income
## 4534         Addis Ababa    38.7468   9.02274          Low income
## 4535         Addis Ababa    38.7468   9.02274          Low income
## 4536         Addis Ababa    38.7468   9.02274          Low income
## 4537         Addis Ababa    38.7468   9.02274          Low income
## 4538         Addis Ababa    38.7468   9.02274          Low income
## 4539         Addis Ababa    38.7468   9.02274          Low income
## 4540         Addis Ababa    38.7468   9.02274          Low income
## 4541         Addis Ababa    38.7468   9.02274          Low income
## 4542         Addis Ababa    38.7468   9.02274          Low income
## 4543         Addis Ababa    38.7468   9.02274          Low income
## 4544         Addis Ababa    38.7468   9.02274          Low income
## 4545         Addis Ababa    38.7468   9.02274          Low income
## 4546         Addis Ababa    38.7468   9.02274          Low income
## 4547         Addis Ababa    38.7468   9.02274          Low income
## 4548         Addis Ababa    38.7468   9.02274          Low income
## 4549         Addis Ababa    38.7468   9.02274          Low income
## 4550         Addis Ababa    38.7468   9.02274          Low income
## 4551         Addis Ababa    38.7468   9.02274          Low income
## 4552         Addis Ababa    38.7468   9.02274          Low income
## 4553         Addis Ababa    38.7468   9.02274          Low income
## 4554         Addis Ababa    38.7468   9.02274          Low income
## 4555         Addis Ababa    38.7468   9.02274          Low income
## 4556         Addis Ababa    38.7468   9.02274          Low income
## 4557         Addis Ababa    38.7468   9.02274          Low income
## 4558         Addis Ababa    38.7468   9.02274          Low income
## 4559         Addis Ababa    38.7468   9.02274          Low income
## 4560         Addis Ababa    38.7468   9.02274          Low income
## 4561         Addis Ababa    38.7468   9.02274          Low income
## 4562         Addis Ababa    38.7468   9.02274          Low income
## 4563         Addis Ababa    38.7468   9.02274          Low income
## 4564         Addis Ababa    38.7468   9.02274          Low income
## 4565         Addis Ababa    38.7468   9.02274          Low income
## 4566         Addis Ababa    38.7468   9.02274          Low income
## 4567         Addis Ababa    38.7468   9.02274          Low income
## 4568         Addis Ababa    38.7468   9.02274          Low income
## 4569         Addis Ababa    38.7468   9.02274          Low income
## 4570         Addis Ababa    38.7468   9.02274          Low income
## 4571         Addis Ababa    38.7468   9.02274          Low income
## 4572         Addis Ababa    38.7468   9.02274          Low income
## 4573         Addis Ababa    38.7468   9.02274          Low income
## 4574         Addis Ababa    38.7468   9.02274          Low income
## 4575         Addis Ababa    38.7468   9.02274          Low income
## 4576         Addis Ababa    38.7468   9.02274          Low income
## 4577         Addis Ababa    38.7468   9.02274          Low income
## 4578         Addis Ababa    38.7468   9.02274          Low income
## 4579         Addis Ababa    38.7468   9.02274          Low income
## 4580         Addis Ababa    38.7468   9.02274          Low income
## 4581         Addis Ababa    38.7468   9.02274          Low income
## 4582         Addis Ababa    38.7468   9.02274          Low income
## 4583         Addis Ababa    38.7468   9.02274          Low income
## 4584         Addis Ababa    38.7468   9.02274          Low income
## 4585         Addis Ababa    38.7468   9.02274          Low income
## 4586         Addis Ababa    38.7468   9.02274          Low income
## 4587         Addis Ababa    38.7468   9.02274          Low income
## 4588         Addis Ababa    38.7468   9.02274          Low income
## 4589                                                   Aggregates
## 4590                                                   Aggregates
## 4591                                                   Aggregates
## 4592                                                   Aggregates
## 4593                                                   Aggregates
## 4594                                                   Aggregates
## 4595                                                   Aggregates
## 4596                                                   Aggregates
## 4597                                                   Aggregates
## 4598                                                   Aggregates
## 4599                                                   Aggregates
## 4600                                                   Aggregates
## 4601                                                   Aggregates
## 4602                                                   Aggregates
## 4603                                                   Aggregates
## 4604                                                   Aggregates
## 4605                                                   Aggregates
## 4606                                                   Aggregates
## 4607                                                   Aggregates
## 4608                                                   Aggregates
## 4609                                                   Aggregates
## 4610                                                   Aggregates
## 4611                                                   Aggregates
## 4612                                                   Aggregates
## 4613                                                   Aggregates
## 4614                                                   Aggregates
## 4615                                                   Aggregates
## 4616                                                   Aggregates
## 4617                                                   Aggregates
## 4618                                                   Aggregates
## 4619                                                   Aggregates
## 4620                                                   Aggregates
## 4621                                                   Aggregates
## 4622                                                   Aggregates
## 4623                                                   Aggregates
## 4624                                                   Aggregates
## 4625                                                   Aggregates
## 4626                                                   Aggregates
## 4627                                                   Aggregates
## 4628                                                   Aggregates
## 4629                                                   Aggregates
## 4630                                                   Aggregates
## 4631                                                   Aggregates
## 4632                                                   Aggregates
## 4633                                                   Aggregates
## 4634                                                   Aggregates
## 4635                                                   Aggregates
## 4636                                                   Aggregates
## 4637                                                   Aggregates
## 4638                                                   Aggregates
## 4639                                                   Aggregates
## 4640                                                   Aggregates
## 4641                                                   Aggregates
## 4642                                                   Aggregates
## 4643                                                   Aggregates
## 4644                                                   Aggregates
## 4645                                                   Aggregates
## 4646                                                   Aggregates
## 4647                                                   Aggregates
## 4648                                                   Aggregates
## 4649                                                   Aggregates
## 4650                                                   Aggregates
## 4651                                                   Aggregates
## 4652                                                   Aggregates
## 4653                                                   Aggregates
## 4654                                                   Aggregates
## 4655                                                   Aggregates
## 4656                                                   Aggregates
## 4657                                                   Aggregates
## 4658                                                   Aggregates
## 4659                                                   Aggregates
## 4660                                                   Aggregates
## 4661                                                   Aggregates
## 4662                                                   Aggregates
## 4663                                                   Aggregates
## 4664                                                   Aggregates
## 4665                                                   Aggregates
## 4666                                                   Aggregates
## 4667                                                   Aggregates
## 4668                                                   Aggregates
## 4669                                                   Aggregates
## 4670                                                   Aggregates
## 4671                                                   Aggregates
## 4672                                                   Aggregates
## 4673                                                   Aggregates
## 4674                                                   Aggregates
## 4675                                                   Aggregates
## 4676                                                   Aggregates
## 4677                                                   Aggregates
## 4678                                                   Aggregates
## 4679                                                   Aggregates
## 4680                                                   Aggregates
## 4681                                                   Aggregates
## 4682                                                   Aggregates
## 4683                                                   Aggregates
## 4684                                                   Aggregates
## 4685                                                   Aggregates
## 4686                                                   Aggregates
## 4687                                                   Aggregates
## 4688                                                   Aggregates
## 4689                                                   Aggregates
## 4690                                                   Aggregates
## 4691                                                   Aggregates
## 4692                                                   Aggregates
## 4693                                                   Aggregates
## 4694                                                   Aggregates
## 4695                                                   Aggregates
## 4696                                                   Aggregates
## 4697                                                   Aggregates
## 4698                                                   Aggregates
## 4699                                                   Aggregates
## 4700                                                   Aggregates
## 4701                                                   Aggregates
## 4702                                                   Aggregates
## 4703                                                   Aggregates
## 4704                                                   Aggregates
## 4705                                                   Aggregates
## 4706                                                   Aggregates
## 4707                                                   Aggregates
## 4708                                                   Aggregates
## 4709                                                   Aggregates
## 4710                                                   Aggregates
## 4711                                                   Aggregates
## 4712                                                   Aggregates
## 4713                                                   Aggregates
## 4714                                                   Aggregates
## 4715                                                   Aggregates
## 4716                                                   Aggregates
## 4717                                                   Aggregates
## 4718                                                   Aggregates
## 4719                                                   Aggregates
## 4720                                                   Aggregates
## 4721                                                   Aggregates
## 4722                                                   Aggregates
## 4723                                                   Aggregates
## 4724                                                   Aggregates
## 4725                                                   Aggregates
## 4726                                                   Aggregates
## 4727                                                   Aggregates
## 4728                                                   Aggregates
## 4729                                                   Aggregates
## 4730                                                   Aggregates
## 4731                                                   Aggregates
## 4732                                                   Aggregates
## 4733                                                   Aggregates
## 4734                                                   Aggregates
## 4735                                                   Aggregates
## 4736                                                   Aggregates
## 4737                                                   Aggregates
## 4738                                                   Aggregates
## 4739                                                   Aggregates
## 4740                                                   Aggregates
## 4741                                                   Aggregates
## 4742                                                   Aggregates
## 4743                                                   Aggregates
## 4744                                                   Aggregates
## 4745                                                   Aggregates
## 4746                                                   Aggregates
## 4747                                                   Aggregates
## 4748                                                   Aggregates
## 4749                                                   Aggregates
## 4750                                                   Aggregates
## 4751                                                   Aggregates
## 4752                                                   Aggregates
## 4753                                                   Aggregates
## 4754                                                   Aggregates
## 4755                                                   Aggregates
## 4756                                                   Aggregates
## 4757                                                   Aggregates
## 4758                                                   Aggregates
## 4759                                                   Aggregates
## 4760                                                   Aggregates
## 4761                                                   Aggregates
## 4762                                                   Aggregates
## 4763                                                   Aggregates
## 4764                                                   Aggregates
## 4765                                                   Aggregates
## 4766                                                   Aggregates
## 4767                                                   Aggregates
## 4768                                                   Aggregates
## 4769                                                   Aggregates
## 4770                                                   Aggregates
## 4771                                                   Aggregates
## 4772                                                   Aggregates
## 4773                                                   Aggregates
## 4774                                                   Aggregates
## 4775                                                   Aggregates
## 4776                                                   Aggregates
## 4777                                                   Aggregates
## 4778                                                   Aggregates
## 4779                                                   Aggregates
## 4780                                                   Aggregates
## 4781                                                   Aggregates
## 4782                                                   Aggregates
## 4783                                                   Aggregates
## 4784                                                   Aggregates
## 4785                                                   Aggregates
## 4786                                                   Aggregates
## 4787                                                   Aggregates
## 4788                                                   Aggregates
## 4789                                                   Aggregates
## 4790                                                   Aggregates
## 4791                                                   Aggregates
## 4792                                                   Aggregates
## 4793                                                   Aggregates
## 4794                                                   Aggregates
## 4795                                                   Aggregates
## 4796                                                   Aggregates
## 4797                                                   Aggregates
## 4798                                                   Aggregates
## 4799                                                   Aggregates
## 4800                                                   Aggregates
## 4801                                                   Aggregates
## 4802                                                   Aggregates
## 4803                                                   Aggregates
## 4804                                                   Aggregates
## 4805                                                   Aggregates
## 4806                                                   Aggregates
## 4807                                                   Aggregates
## 4808                                                   Aggregates
## 4809                                                   Aggregates
## 4810                                                   Aggregates
## 4811                                                   Aggregates
## 4812                                                   Aggregates
## 4813                                                   Aggregates
## 4814                                                   Aggregates
## 4815                                                   Aggregates
## 4816                                                   Aggregates
## 4817                                                   Aggregates
## 4818                                                   Aggregates
## 4819                                                   Aggregates
## 4820                                                   Aggregates
## 4821                                                   Aggregates
## 4822                                                   Aggregates
## 4823                                                   Aggregates
## 4824                                                   Aggregates
## 4825                                                   Aggregates
## 4826                                                   Aggregates
## 4827                                                   Aggregates
## 4828                                                   Aggregates
## 4829                                                   Aggregates
## 4830                                                   Aggregates
## 4831                                                   Aggregates
## 4832                                                   Aggregates
## 4833                                                   Aggregates
## 4834                                                   Aggregates
## 4835                                                   Aggregates
## 4836                                                   Aggregates
## 4837                                                   Aggregates
## 4838                                                   Aggregates
## 4839                                                   Aggregates
## 4840                                                   Aggregates
## 4841                                                   Aggregates
## 4842                                                   Aggregates
## 4843                                                   Aggregates
## 4844                                                   Aggregates
## 4845                                                   Aggregates
## 4846                                                   Aggregates
## 4847                                                   Aggregates
## 4848                                                   Aggregates
## 4849                                                   Aggregates
## 4850                                                   Aggregates
## 4851                                                   Aggregates
## 4852                                                   Aggregates
## 4853                                                   Aggregates
## 4854                                                   Aggregates
## 4855                                                   Aggregates
## 4856                                                   Aggregates
## 4857                                                   Aggregates
## 4858                                                   Aggregates
## 4859                                                   Aggregates
## 4860                                                   Aggregates
## 4861                                                   Aggregates
## 4862                                                   Aggregates
## 4863                                                   Aggregates
## 4864                                                   Aggregates
## 4865                                                   Aggregates
## 4866                                                   Aggregates
## 4867                                                   Aggregates
## 4868                                                   Aggregates
## 4869                                                   Aggregates
## 4870                                                   Aggregates
## 4871                                                   Aggregates
## 4872                                                   Aggregates
## 4873                                                   Aggregates
## 4874                                                   Aggregates
## 4875                                                   Aggregates
## 4876                                                   Aggregates
## 4877                                                   Aggregates
## 4878                                                   Aggregates
## 4879                                                   Aggregates
## 4880                                                   Aggregates
## 4881                                                   Aggregates
## 4882                                                   Aggregates
## 4883                                                   Aggregates
## 4884                                                   Aggregates
## 4885                                                   Aggregates
## 4886                                                   Aggregates
## 4887                                                   Aggregates
## 4888                                                   Aggregates
## 4889                                                   Aggregates
## 4890                                                   Aggregates
## 4891                                                   Aggregates
## 4892                                                   Aggregates
## 4893                                                   Aggregates
## 4894                                                   Aggregates
## 4895                                                   Aggregates
## 4896                                                   Aggregates
## 4897                                                   Aggregates
## 4898                                                   Aggregates
## 4899            Torshavn   -6.91181   61.8926         High income
## 4900            Torshavn   -6.91181   61.8926         High income
## 4901            Torshavn   -6.91181   61.8926         High income
## 4902            Torshavn   -6.91181   61.8926         High income
## 4903            Torshavn   -6.91181   61.8926         High income
## 4904            Torshavn   -6.91181   61.8926         High income
## 4905            Torshavn   -6.91181   61.8926         High income
## 4906            Torshavn   -6.91181   61.8926         High income
## 4907            Torshavn   -6.91181   61.8926         High income
## 4908            Torshavn   -6.91181   61.8926         High income
## 4909            Torshavn   -6.91181   61.8926         High income
## 4910            Torshavn   -6.91181   61.8926         High income
## 4911            Torshavn   -6.91181   61.8926         High income
## 4912            Torshavn   -6.91181   61.8926         High income
## 4913            Torshavn   -6.91181   61.8926         High income
## 4914            Torshavn   -6.91181   61.8926         High income
## 4915            Torshavn   -6.91181   61.8926         High income
## 4916            Torshavn   -6.91181   61.8926         High income
## 4917            Torshavn   -6.91181   61.8926         High income
## 4918            Torshavn   -6.91181   61.8926         High income
## 4919            Torshavn   -6.91181   61.8926         High income
## 4920            Torshavn   -6.91181   61.8926         High income
## 4921            Torshavn   -6.91181   61.8926         High income
## 4922            Torshavn   -6.91181   61.8926         High income
## 4923            Torshavn   -6.91181   61.8926         High income
## 4924            Torshavn   -6.91181   61.8926         High income
## 4925            Torshavn   -6.91181   61.8926         High income
## 4926            Torshavn   -6.91181   61.8926         High income
## 4927            Torshavn   -6.91181   61.8926         High income
## 4928            Torshavn   -6.91181   61.8926         High income
## 4929            Torshavn   -6.91181   61.8926         High income
## 4930            Torshavn   -6.91181   61.8926         High income
## 4931            Torshavn   -6.91181   61.8926         High income
## 4932            Torshavn   -6.91181   61.8926         High income
## 4933            Torshavn   -6.91181   61.8926         High income
## 4934            Torshavn   -6.91181   61.8926         High income
## 4935            Torshavn   -6.91181   61.8926         High income
## 4936            Torshavn   -6.91181   61.8926         High income
## 4937            Torshavn   -6.91181   61.8926         High income
## 4938            Torshavn   -6.91181   61.8926         High income
## 4939            Torshavn   -6.91181   61.8926         High income
## 4940            Torshavn   -6.91181   61.8926         High income
## 4941            Torshavn   -6.91181   61.8926         High income
## 4942            Torshavn   -6.91181   61.8926         High income
## 4943            Torshavn   -6.91181   61.8926         High income
## 4944            Torshavn   -6.91181   61.8926         High income
## 4945            Torshavn   -6.91181   61.8926         High income
## 4946            Torshavn   -6.91181   61.8926         High income
## 4947            Torshavn   -6.91181   61.8926         High income
## 4948            Torshavn   -6.91181   61.8926         High income
## 4949            Torshavn   -6.91181   61.8926         High income
## 4950            Torshavn   -6.91181   61.8926         High income
## 4951            Torshavn   -6.91181   61.8926         High income
## 4952            Torshavn   -6.91181   61.8926         High income
## 4953            Torshavn   -6.91181   61.8926         High income
## 4954            Torshavn   -6.91181   61.8926         High income
## 4955            Torshavn   -6.91181   61.8926         High income
## 4956            Torshavn   -6.91181   61.8926         High income
## 4957            Torshavn   -6.91181   61.8926         High income
## 4958            Torshavn   -6.91181   61.8926         High income
## 4959            Torshavn   -6.91181   61.8926         High income
## 4960            Torshavn   -6.91181   61.8926         High income
## 4961                Suva    178.399  -18.1149 Upper middle income
## 4962                Suva    178.399  -18.1149 Upper middle income
## 4963                Suva    178.399  -18.1149 Upper middle income
## 4964                Suva    178.399  -18.1149 Upper middle income
## 4965                Suva    178.399  -18.1149 Upper middle income
## 4966                Suva    178.399  -18.1149 Upper middle income
## 4967                Suva    178.399  -18.1149 Upper middle income
## 4968                Suva    178.399  -18.1149 Upper middle income
## 4969                Suva    178.399  -18.1149 Upper middle income
## 4970                Suva    178.399  -18.1149 Upper middle income
## 4971                Suva    178.399  -18.1149 Upper middle income
## 4972                Suva    178.399  -18.1149 Upper middle income
## 4973                Suva    178.399  -18.1149 Upper middle income
## 4974                Suva    178.399  -18.1149 Upper middle income
## 4975                Suva    178.399  -18.1149 Upper middle income
## 4976                Suva    178.399  -18.1149 Upper middle income
## 4977                Suva    178.399  -18.1149 Upper middle income
## 4978                Suva    178.399  -18.1149 Upper middle income
## 4979                Suva    178.399  -18.1149 Upper middle income
## 4980                Suva    178.399  -18.1149 Upper middle income
## 4981                Suva    178.399  -18.1149 Upper middle income
## 4982                Suva    178.399  -18.1149 Upper middle income
## 4983                Suva    178.399  -18.1149 Upper middle income
## 4984                Suva    178.399  -18.1149 Upper middle income
## 4985                Suva    178.399  -18.1149 Upper middle income
## 4986                Suva    178.399  -18.1149 Upper middle income
## 4987                Suva    178.399  -18.1149 Upper middle income
## 4988                Suva    178.399  -18.1149 Upper middle income
## 4989                Suva    178.399  -18.1149 Upper middle income
## 4990                Suva    178.399  -18.1149 Upper middle income
## 4991                Suva    178.399  -18.1149 Upper middle income
## 4992                Suva    178.399  -18.1149 Upper middle income
## 4993                Suva    178.399  -18.1149 Upper middle income
## 4994                Suva    178.399  -18.1149 Upper middle income
## 4995                Suva    178.399  -18.1149 Upper middle income
## 4996                Suva    178.399  -18.1149 Upper middle income
## 4997                Suva    178.399  -18.1149 Upper middle income
## 4998                Suva    178.399  -18.1149 Upper middle income
## 4999                Suva    178.399  -18.1149 Upper middle income
## 5000                Suva    178.399  -18.1149 Upper middle income
## 5001                Suva    178.399  -18.1149 Upper middle income
## 5002                Suva    178.399  -18.1149 Upper middle income
## 5003                Suva    178.399  -18.1149 Upper middle income
## 5004                Suva    178.399  -18.1149 Upper middle income
## 5005                Suva    178.399  -18.1149 Upper middle income
## 5006                Suva    178.399  -18.1149 Upper middle income
## 5007                Suva    178.399  -18.1149 Upper middle income
## 5008                Suva    178.399  -18.1149 Upper middle income
## 5009                Suva    178.399  -18.1149 Upper middle income
## 5010                Suva    178.399  -18.1149 Upper middle income
## 5011                Suva    178.399  -18.1149 Upper middle income
## 5012                Suva    178.399  -18.1149 Upper middle income
## 5013                Suva    178.399  -18.1149 Upper middle income
## 5014                Suva    178.399  -18.1149 Upper middle income
## 5015                Suva    178.399  -18.1149 Upper middle income
## 5016                Suva    178.399  -18.1149 Upper middle income
## 5017                Suva    178.399  -18.1149 Upper middle income
## 5018                Suva    178.399  -18.1149 Upper middle income
## 5019                Suva    178.399  -18.1149 Upper middle income
## 5020                Suva    178.399  -18.1149 Upper middle income
## 5021                Suva    178.399  -18.1149 Upper middle income
## 5022                Suva    178.399  -18.1149 Upper middle income
## 5023            Helsinki    24.9525   60.1608         High income
## 5024            Helsinki    24.9525   60.1608         High income
## 5025            Helsinki    24.9525   60.1608         High income
## 5026            Helsinki    24.9525   60.1608         High income
## 5027            Helsinki    24.9525   60.1608         High income
## 5028            Helsinki    24.9525   60.1608         High income
## 5029            Helsinki    24.9525   60.1608         High income
## 5030            Helsinki    24.9525   60.1608         High income
## 5031            Helsinki    24.9525   60.1608         High income
## 5032            Helsinki    24.9525   60.1608         High income
## 5033            Helsinki    24.9525   60.1608         High income
## 5034            Helsinki    24.9525   60.1608         High income
## 5035            Helsinki    24.9525   60.1608         High income
## 5036            Helsinki    24.9525   60.1608         High income
## 5037            Helsinki    24.9525   60.1608         High income
## 5038            Helsinki    24.9525   60.1608         High income
## 5039            Helsinki    24.9525   60.1608         High income
## 5040            Helsinki    24.9525   60.1608         High income
## 5041            Helsinki    24.9525   60.1608         High income
## 5042            Helsinki    24.9525   60.1608         High income
## 5043            Helsinki    24.9525   60.1608         High income
## 5044            Helsinki    24.9525   60.1608         High income
## 5045            Helsinki    24.9525   60.1608         High income
## 5046            Helsinki    24.9525   60.1608         High income
## 5047            Helsinki    24.9525   60.1608         High income
## 5048            Helsinki    24.9525   60.1608         High income
## 5049            Helsinki    24.9525   60.1608         High income
## 5050            Helsinki    24.9525   60.1608         High income
## 5051            Helsinki    24.9525   60.1608         High income
## 5052            Helsinki    24.9525   60.1608         High income
## 5053            Helsinki    24.9525   60.1608         High income
## 5054            Helsinki    24.9525   60.1608         High income
## 5055            Helsinki    24.9525   60.1608         High income
## 5056            Helsinki    24.9525   60.1608         High income
## 5057            Helsinki    24.9525   60.1608         High income
## 5058            Helsinki    24.9525   60.1608         High income
## 5059            Helsinki    24.9525   60.1608         High income
## 5060            Helsinki    24.9525   60.1608         High income
## 5061            Helsinki    24.9525   60.1608         High income
## 5062            Helsinki    24.9525   60.1608         High income
## 5063            Helsinki    24.9525   60.1608         High income
## 5064            Helsinki    24.9525   60.1608         High income
## 5065            Helsinki    24.9525   60.1608         High income
## 5066            Helsinki    24.9525   60.1608         High income
## 5067            Helsinki    24.9525   60.1608         High income
## 5068            Helsinki    24.9525   60.1608         High income
## 5069            Helsinki    24.9525   60.1608         High income
## 5070            Helsinki    24.9525   60.1608         High income
## 5071            Helsinki    24.9525   60.1608         High income
## 5072            Helsinki    24.9525   60.1608         High income
## 5073            Helsinki    24.9525   60.1608         High income
## 5074            Helsinki    24.9525   60.1608         High income
## 5075            Helsinki    24.9525   60.1608         High income
## 5076            Helsinki    24.9525   60.1608         High income
## 5077            Helsinki    24.9525   60.1608         High income
## 5078            Helsinki    24.9525   60.1608         High income
## 5079            Helsinki    24.9525   60.1608         High income
## 5080            Helsinki    24.9525   60.1608         High income
## 5081            Helsinki    24.9525   60.1608         High income
## 5082            Helsinki    24.9525   60.1608         High income
## 5083            Helsinki    24.9525   60.1608         High income
## 5084            Helsinki    24.9525   60.1608         High income
## 5085                                                   Aggregates
## 5086                                                   Aggregates
## 5087                                                   Aggregates
## 5088                                                   Aggregates
## 5089                                                   Aggregates
## 5090                                                   Aggregates
## 5091                                                   Aggregates
## 5092                                                   Aggregates
## 5093                                                   Aggregates
## 5094                                                   Aggregates
## 5095                                                   Aggregates
## 5096                                                   Aggregates
## 5097                                                   Aggregates
## 5098                                                   Aggregates
## 5099                                                   Aggregates
## 5100                                                   Aggregates
## 5101                                                   Aggregates
## 5102                                                   Aggregates
## 5103                                                   Aggregates
## 5104                                                   Aggregates
## 5105                                                   Aggregates
## 5106                                                   Aggregates
## 5107                                                   Aggregates
## 5108                                                   Aggregates
## 5109                                                   Aggregates
## 5110                                                   Aggregates
## 5111                                                   Aggregates
## 5112                                                   Aggregates
## 5113                                                   Aggregates
## 5114                                                   Aggregates
## 5115                                                   Aggregates
## 5116                                                   Aggregates
## 5117                                                   Aggregates
## 5118                                                   Aggregates
## 5119                                                   Aggregates
## 5120                                                   Aggregates
## 5121                                                   Aggregates
## 5122                                                   Aggregates
## 5123                                                   Aggregates
## 5124                                                   Aggregates
## 5125                                                   Aggregates
## 5126                                                   Aggregates
## 5127                                                   Aggregates
## 5128                                                   Aggregates
## 5129                                                   Aggregates
## 5130                                                   Aggregates
## 5131                                                   Aggregates
## 5132                                                   Aggregates
## 5133                                                   Aggregates
## 5134                                                   Aggregates
## 5135                                                   Aggregates
## 5136                                                   Aggregates
## 5137                                                   Aggregates
## 5138                                                   Aggregates
## 5139                                                   Aggregates
## 5140                                                   Aggregates
## 5141                                                   Aggregates
## 5142                                                   Aggregates
## 5143                                                   Aggregates
## 5144                                                   Aggregates
## 5145                                                   Aggregates
## 5146                                                   Aggregates
## 5147               Paris    2.35097   48.8566         High income
## 5148               Paris    2.35097   48.8566         High income
## 5149               Paris    2.35097   48.8566         High income
## 5150               Paris    2.35097   48.8566         High income
## 5151               Paris    2.35097   48.8566         High income
## 5152               Paris    2.35097   48.8566         High income
## 5153               Paris    2.35097   48.8566         High income
## 5154               Paris    2.35097   48.8566         High income
## 5155               Paris    2.35097   48.8566         High income
## 5156               Paris    2.35097   48.8566         High income
## 5157               Paris    2.35097   48.8566         High income
## 5158               Paris    2.35097   48.8566         High income
## 5159               Paris    2.35097   48.8566         High income
## 5160               Paris    2.35097   48.8566         High income
## 5161               Paris    2.35097   48.8566         High income
## 5162               Paris    2.35097   48.8566         High income
## 5163               Paris    2.35097   48.8566         High income
## 5164               Paris    2.35097   48.8566         High income
## 5165               Paris    2.35097   48.8566         High income
## 5166               Paris    2.35097   48.8566         High income
## 5167               Paris    2.35097   48.8566         High income
## 5168               Paris    2.35097   48.8566         High income
## 5169               Paris    2.35097   48.8566         High income
## 5170               Paris    2.35097   48.8566         High income
## 5171               Paris    2.35097   48.8566         High income
## 5172               Paris    2.35097   48.8566         High income
## 5173               Paris    2.35097   48.8566         High income
## 5174               Paris    2.35097   48.8566         High income
## 5175               Paris    2.35097   48.8566         High income
## 5176               Paris    2.35097   48.8566         High income
## 5177               Paris    2.35097   48.8566         High income
## 5178               Paris    2.35097   48.8566         High income
## 5179               Paris    2.35097   48.8566         High income
## 5180               Paris    2.35097   48.8566         High income
## 5181               Paris    2.35097   48.8566         High income
## 5182               Paris    2.35097   48.8566         High income
## 5183               Paris    2.35097   48.8566         High income
## 5184               Paris    2.35097   48.8566         High income
## 5185               Paris    2.35097   48.8566         High income
## 5186               Paris    2.35097   48.8566         High income
## 5187               Paris    2.35097   48.8566         High income
## 5188               Paris    2.35097   48.8566         High income
## 5189               Paris    2.35097   48.8566         High income
## 5190               Paris    2.35097   48.8566         High income
## 5191               Paris    2.35097   48.8566         High income
## 5192               Paris    2.35097   48.8566         High income
## 5193               Paris    2.35097   48.8566         High income
## 5194               Paris    2.35097   48.8566         High income
## 5195               Paris    2.35097   48.8566         High income
## 5196               Paris    2.35097   48.8566         High income
## 5197               Paris    2.35097   48.8566         High income
## 5198               Paris    2.35097   48.8566         High income
## 5199               Paris    2.35097   48.8566         High income
## 5200               Paris    2.35097   48.8566         High income
## 5201               Paris    2.35097   48.8566         High income
## 5202               Paris    2.35097   48.8566         High income
## 5203               Paris    2.35097   48.8566         High income
## 5204               Paris    2.35097   48.8566         High income
## 5205               Paris    2.35097   48.8566         High income
## 5206               Paris    2.35097   48.8566         High income
## 5207               Paris    2.35097   48.8566         High income
## 5208               Paris    2.35097   48.8566         High income
## 5209             Papeete    -149.57   -17.535         High income
## 5210             Papeete    -149.57   -17.535         High income
## 5211             Papeete    -149.57   -17.535         High income
## 5212             Papeete    -149.57   -17.535         High income
## 5213             Papeete    -149.57   -17.535         High income
## 5214             Papeete    -149.57   -17.535         High income
## 5215             Papeete    -149.57   -17.535         High income
## 5216             Papeete    -149.57   -17.535         High income
## 5217             Papeete    -149.57   -17.535         High income
## 5218             Papeete    -149.57   -17.535         High income
## 5219             Papeete    -149.57   -17.535         High income
## 5220             Papeete    -149.57   -17.535         High income
## 5221             Papeete    -149.57   -17.535         High income
## 5222             Papeete    -149.57   -17.535         High income
## 5223             Papeete    -149.57   -17.535         High income
## 5224             Papeete    -149.57   -17.535         High income
## 5225             Papeete    -149.57   -17.535         High income
## 5226             Papeete    -149.57   -17.535         High income
## 5227             Papeete    -149.57   -17.535         High income
## 5228             Papeete    -149.57   -17.535         High income
## 5229             Papeete    -149.57   -17.535         High income
## 5230             Papeete    -149.57   -17.535         High income
## 5231             Papeete    -149.57   -17.535         High income
## 5232             Papeete    -149.57   -17.535         High income
## 5233             Papeete    -149.57   -17.535         High income
## 5234             Papeete    -149.57   -17.535         High income
## 5235             Papeete    -149.57   -17.535         High income
## 5236             Papeete    -149.57   -17.535         High income
## 5237             Papeete    -149.57   -17.535         High income
## 5238             Papeete    -149.57   -17.535         High income
## 5239             Papeete    -149.57   -17.535         High income
## 5240             Papeete    -149.57   -17.535         High income
## 5241             Papeete    -149.57   -17.535         High income
## 5242             Papeete    -149.57   -17.535         High income
## 5243             Papeete    -149.57   -17.535         High income
## 5244             Papeete    -149.57   -17.535         High income
## 5245             Papeete    -149.57   -17.535         High income
## 5246             Papeete    -149.57   -17.535         High income
## 5247             Papeete    -149.57   -17.535         High income
## 5248             Papeete    -149.57   -17.535         High income
## 5249             Papeete    -149.57   -17.535         High income
## 5250             Papeete    -149.57   -17.535         High income
## 5251             Papeete    -149.57   -17.535         High income
## 5252             Papeete    -149.57   -17.535         High income
## 5253             Papeete    -149.57   -17.535         High income
## 5254             Papeete    -149.57   -17.535         High income
## 5255             Papeete    -149.57   -17.535         High income
## 5256             Papeete    -149.57   -17.535         High income
## 5257             Papeete    -149.57   -17.535         High income
## 5258             Papeete    -149.57   -17.535         High income
## 5259             Papeete    -149.57   -17.535         High income
## 5260             Papeete    -149.57   -17.535         High income
## 5261             Papeete    -149.57   -17.535         High income
## 5262             Papeete    -149.57   -17.535         High income
## 5263             Papeete    -149.57   -17.535         High income
## 5264             Papeete    -149.57   -17.535         High income
## 5265             Papeete    -149.57   -17.535         High income
## 5266             Papeete    -149.57   -17.535         High income
## 5267             Papeete    -149.57   -17.535         High income
## 5268             Papeete    -149.57   -17.535         High income
## 5269             Papeete    -149.57   -17.535         High income
## 5270             Papeete    -149.57   -17.535         High income
## 5271          Libreville    9.45162   0.38832 Upper middle income
## 5272          Libreville    9.45162   0.38832 Upper middle income
## 5273          Libreville    9.45162   0.38832 Upper middle income
## 5274          Libreville    9.45162   0.38832 Upper middle income
## 5275          Libreville    9.45162   0.38832 Upper middle income
## 5276          Libreville    9.45162   0.38832 Upper middle income
## 5277          Libreville    9.45162   0.38832 Upper middle income
## 5278          Libreville    9.45162   0.38832 Upper middle income
## 5279          Libreville    9.45162   0.38832 Upper middle income
## 5280          Libreville    9.45162   0.38832 Upper middle income
## 5281          Libreville    9.45162   0.38832 Upper middle income
## 5282          Libreville    9.45162   0.38832 Upper middle income
## 5283          Libreville    9.45162   0.38832 Upper middle income
## 5284          Libreville    9.45162   0.38832 Upper middle income
## 5285          Libreville    9.45162   0.38832 Upper middle income
## 5286          Libreville    9.45162   0.38832 Upper middle income
## 5287          Libreville    9.45162   0.38832 Upper middle income
## 5288          Libreville    9.45162   0.38832 Upper middle income
## 5289          Libreville    9.45162   0.38832 Upper middle income
## 5290          Libreville    9.45162   0.38832 Upper middle income
## 5291          Libreville    9.45162   0.38832 Upper middle income
## 5292          Libreville    9.45162   0.38832 Upper middle income
## 5293          Libreville    9.45162   0.38832 Upper middle income
## 5294          Libreville    9.45162   0.38832 Upper middle income
## 5295          Libreville    9.45162   0.38832 Upper middle income
## 5296          Libreville    9.45162   0.38832 Upper middle income
## 5297          Libreville    9.45162   0.38832 Upper middle income
## 5298          Libreville    9.45162   0.38832 Upper middle income
## 5299          Libreville    9.45162   0.38832 Upper middle income
## 5300          Libreville    9.45162   0.38832 Upper middle income
## 5301          Libreville    9.45162   0.38832 Upper middle income
## 5302          Libreville    9.45162   0.38832 Upper middle income
## 5303          Libreville    9.45162   0.38832 Upper middle income
## 5304          Libreville    9.45162   0.38832 Upper middle income
## 5305          Libreville    9.45162   0.38832 Upper middle income
## 5306          Libreville    9.45162   0.38832 Upper middle income
## 5307          Libreville    9.45162   0.38832 Upper middle income
## 5308          Libreville    9.45162   0.38832 Upper middle income
## 5309          Libreville    9.45162   0.38832 Upper middle income
## 5310          Libreville    9.45162   0.38832 Upper middle income
## 5311          Libreville    9.45162   0.38832 Upper middle income
## 5312          Libreville    9.45162   0.38832 Upper middle income
## 5313          Libreville    9.45162   0.38832 Upper middle income
## 5314          Libreville    9.45162   0.38832 Upper middle income
## 5315          Libreville    9.45162   0.38832 Upper middle income
## 5316          Libreville    9.45162   0.38832 Upper middle income
## 5317          Libreville    9.45162   0.38832 Upper middle income
## 5318          Libreville    9.45162   0.38832 Upper middle income
## 5319          Libreville    9.45162   0.38832 Upper middle income
## 5320          Libreville    9.45162   0.38832 Upper middle income
## 5321          Libreville    9.45162   0.38832 Upper middle income
## 5322          Libreville    9.45162   0.38832 Upper middle income
## 5323          Libreville    9.45162   0.38832 Upper middle income
## 5324          Libreville    9.45162   0.38832 Upper middle income
## 5325          Libreville    9.45162   0.38832 Upper middle income
## 5326          Libreville    9.45162   0.38832 Upper middle income
## 5327          Libreville    9.45162   0.38832 Upper middle income
## 5328          Libreville    9.45162   0.38832 Upper middle income
## 5329          Libreville    9.45162   0.38832 Upper middle income
## 5330          Libreville    9.45162   0.38832 Upper middle income
## 5331          Libreville    9.45162   0.38832 Upper middle income
## 5332          Libreville    9.45162   0.38832 Upper middle income
## 5333              Banjul   -16.5885   13.4495          Low income
## 5334              Banjul   -16.5885   13.4495          Low income
## 5335              Banjul   -16.5885   13.4495          Low income
## 5336              Banjul   -16.5885   13.4495          Low income
## 5337              Banjul   -16.5885   13.4495          Low income
## 5338              Banjul   -16.5885   13.4495          Low income
## 5339              Banjul   -16.5885   13.4495          Low income
## 5340              Banjul   -16.5885   13.4495          Low income
## 5341              Banjul   -16.5885   13.4495          Low income
## 5342              Banjul   -16.5885   13.4495          Low income
## 5343              Banjul   -16.5885   13.4495          Low income
## 5344              Banjul   -16.5885   13.4495          Low income
## 5345              Banjul   -16.5885   13.4495          Low income
## 5346              Banjul   -16.5885   13.4495          Low income
## 5347              Banjul   -16.5885   13.4495          Low income
## 5348              Banjul   -16.5885   13.4495          Low income
## 5349              Banjul   -16.5885   13.4495          Low income
## 5350              Banjul   -16.5885   13.4495          Low income
## 5351              Banjul   -16.5885   13.4495          Low income
## 5352              Banjul   -16.5885   13.4495          Low income
## 5353              Banjul   -16.5885   13.4495          Low income
## 5354              Banjul   -16.5885   13.4495          Low income
## 5355              Banjul   -16.5885   13.4495          Low income
## 5356              Banjul   -16.5885   13.4495          Low income
## 5357              Banjul   -16.5885   13.4495          Low income
## 5358              Banjul   -16.5885   13.4495          Low income
## 5359              Banjul   -16.5885   13.4495          Low income
## 5360              Banjul   -16.5885   13.4495          Low income
## 5361              Banjul   -16.5885   13.4495          Low income
## 5362              Banjul   -16.5885   13.4495          Low income
## 5363              Banjul   -16.5885   13.4495          Low income
## 5364              Banjul   -16.5885   13.4495          Low income
## 5365              Banjul   -16.5885   13.4495          Low income
## 5366              Banjul   -16.5885   13.4495          Low income
## 5367              Banjul   -16.5885   13.4495          Low income
## 5368              Banjul   -16.5885   13.4495          Low income
## 5369              Banjul   -16.5885   13.4495          Low income
## 5370              Banjul   -16.5885   13.4495          Low income
## 5371              Banjul   -16.5885   13.4495          Low income
## 5372              Banjul   -16.5885   13.4495          Low income
## 5373              Banjul   -16.5885   13.4495          Low income
## 5374              Banjul   -16.5885   13.4495          Low income
## 5375              Banjul   -16.5885   13.4495          Low income
## 5376              Banjul   -16.5885   13.4495          Low income
## 5377              Banjul   -16.5885   13.4495          Low income
## 5378              Banjul   -16.5885   13.4495          Low income
## 5379              Banjul   -16.5885   13.4495          Low income
## 5380              Banjul   -16.5885   13.4495          Low income
## 5381              Banjul   -16.5885   13.4495          Low income
## 5382              Banjul   -16.5885   13.4495          Low income
## 5383              Banjul   -16.5885   13.4495          Low income
## 5384              Banjul   -16.5885   13.4495          Low income
## 5385              Banjul   -16.5885   13.4495          Low income
## 5386              Banjul   -16.5885   13.4495          Low income
## 5387              Banjul   -16.5885   13.4495          Low income
## 5388              Banjul   -16.5885   13.4495          Low income
## 5389              Banjul   -16.5885   13.4495          Low income
## 5390              Banjul   -16.5885   13.4495          Low income
## 5391              Banjul   -16.5885   13.4495          Low income
## 5392              Banjul   -16.5885   13.4495          Low income
## 5393              Banjul   -16.5885   13.4495          Low income
## 5394              Banjul   -16.5885   13.4495          Low income
## 5395             Tbilisi     44.793     41.71 Upper middle income
## 5396             Tbilisi     44.793     41.71 Upper middle income
## 5397             Tbilisi     44.793     41.71 Upper middle income
## 5398             Tbilisi     44.793     41.71 Upper middle income
## 5399             Tbilisi     44.793     41.71 Upper middle income
## 5400             Tbilisi     44.793     41.71 Upper middle income
## 5401             Tbilisi     44.793     41.71 Upper middle income
## 5402             Tbilisi     44.793     41.71 Upper middle income
## 5403             Tbilisi     44.793     41.71 Upper middle income
## 5404             Tbilisi     44.793     41.71 Upper middle income
## 5405             Tbilisi     44.793     41.71 Upper middle income
## 5406             Tbilisi     44.793     41.71 Upper middle income
## 5407             Tbilisi     44.793     41.71 Upper middle income
## 5408             Tbilisi     44.793     41.71 Upper middle income
## 5409             Tbilisi     44.793     41.71 Upper middle income
## 5410             Tbilisi     44.793     41.71 Upper middle income
## 5411             Tbilisi     44.793     41.71 Upper middle income
## 5412             Tbilisi     44.793     41.71 Upper middle income
## 5413             Tbilisi     44.793     41.71 Upper middle income
## 5414             Tbilisi     44.793     41.71 Upper middle income
## 5415             Tbilisi     44.793     41.71 Upper middle income
## 5416             Tbilisi     44.793     41.71 Upper middle income
## 5417             Tbilisi     44.793     41.71 Upper middle income
## 5418             Tbilisi     44.793     41.71 Upper middle income
## 5419             Tbilisi     44.793     41.71 Upper middle income
## 5420             Tbilisi     44.793     41.71 Upper middle income
## 5421             Tbilisi     44.793     41.71 Upper middle income
## 5422             Tbilisi     44.793     41.71 Upper middle income
## 5423             Tbilisi     44.793     41.71 Upper middle income
## 5424             Tbilisi     44.793     41.71 Upper middle income
## 5425             Tbilisi     44.793     41.71 Upper middle income
## 5426             Tbilisi     44.793     41.71 Upper middle income
## 5427             Tbilisi     44.793     41.71 Upper middle income
## 5428             Tbilisi     44.793     41.71 Upper middle income
## 5429             Tbilisi     44.793     41.71 Upper middle income
## 5430             Tbilisi     44.793     41.71 Upper middle income
## 5431             Tbilisi     44.793     41.71 Upper middle income
## 5432             Tbilisi     44.793     41.71 Upper middle income
## 5433             Tbilisi     44.793     41.71 Upper middle income
## 5434             Tbilisi     44.793     41.71 Upper middle income
## 5435             Tbilisi     44.793     41.71 Upper middle income
## 5436             Tbilisi     44.793     41.71 Upper middle income
## 5437             Tbilisi     44.793     41.71 Upper middle income
## 5438             Tbilisi     44.793     41.71 Upper middle income
## 5439             Tbilisi     44.793     41.71 Upper middle income
## 5440             Tbilisi     44.793     41.71 Upper middle income
## 5441             Tbilisi     44.793     41.71 Upper middle income
## 5442             Tbilisi     44.793     41.71 Upper middle income
## 5443             Tbilisi     44.793     41.71 Upper middle income
## 5444             Tbilisi     44.793     41.71 Upper middle income
## 5445             Tbilisi     44.793     41.71 Upper middle income
## 5446             Tbilisi     44.793     41.71 Upper middle income
## 5447             Tbilisi     44.793     41.71 Upper middle income
## 5448             Tbilisi     44.793     41.71 Upper middle income
## 5449             Tbilisi     44.793     41.71 Upper middle income
## 5450             Tbilisi     44.793     41.71 Upper middle income
## 5451             Tbilisi     44.793     41.71 Upper middle income
## 5452             Tbilisi     44.793     41.71 Upper middle income
## 5453             Tbilisi     44.793     41.71 Upper middle income
## 5454             Tbilisi     44.793     41.71 Upper middle income
## 5455             Tbilisi     44.793     41.71 Upper middle income
## 5456             Tbilisi     44.793     41.71 Upper middle income
## 5457              Berlin    13.4115   52.5235         High income
## 5458              Berlin    13.4115   52.5235         High income
## 5459              Berlin    13.4115   52.5235         High income
## 5460              Berlin    13.4115   52.5235         High income
## 5461              Berlin    13.4115   52.5235         High income
## 5462              Berlin    13.4115   52.5235         High income
## 5463              Berlin    13.4115   52.5235         High income
## 5464              Berlin    13.4115   52.5235         High income
## 5465              Berlin    13.4115   52.5235         High income
## 5466              Berlin    13.4115   52.5235         High income
## 5467              Berlin    13.4115   52.5235         High income
## 5468              Berlin    13.4115   52.5235         High income
## 5469              Berlin    13.4115   52.5235         High income
## 5470              Berlin    13.4115   52.5235         High income
## 5471              Berlin    13.4115   52.5235         High income
## 5472              Berlin    13.4115   52.5235         High income
## 5473              Berlin    13.4115   52.5235         High income
## 5474              Berlin    13.4115   52.5235         High income
## 5475              Berlin    13.4115   52.5235         High income
## 5476              Berlin    13.4115   52.5235         High income
## 5477              Berlin    13.4115   52.5235         High income
## 5478              Berlin    13.4115   52.5235         High income
## 5479              Berlin    13.4115   52.5235         High income
## 5480              Berlin    13.4115   52.5235         High income
## 5481              Berlin    13.4115   52.5235         High income
## 5482              Berlin    13.4115   52.5235         High income
## 5483              Berlin    13.4115   52.5235         High income
## 5484              Berlin    13.4115   52.5235         High income
## 5485              Berlin    13.4115   52.5235         High income
## 5486              Berlin    13.4115   52.5235         High income
## 5487              Berlin    13.4115   52.5235         High income
## 5488              Berlin    13.4115   52.5235         High income
## 5489              Berlin    13.4115   52.5235         High income
## 5490              Berlin    13.4115   52.5235         High income
## 5491              Berlin    13.4115   52.5235         High income
## 5492              Berlin    13.4115   52.5235         High income
## 5493              Berlin    13.4115   52.5235         High income
## 5494              Berlin    13.4115   52.5235         High income
## 5495              Berlin    13.4115   52.5235         High income
## 5496              Berlin    13.4115   52.5235         High income
## 5497              Berlin    13.4115   52.5235         High income
## 5498              Berlin    13.4115   52.5235         High income
## 5499              Berlin    13.4115   52.5235         High income
## 5500              Berlin    13.4115   52.5235         High income
## 5501              Berlin    13.4115   52.5235         High income
## 5502              Berlin    13.4115   52.5235         High income
## 5503              Berlin    13.4115   52.5235         High income
## 5504              Berlin    13.4115   52.5235         High income
## 5505              Berlin    13.4115   52.5235         High income
## 5506              Berlin    13.4115   52.5235         High income
## 5507              Berlin    13.4115   52.5235         High income
## 5508              Berlin    13.4115   52.5235         High income
## 5509              Berlin    13.4115   52.5235         High income
## 5510              Berlin    13.4115   52.5235         High income
## 5511              Berlin    13.4115   52.5235         High income
## 5512              Berlin    13.4115   52.5235         High income
## 5513              Berlin    13.4115   52.5235         High income
## 5514              Berlin    13.4115   52.5235         High income
## 5515              Berlin    13.4115   52.5235         High income
## 5516              Berlin    13.4115   52.5235         High income
## 5517              Berlin    13.4115   52.5235         High income
## 5518              Berlin    13.4115   52.5235         High income
## 5519               Accra   -0.20795   5.57045 Lower middle income
## 5520               Accra   -0.20795   5.57045 Lower middle income
## 5521               Accra   -0.20795   5.57045 Lower middle income
## 5522               Accra   -0.20795   5.57045 Lower middle income
## 5523               Accra   -0.20795   5.57045 Lower middle income
## 5524               Accra   -0.20795   5.57045 Lower middle income
## 5525               Accra   -0.20795   5.57045 Lower middle income
## 5526               Accra   -0.20795   5.57045 Lower middle income
## 5527               Accra   -0.20795   5.57045 Lower middle income
## 5528               Accra   -0.20795   5.57045 Lower middle income
## 5529               Accra   -0.20795   5.57045 Lower middle income
## 5530               Accra   -0.20795   5.57045 Lower middle income
## 5531               Accra   -0.20795   5.57045 Lower middle income
## 5532               Accra   -0.20795   5.57045 Lower middle income
## 5533               Accra   -0.20795   5.57045 Lower middle income
## 5534               Accra   -0.20795   5.57045 Lower middle income
## 5535               Accra   -0.20795   5.57045 Lower middle income
## 5536               Accra   -0.20795   5.57045 Lower middle income
## 5537               Accra   -0.20795   5.57045 Lower middle income
## 5538               Accra   -0.20795   5.57045 Lower middle income
## 5539               Accra   -0.20795   5.57045 Lower middle income
## 5540               Accra   -0.20795   5.57045 Lower middle income
## 5541               Accra   -0.20795   5.57045 Lower middle income
## 5542               Accra   -0.20795   5.57045 Lower middle income
## 5543               Accra   -0.20795   5.57045 Lower middle income
## 5544               Accra   -0.20795   5.57045 Lower middle income
## 5545               Accra   -0.20795   5.57045 Lower middle income
## 5546               Accra   -0.20795   5.57045 Lower middle income
## 5547               Accra   -0.20795   5.57045 Lower middle income
## 5548               Accra   -0.20795   5.57045 Lower middle income
## 5549               Accra   -0.20795   5.57045 Lower middle income
## 5550               Accra   -0.20795   5.57045 Lower middle income
## 5551               Accra   -0.20795   5.57045 Lower middle income
## 5552               Accra   -0.20795   5.57045 Lower middle income
## 5553               Accra   -0.20795   5.57045 Lower middle income
## 5554               Accra   -0.20795   5.57045 Lower middle income
## 5555               Accra   -0.20795   5.57045 Lower middle income
## 5556               Accra   -0.20795   5.57045 Lower middle income
## 5557               Accra   -0.20795   5.57045 Lower middle income
## 5558               Accra   -0.20795   5.57045 Lower middle income
## 5559               Accra   -0.20795   5.57045 Lower middle income
## 5560               Accra   -0.20795   5.57045 Lower middle income
## 5561               Accra   -0.20795   5.57045 Lower middle income
## 5562               Accra   -0.20795   5.57045 Lower middle income
## 5563               Accra   -0.20795   5.57045 Lower middle income
## 5564               Accra   -0.20795   5.57045 Lower middle income
## 5565               Accra   -0.20795   5.57045 Lower middle income
## 5566               Accra   -0.20795   5.57045 Lower middle income
## 5567               Accra   -0.20795   5.57045 Lower middle income
## 5568               Accra   -0.20795   5.57045 Lower middle income
## 5569               Accra   -0.20795   5.57045 Lower middle income
## 5570               Accra   -0.20795   5.57045 Lower middle income
## 5571               Accra   -0.20795   5.57045 Lower middle income
## 5572               Accra   -0.20795   5.57045 Lower middle income
## 5573               Accra   -0.20795   5.57045 Lower middle income
## 5574               Accra   -0.20795   5.57045 Lower middle income
## 5575               Accra   -0.20795   5.57045 Lower middle income
## 5576               Accra   -0.20795   5.57045 Lower middle income
## 5577               Accra   -0.20795   5.57045 Lower middle income
## 5578               Accra   -0.20795   5.57045 Lower middle income
## 5579               Accra   -0.20795   5.57045 Lower middle income
## 5580               Accra   -0.20795   5.57045 Lower middle income
## 5581                                                  High income
## 5582                                                  High income
## 5583                                                  High income
## 5584                                                  High income
## 5585                                                  High income
## 5586                                                  High income
## 5587                                                  High income
## 5588                                                  High income
## 5589                                                  High income
## 5590                                                  High income
## 5591                                                  High income
## 5592                                                  High income
## 5593                                                  High income
## 5594                                                  High income
## 5595                                                  High income
## 5596                                                  High income
## 5597                                                  High income
## 5598                                                  High income
## 5599                                                  High income
## 5600                                                  High income
## 5601                                                  High income
## 5602                                                  High income
## 5603                                                  High income
## 5604                                                  High income
## 5605                                                  High income
## 5606                                                  High income
## 5607                                                  High income
## 5608                                                  High income
## 5609                                                  High income
## 5610                                                  High income
## 5611                                                  High income
## 5612                                                  High income
## 5613                                                  High income
## 5614                                                  High income
## 5615                                                  High income
## 5616                                                  High income
## 5617                                                  High income
## 5618                                                  High income
## 5619                                                  High income
## 5620                                                  High income
## 5621                                                  High income
## 5622                                                  High income
## 5623                                                  High income
## 5624                                                  High income
## 5625                                                  High income
## 5626                                                  High income
## 5627                                                  High income
## 5628                                                  High income
## 5629                                                  High income
## 5630                                                  High income
## 5631                                                  High income
## 5632                                                  High income
## 5633                                                  High income
## 5634                                                  High income
## 5635                                                  High income
## 5636                                                  High income
## 5637                                                  High income
## 5638                                                  High income
## 5639                                                  High income
## 5640                                                  High income
## 5641                                                  High income
## 5642                                                  High income
## 5643              Athens    23.7166   37.9792         High income
## 5644              Athens    23.7166   37.9792         High income
## 5645              Athens    23.7166   37.9792         High income
## 5646              Athens    23.7166   37.9792         High income
## 5647              Athens    23.7166   37.9792         High income
## 5648              Athens    23.7166   37.9792         High income
## 5649              Athens    23.7166   37.9792         High income
## 5650              Athens    23.7166   37.9792         High income
## 5651              Athens    23.7166   37.9792         High income
## 5652              Athens    23.7166   37.9792         High income
## 5653              Athens    23.7166   37.9792         High income
## 5654              Athens    23.7166   37.9792         High income
## 5655              Athens    23.7166   37.9792         High income
## 5656              Athens    23.7166   37.9792         High income
## 5657              Athens    23.7166   37.9792         High income
## 5658              Athens    23.7166   37.9792         High income
## 5659              Athens    23.7166   37.9792         High income
## 5660              Athens    23.7166   37.9792         High income
## 5661              Athens    23.7166   37.9792         High income
## 5662              Athens    23.7166   37.9792         High income
## 5663              Athens    23.7166   37.9792         High income
## 5664              Athens    23.7166   37.9792         High income
## 5665              Athens    23.7166   37.9792         High income
## 5666              Athens    23.7166   37.9792         High income
## 5667              Athens    23.7166   37.9792         High income
## 5668              Athens    23.7166   37.9792         High income
## 5669              Athens    23.7166   37.9792         High income
## 5670              Athens    23.7166   37.9792         High income
## 5671              Athens    23.7166   37.9792         High income
## 5672              Athens    23.7166   37.9792         High income
## 5673              Athens    23.7166   37.9792         High income
## 5674              Athens    23.7166   37.9792         High income
## 5675              Athens    23.7166   37.9792         High income
## 5676              Athens    23.7166   37.9792         High income
## 5677              Athens    23.7166   37.9792         High income
## 5678              Athens    23.7166   37.9792         High income
## 5679              Athens    23.7166   37.9792         High income
## 5680              Athens    23.7166   37.9792         High income
## 5681              Athens    23.7166   37.9792         High income
## 5682              Athens    23.7166   37.9792         High income
## 5683              Athens    23.7166   37.9792         High income
## 5684              Athens    23.7166   37.9792         High income
## 5685              Athens    23.7166   37.9792         High income
## 5686              Athens    23.7166   37.9792         High income
## 5687              Athens    23.7166   37.9792         High income
## 5688              Athens    23.7166   37.9792         High income
## 5689              Athens    23.7166   37.9792         High income
## 5690              Athens    23.7166   37.9792         High income
## 5691              Athens    23.7166   37.9792         High income
## 5692              Athens    23.7166   37.9792         High income
## 5693              Athens    23.7166   37.9792         High income
## 5694              Athens    23.7166   37.9792         High income
## 5695              Athens    23.7166   37.9792         High income
## 5696              Athens    23.7166   37.9792         High income
## 5697              Athens    23.7166   37.9792         High income
## 5698              Athens    23.7166   37.9792         High income
## 5699              Athens    23.7166   37.9792         High income
## 5700              Athens    23.7166   37.9792         High income
## 5701              Athens    23.7166   37.9792         High income
## 5702              Athens    23.7166   37.9792         High income
## 5703              Athens    23.7166   37.9792         High income
## 5704              Athens    23.7166   37.9792         High income
## 5705                Nuuk   -51.7214   64.1836         High income
## 5706                Nuuk   -51.7214   64.1836         High income
## 5707                Nuuk   -51.7214   64.1836         High income
## 5708                Nuuk   -51.7214   64.1836         High income
## 5709                Nuuk   -51.7214   64.1836         High income
## 5710                Nuuk   -51.7214   64.1836         High income
## 5711                Nuuk   -51.7214   64.1836         High income
## 5712                Nuuk   -51.7214   64.1836         High income
## 5713                Nuuk   -51.7214   64.1836         High income
## 5714                Nuuk   -51.7214   64.1836         High income
## 5715                Nuuk   -51.7214   64.1836         High income
## 5716                Nuuk   -51.7214   64.1836         High income
## 5717                Nuuk   -51.7214   64.1836         High income
## 5718                Nuuk   -51.7214   64.1836         High income
## 5719                Nuuk   -51.7214   64.1836         High income
## 5720                Nuuk   -51.7214   64.1836         High income
## 5721                Nuuk   -51.7214   64.1836         High income
## 5722                Nuuk   -51.7214   64.1836         High income
## 5723                Nuuk   -51.7214   64.1836         High income
## 5724                Nuuk   -51.7214   64.1836         High income
## 5725                Nuuk   -51.7214   64.1836         High income
## 5726                Nuuk   -51.7214   64.1836         High income
## 5727                Nuuk   -51.7214   64.1836         High income
## 5728                Nuuk   -51.7214   64.1836         High income
## 5729                Nuuk   -51.7214   64.1836         High income
## 5730                Nuuk   -51.7214   64.1836         High income
## 5731                Nuuk   -51.7214   64.1836         High income
## 5732                Nuuk   -51.7214   64.1836         High income
## 5733                Nuuk   -51.7214   64.1836         High income
## 5734                Nuuk   -51.7214   64.1836         High income
## 5735                Nuuk   -51.7214   64.1836         High income
## 5736                Nuuk   -51.7214   64.1836         High income
## 5737                Nuuk   -51.7214   64.1836         High income
## 5738                Nuuk   -51.7214   64.1836         High income
## 5739                Nuuk   -51.7214   64.1836         High income
## 5740                Nuuk   -51.7214   64.1836         High income
## 5741                Nuuk   -51.7214   64.1836         High income
## 5742                Nuuk   -51.7214   64.1836         High income
## 5743                Nuuk   -51.7214   64.1836         High income
## 5744                Nuuk   -51.7214   64.1836         High income
## 5745                Nuuk   -51.7214   64.1836         High income
## 5746                Nuuk   -51.7214   64.1836         High income
## 5747                Nuuk   -51.7214   64.1836         High income
## 5748                Nuuk   -51.7214   64.1836         High income
## 5749                Nuuk   -51.7214   64.1836         High income
## 5750                Nuuk   -51.7214   64.1836         High income
## 5751                Nuuk   -51.7214   64.1836         High income
## 5752                Nuuk   -51.7214   64.1836         High income
## 5753                Nuuk   -51.7214   64.1836         High income
## 5754                Nuuk   -51.7214   64.1836         High income
## 5755                Nuuk   -51.7214   64.1836         High income
## 5756                Nuuk   -51.7214   64.1836         High income
## 5757                Nuuk   -51.7214   64.1836         High income
## 5758                Nuuk   -51.7214   64.1836         High income
## 5759                Nuuk   -51.7214   64.1836         High income
## 5760                Nuuk   -51.7214   64.1836         High income
## 5761                Nuuk   -51.7214   64.1836         High income
## 5762                Nuuk   -51.7214   64.1836         High income
## 5763                Nuuk   -51.7214   64.1836         High income
## 5764                Nuuk   -51.7214   64.1836         High income
## 5765                Nuuk   -51.7214   64.1836         High income
## 5766                Nuuk   -51.7214   64.1836         High income
## 5767      Saint George's   -61.7449   12.0653 Upper middle income
## 5768      Saint George's   -61.7449   12.0653 Upper middle income
## 5769      Saint George's   -61.7449   12.0653 Upper middle income
## 5770      Saint George's   -61.7449   12.0653 Upper middle income
## 5771      Saint George's   -61.7449   12.0653 Upper middle income
## 5772      Saint George's   -61.7449   12.0653 Upper middle income
## 5773      Saint George's   -61.7449   12.0653 Upper middle income
## 5774      Saint George's   -61.7449   12.0653 Upper middle income
## 5775      Saint George's   -61.7449   12.0653 Upper middle income
## 5776      Saint George's   -61.7449   12.0653 Upper middle income
## 5777      Saint George's   -61.7449   12.0653 Upper middle income
## 5778      Saint George's   -61.7449   12.0653 Upper middle income
## 5779      Saint George's   -61.7449   12.0653 Upper middle income
## 5780      Saint George's   -61.7449   12.0653 Upper middle income
## 5781      Saint George's   -61.7449   12.0653 Upper middle income
## 5782      Saint George's   -61.7449   12.0653 Upper middle income
## 5783      Saint George's   -61.7449   12.0653 Upper middle income
## 5784      Saint George's   -61.7449   12.0653 Upper middle income
## 5785      Saint George's   -61.7449   12.0653 Upper middle income
## 5786      Saint George's   -61.7449   12.0653 Upper middle income
## 5787      Saint George's   -61.7449   12.0653 Upper middle income
## 5788      Saint George's   -61.7449   12.0653 Upper middle income
## 5789      Saint George's   -61.7449   12.0653 Upper middle income
## 5790      Saint George's   -61.7449   12.0653 Upper middle income
## 5791      Saint George's   -61.7449   12.0653 Upper middle income
## 5792      Saint George's   -61.7449   12.0653 Upper middle income
## 5793      Saint George's   -61.7449   12.0653 Upper middle income
## 5794      Saint George's   -61.7449   12.0653 Upper middle income
## 5795      Saint George's   -61.7449   12.0653 Upper middle income
## 5796      Saint George's   -61.7449   12.0653 Upper middle income
## 5797      Saint George's   -61.7449   12.0653 Upper middle income
## 5798      Saint George's   -61.7449   12.0653 Upper middle income
## 5799      Saint George's   -61.7449   12.0653 Upper middle income
## 5800      Saint George's   -61.7449   12.0653 Upper middle income
## 5801      Saint George's   -61.7449   12.0653 Upper middle income
## 5802      Saint George's   -61.7449   12.0653 Upper middle income
## 5803      Saint George's   -61.7449   12.0653 Upper middle income
## 5804      Saint George's   -61.7449   12.0653 Upper middle income
## 5805      Saint George's   -61.7449   12.0653 Upper middle income
## 5806      Saint George's   -61.7449   12.0653 Upper middle income
## 5807      Saint George's   -61.7449   12.0653 Upper middle income
## 5808      Saint George's   -61.7449   12.0653 Upper middle income
## 5809      Saint George's   -61.7449   12.0653 Upper middle income
## 5810      Saint George's   -61.7449   12.0653 Upper middle income
## 5811      Saint George's   -61.7449   12.0653 Upper middle income
## 5812      Saint George's   -61.7449   12.0653 Upper middle income
## 5813      Saint George's   -61.7449   12.0653 Upper middle income
## 5814      Saint George's   -61.7449   12.0653 Upper middle income
## 5815      Saint George's   -61.7449   12.0653 Upper middle income
## 5816      Saint George's   -61.7449   12.0653 Upper middle income
## 5817      Saint George's   -61.7449   12.0653 Upper middle income
## 5818      Saint George's   -61.7449   12.0653 Upper middle income
## 5819      Saint George's   -61.7449   12.0653 Upper middle income
## 5820      Saint George's   -61.7449   12.0653 Upper middle income
## 5821      Saint George's   -61.7449   12.0653 Upper middle income
## 5822      Saint George's   -61.7449   12.0653 Upper middle income
## 5823      Saint George's   -61.7449   12.0653 Upper middle income
## 5824      Saint George's   -61.7449   12.0653 Upper middle income
## 5825      Saint George's   -61.7449   12.0653 Upper middle income
## 5826      Saint George's   -61.7449   12.0653 Upper middle income
## 5827      Saint George's   -61.7449   12.0653 Upper middle income
## 5828      Saint George's   -61.7449   12.0653 Upper middle income
## 5829               Agana    144.794   13.4443         High income
## 5830               Agana    144.794   13.4443         High income
## 5831               Agana    144.794   13.4443         High income
## 5832               Agana    144.794   13.4443         High income
## 5833               Agana    144.794   13.4443         High income
## 5834               Agana    144.794   13.4443         High income
## 5835               Agana    144.794   13.4443         High income
## 5836               Agana    144.794   13.4443         High income
## 5837               Agana    144.794   13.4443         High income
## 5838               Agana    144.794   13.4443         High income
## 5839               Agana    144.794   13.4443         High income
## 5840               Agana    144.794   13.4443         High income
## 5841               Agana    144.794   13.4443         High income
## 5842               Agana    144.794   13.4443         High income
## 5843               Agana    144.794   13.4443         High income
## 5844               Agana    144.794   13.4443         High income
## 5845               Agana    144.794   13.4443         High income
## 5846               Agana    144.794   13.4443         High income
## 5847               Agana    144.794   13.4443         High income
## 5848               Agana    144.794   13.4443         High income
## 5849               Agana    144.794   13.4443         High income
## 5850               Agana    144.794   13.4443         High income
## 5851               Agana    144.794   13.4443         High income
## 5852               Agana    144.794   13.4443         High income
## 5853               Agana    144.794   13.4443         High income
## 5854               Agana    144.794   13.4443         High income
## 5855               Agana    144.794   13.4443         High income
## 5856               Agana    144.794   13.4443         High income
## 5857               Agana    144.794   13.4443         High income
## 5858               Agana    144.794   13.4443         High income
## 5859               Agana    144.794   13.4443         High income
## 5860               Agana    144.794   13.4443         High income
## 5861               Agana    144.794   13.4443         High income
## 5862               Agana    144.794   13.4443         High income
## 5863               Agana    144.794   13.4443         High income
## 5864               Agana    144.794   13.4443         High income
## 5865               Agana    144.794   13.4443         High income
## 5866               Agana    144.794   13.4443         High income
## 5867               Agana    144.794   13.4443         High income
## 5868               Agana    144.794   13.4443         High income
## 5869               Agana    144.794   13.4443         High income
## 5870               Agana    144.794   13.4443         High income
## 5871               Agana    144.794   13.4443         High income
## 5872               Agana    144.794   13.4443         High income
## 5873               Agana    144.794   13.4443         High income
## 5874               Agana    144.794   13.4443         High income
## 5875               Agana    144.794   13.4443         High income
## 5876               Agana    144.794   13.4443         High income
## 5877               Agana    144.794   13.4443         High income
## 5878               Agana    144.794   13.4443         High income
## 5879               Agana    144.794   13.4443         High income
## 5880               Agana    144.794   13.4443         High income
## 5881               Agana    144.794   13.4443         High income
## 5882               Agana    144.794   13.4443         High income
## 5883               Agana    144.794   13.4443         High income
## 5884               Agana    144.794   13.4443         High income
## 5885               Agana    144.794   13.4443         High income
## 5886               Agana    144.794   13.4443         High income
## 5887               Agana    144.794   13.4443         High income
## 5888               Agana    144.794   13.4443         High income
## 5889               Agana    144.794   13.4443         High income
## 5890               Agana    144.794   13.4443         High income
## 5891      Guatemala City   -90.5328   14.6248 Upper middle income
## 5892      Guatemala City   -90.5328   14.6248 Upper middle income
## 5893      Guatemala City   -90.5328   14.6248 Upper middle income
## 5894      Guatemala City   -90.5328   14.6248 Upper middle income
## 5895      Guatemala City   -90.5328   14.6248 Upper middle income
## 5896      Guatemala City   -90.5328   14.6248 Upper middle income
## 5897      Guatemala City   -90.5328   14.6248 Upper middle income
## 5898      Guatemala City   -90.5328   14.6248 Upper middle income
## 5899      Guatemala City   -90.5328   14.6248 Upper middle income
## 5900      Guatemala City   -90.5328   14.6248 Upper middle income
## 5901      Guatemala City   -90.5328   14.6248 Upper middle income
## 5902      Guatemala City   -90.5328   14.6248 Upper middle income
## 5903      Guatemala City   -90.5328   14.6248 Upper middle income
## 5904      Guatemala City   -90.5328   14.6248 Upper middle income
## 5905      Guatemala City   -90.5328   14.6248 Upper middle income
## 5906      Guatemala City   -90.5328   14.6248 Upper middle income
## 5907      Guatemala City   -90.5328   14.6248 Upper middle income
## 5908      Guatemala City   -90.5328   14.6248 Upper middle income
## 5909      Guatemala City   -90.5328   14.6248 Upper middle income
## 5910      Guatemala City   -90.5328   14.6248 Upper middle income
## 5911      Guatemala City   -90.5328   14.6248 Upper middle income
## 5912      Guatemala City   -90.5328   14.6248 Upper middle income
## 5913      Guatemala City   -90.5328   14.6248 Upper middle income
## 5914      Guatemala City   -90.5328   14.6248 Upper middle income
## 5915      Guatemala City   -90.5328   14.6248 Upper middle income
## 5916      Guatemala City   -90.5328   14.6248 Upper middle income
## 5917      Guatemala City   -90.5328   14.6248 Upper middle income
## 5918      Guatemala City   -90.5328   14.6248 Upper middle income
## 5919      Guatemala City   -90.5328   14.6248 Upper middle income
## 5920      Guatemala City   -90.5328   14.6248 Upper middle income
## 5921      Guatemala City   -90.5328   14.6248 Upper middle income
## 5922      Guatemala City   -90.5328   14.6248 Upper middle income
## 5923      Guatemala City   -90.5328   14.6248 Upper middle income
## 5924      Guatemala City   -90.5328   14.6248 Upper middle income
## 5925      Guatemala City   -90.5328   14.6248 Upper middle income
## 5926      Guatemala City   -90.5328   14.6248 Upper middle income
## 5927      Guatemala City   -90.5328   14.6248 Upper middle income
## 5928      Guatemala City   -90.5328   14.6248 Upper middle income
## 5929      Guatemala City   -90.5328   14.6248 Upper middle income
## 5930      Guatemala City   -90.5328   14.6248 Upper middle income
## 5931      Guatemala City   -90.5328   14.6248 Upper middle income
## 5932      Guatemala City   -90.5328   14.6248 Upper middle income
## 5933      Guatemala City   -90.5328   14.6248 Upper middle income
## 5934      Guatemala City   -90.5328   14.6248 Upper middle income
## 5935      Guatemala City   -90.5328   14.6248 Upper middle income
## 5936      Guatemala City   -90.5328   14.6248 Upper middle income
## 5937      Guatemala City   -90.5328   14.6248 Upper middle income
## 5938      Guatemala City   -90.5328   14.6248 Upper middle income
## 5939      Guatemala City   -90.5328   14.6248 Upper middle income
## 5940      Guatemala City   -90.5328   14.6248 Upper middle income
## 5941      Guatemala City   -90.5328   14.6248 Upper middle income
## 5942      Guatemala City   -90.5328   14.6248 Upper middle income
## 5943      Guatemala City   -90.5328   14.6248 Upper middle income
## 5944      Guatemala City   -90.5328   14.6248 Upper middle income
## 5945      Guatemala City   -90.5328   14.6248 Upper middle income
## 5946      Guatemala City   -90.5328   14.6248 Upper middle income
## 5947      Guatemala City   -90.5328   14.6248 Upper middle income
## 5948      Guatemala City   -90.5328   14.6248 Upper middle income
## 5949      Guatemala City   -90.5328   14.6248 Upper middle income
## 5950      Guatemala City   -90.5328   14.6248 Upper middle income
## 5951      Guatemala City   -90.5328   14.6248 Upper middle income
## 5952      Guatemala City   -90.5328   14.6248 Upper middle income
## 5953             Conakry      -13.7   9.51667          Low income
## 5954             Conakry      -13.7   9.51667          Low income
## 5955             Conakry      -13.7   9.51667          Low income
## 5956             Conakry      -13.7   9.51667          Low income
## 5957             Conakry      -13.7   9.51667          Low income
## 5958             Conakry      -13.7   9.51667          Low income
## 5959             Conakry      -13.7   9.51667          Low income
## 5960             Conakry      -13.7   9.51667          Low income
## 5961             Conakry      -13.7   9.51667          Low income
## 5962             Conakry      -13.7   9.51667          Low income
## 5963             Conakry      -13.7   9.51667          Low income
## 5964             Conakry      -13.7   9.51667          Low income
## 5965             Conakry      -13.7   9.51667          Low income
## 5966             Conakry      -13.7   9.51667          Low income
## 5967             Conakry      -13.7   9.51667          Low income
## 5968             Conakry      -13.7   9.51667          Low income
## 5969             Conakry      -13.7   9.51667          Low income
## 5970             Conakry      -13.7   9.51667          Low income
## 5971             Conakry      -13.7   9.51667          Low income
## 5972             Conakry      -13.7   9.51667          Low income
## 5973             Conakry      -13.7   9.51667          Low income
## 5974             Conakry      -13.7   9.51667          Low income
## 5975             Conakry      -13.7   9.51667          Low income
## 5976             Conakry      -13.7   9.51667          Low income
## 5977             Conakry      -13.7   9.51667          Low income
## 5978             Conakry      -13.7   9.51667          Low income
## 5979             Conakry      -13.7   9.51667          Low income
## 5980             Conakry      -13.7   9.51667          Low income
## 5981             Conakry      -13.7   9.51667          Low income
## 5982             Conakry      -13.7   9.51667          Low income
## 5983             Conakry      -13.7   9.51667          Low income
## 5984             Conakry      -13.7   9.51667          Low income
## 5985             Conakry      -13.7   9.51667          Low income
## 5986             Conakry      -13.7   9.51667          Low income
## 5987             Conakry      -13.7   9.51667          Low income
## 5988             Conakry      -13.7   9.51667          Low income
## 5989             Conakry      -13.7   9.51667          Low income
## 5990             Conakry      -13.7   9.51667          Low income
## 5991             Conakry      -13.7   9.51667          Low income
## 5992             Conakry      -13.7   9.51667          Low income
## 5993             Conakry      -13.7   9.51667          Low income
## 5994             Conakry      -13.7   9.51667          Low income
## 5995             Conakry      -13.7   9.51667          Low income
## 5996             Conakry      -13.7   9.51667          Low income
## 5997             Conakry      -13.7   9.51667          Low income
## 5998             Conakry      -13.7   9.51667          Low income
## 5999             Conakry      -13.7   9.51667          Low income
## 6000             Conakry      -13.7   9.51667          Low income
## 6001             Conakry      -13.7   9.51667          Low income
## 6002             Conakry      -13.7   9.51667          Low income
## 6003             Conakry      -13.7   9.51667          Low income
## 6004             Conakry      -13.7   9.51667          Low income
## 6005             Conakry      -13.7   9.51667          Low income
## 6006             Conakry      -13.7   9.51667          Low income
## 6007             Conakry      -13.7   9.51667          Low income
## 6008             Conakry      -13.7   9.51667          Low income
## 6009             Conakry      -13.7   9.51667          Low income
## 6010             Conakry      -13.7   9.51667          Low income
## 6011             Conakry      -13.7   9.51667          Low income
## 6012             Conakry      -13.7   9.51667          Low income
## 6013             Conakry      -13.7   9.51667          Low income
## 6014             Conakry      -13.7   9.51667          Low income
## 6015              Bissau   -15.1804   11.8037          Low income
## 6016              Bissau   -15.1804   11.8037          Low income
## 6017              Bissau   -15.1804   11.8037          Low income
## 6018              Bissau   -15.1804   11.8037          Low income
## 6019              Bissau   -15.1804   11.8037          Low income
## 6020              Bissau   -15.1804   11.8037          Low income
## 6021              Bissau   -15.1804   11.8037          Low income
## 6022              Bissau   -15.1804   11.8037          Low income
## 6023              Bissau   -15.1804   11.8037          Low income
## 6024              Bissau   -15.1804   11.8037          Low income
## 6025              Bissau   -15.1804   11.8037          Low income
## 6026              Bissau   -15.1804   11.8037          Low income
## 6027              Bissau   -15.1804   11.8037          Low income
## 6028              Bissau   -15.1804   11.8037          Low income
## 6029              Bissau   -15.1804   11.8037          Low income
## 6030              Bissau   -15.1804   11.8037          Low income
## 6031              Bissau   -15.1804   11.8037          Low income
## 6032              Bissau   -15.1804   11.8037          Low income
## 6033              Bissau   -15.1804   11.8037          Low income
## 6034              Bissau   -15.1804   11.8037          Low income
## 6035              Bissau   -15.1804   11.8037          Low income
## 6036              Bissau   -15.1804   11.8037          Low income
## 6037              Bissau   -15.1804   11.8037          Low income
## 6038              Bissau   -15.1804   11.8037          Low income
## 6039              Bissau   -15.1804   11.8037          Low income
## 6040              Bissau   -15.1804   11.8037          Low income
## 6041              Bissau   -15.1804   11.8037          Low income
## 6042              Bissau   -15.1804   11.8037          Low income
## 6043              Bissau   -15.1804   11.8037          Low income
## 6044              Bissau   -15.1804   11.8037          Low income
## 6045              Bissau   -15.1804   11.8037          Low income
## 6046              Bissau   -15.1804   11.8037          Low income
## 6047              Bissau   -15.1804   11.8037          Low income
## 6048              Bissau   -15.1804   11.8037          Low income
## 6049              Bissau   -15.1804   11.8037          Low income
## 6050              Bissau   -15.1804   11.8037          Low income
## 6051              Bissau   -15.1804   11.8037          Low income
## 6052              Bissau   -15.1804   11.8037          Low income
## 6053              Bissau   -15.1804   11.8037          Low income
## 6054              Bissau   -15.1804   11.8037          Low income
## 6055              Bissau   -15.1804   11.8037          Low income
## 6056              Bissau   -15.1804   11.8037          Low income
## 6057              Bissau   -15.1804   11.8037          Low income
## 6058              Bissau   -15.1804   11.8037          Low income
## 6059              Bissau   -15.1804   11.8037          Low income
## 6060              Bissau   -15.1804   11.8037          Low income
## 6061              Bissau   -15.1804   11.8037          Low income
## 6062              Bissau   -15.1804   11.8037          Low income
## 6063              Bissau   -15.1804   11.8037          Low income
## 6064              Bissau   -15.1804   11.8037          Low income
## 6065              Bissau   -15.1804   11.8037          Low income
## 6066              Bissau   -15.1804   11.8037          Low income
## 6067              Bissau   -15.1804   11.8037          Low income
## 6068              Bissau   -15.1804   11.8037          Low income
## 6069              Bissau   -15.1804   11.8037          Low income
## 6070              Bissau   -15.1804   11.8037          Low income
## 6071              Bissau   -15.1804   11.8037          Low income
## 6072              Bissau   -15.1804   11.8037          Low income
## 6073              Bissau   -15.1804   11.8037          Low income
## 6074              Bissau   -15.1804   11.8037          Low income
## 6075              Bissau   -15.1804   11.8037          Low income
## 6076              Bissau   -15.1804   11.8037          Low income
## 6077          Georgetown   -58.1548   6.80461 Upper middle income
## 6078          Georgetown   -58.1548   6.80461 Upper middle income
## 6079          Georgetown   -58.1548   6.80461 Upper middle income
## 6080          Georgetown   -58.1548   6.80461 Upper middle income
## 6081          Georgetown   -58.1548   6.80461 Upper middle income
## 6082          Georgetown   -58.1548   6.80461 Upper middle income
## 6083          Georgetown   -58.1548   6.80461 Upper middle income
## 6084          Georgetown   -58.1548   6.80461 Upper middle income
## 6085          Georgetown   -58.1548   6.80461 Upper middle income
## 6086          Georgetown   -58.1548   6.80461 Upper middle income
## 6087          Georgetown   -58.1548   6.80461 Upper middle income
## 6088          Georgetown   -58.1548   6.80461 Upper middle income
## 6089          Georgetown   -58.1548   6.80461 Upper middle income
## 6090          Georgetown   -58.1548   6.80461 Upper middle income
## 6091          Georgetown   -58.1548   6.80461 Upper middle income
## 6092          Georgetown   -58.1548   6.80461 Upper middle income
## 6093          Georgetown   -58.1548   6.80461 Upper middle income
## 6094          Georgetown   -58.1548   6.80461 Upper middle income
## 6095          Georgetown   -58.1548   6.80461 Upper middle income
## 6096          Georgetown   -58.1548   6.80461 Upper middle income
## 6097          Georgetown   -58.1548   6.80461 Upper middle income
## 6098          Georgetown   -58.1548   6.80461 Upper middle income
## 6099          Georgetown   -58.1548   6.80461 Upper middle income
## 6100          Georgetown   -58.1548   6.80461 Upper middle income
## 6101          Georgetown   -58.1548   6.80461 Upper middle income
## 6102          Georgetown   -58.1548   6.80461 Upper middle income
## 6103          Georgetown   -58.1548   6.80461 Upper middle income
## 6104          Georgetown   -58.1548   6.80461 Upper middle income
## 6105          Georgetown   -58.1548   6.80461 Upper middle income
## 6106          Georgetown   -58.1548   6.80461 Upper middle income
## 6107          Georgetown   -58.1548   6.80461 Upper middle income
## 6108          Georgetown   -58.1548   6.80461 Upper middle income
## 6109          Georgetown   -58.1548   6.80461 Upper middle income
## 6110          Georgetown   -58.1548   6.80461 Upper middle income
## 6111          Georgetown   -58.1548   6.80461 Upper middle income
## 6112          Georgetown   -58.1548   6.80461 Upper middle income
## 6113          Georgetown   -58.1548   6.80461 Upper middle income
## 6114          Georgetown   -58.1548   6.80461 Upper middle income
## 6115          Georgetown   -58.1548   6.80461 Upper middle income
## 6116          Georgetown   -58.1548   6.80461 Upper middle income
## 6117          Georgetown   -58.1548   6.80461 Upper middle income
## 6118          Georgetown   -58.1548   6.80461 Upper middle income
## 6119          Georgetown   -58.1548   6.80461 Upper middle income
## 6120          Georgetown   -58.1548   6.80461 Upper middle income
## 6121          Georgetown   -58.1548   6.80461 Upper middle income
## 6122          Georgetown   -58.1548   6.80461 Upper middle income
## 6123          Georgetown   -58.1548   6.80461 Upper middle income
## 6124          Georgetown   -58.1548   6.80461 Upper middle income
## 6125          Georgetown   -58.1548   6.80461 Upper middle income
## 6126          Georgetown   -58.1548   6.80461 Upper middle income
## 6127          Georgetown   -58.1548   6.80461 Upper middle income
## 6128          Georgetown   -58.1548   6.80461 Upper middle income
## 6129          Georgetown   -58.1548   6.80461 Upper middle income
## 6130          Georgetown   -58.1548   6.80461 Upper middle income
## 6131          Georgetown   -58.1548   6.80461 Upper middle income
## 6132          Georgetown   -58.1548   6.80461 Upper middle income
## 6133          Georgetown   -58.1548   6.80461 Upper middle income
## 6134          Georgetown   -58.1548   6.80461 Upper middle income
## 6135          Georgetown   -58.1548   6.80461 Upper middle income
## 6136          Georgetown   -58.1548   6.80461 Upper middle income
## 6137          Georgetown   -58.1548   6.80461 Upper middle income
## 6138          Georgetown   -58.1548   6.80461 Upper middle income
## 6139      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6140      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6141      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6142      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6143      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6144      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6145      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6146      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6147      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6148      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6149      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6150      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6151      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6152      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6153      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6154      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6155      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6156      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6157      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6158      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6159      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6160      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6161      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6162      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6163      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6164      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6165      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6166      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6167      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6168      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6169      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6170      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6171      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6172      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6173      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6174      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6175      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6176      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6177      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6178      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6179      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6180      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6181      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6182      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6183      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6184      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6185      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6186      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6187      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6188      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6189      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6190      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6191      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6192      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6193      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6194      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6195      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6196      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6197      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6198      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6199      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6200      Port-au-Prince   -72.3288   18.5392 Lower middle income
## 6201                                                   Aggregates
## 6202                                                   Aggregates
## 6203                                                   Aggregates
## 6204                                                   Aggregates
## 6205                                                   Aggregates
## 6206                                                   Aggregates
## 6207                                                   Aggregates
## 6208                                                   Aggregates
## 6209                                                   Aggregates
## 6210                                                   Aggregates
## 6211                                                   Aggregates
## 6212                                                   Aggregates
## 6213                                                   Aggregates
## 6214                                                   Aggregates
## 6215                                                   Aggregates
## 6216                                                   Aggregates
## 6217                                                   Aggregates
## 6218                                                   Aggregates
## 6219                                                   Aggregates
## 6220                                                   Aggregates
## 6221                                                   Aggregates
## 6222                                                   Aggregates
## 6223                                                   Aggregates
## 6224                                                   Aggregates
## 6225                                                   Aggregates
## 6226                                                   Aggregates
## 6227                                                   Aggregates
## 6228                                                   Aggregates
## 6229                                                   Aggregates
## 6230                                                   Aggregates
## 6231                                                   Aggregates
## 6232                                                   Aggregates
## 6233                                                   Aggregates
## 6234                                                   Aggregates
## 6235                                                   Aggregates
## 6236                                                   Aggregates
## 6237                                                   Aggregates
## 6238                                                   Aggregates
## 6239                                                   Aggregates
## 6240                                                   Aggregates
## 6241                                                   Aggregates
## 6242                                                   Aggregates
## 6243                                                   Aggregates
## 6244                                                   Aggregates
## 6245                                                   Aggregates
## 6246                                                   Aggregates
## 6247                                                   Aggregates
## 6248                                                   Aggregates
## 6249                                                   Aggregates
## 6250                                                   Aggregates
## 6251                                                   Aggregates
## 6252                                                   Aggregates
## 6253                                                   Aggregates
## 6254                                                   Aggregates
## 6255                                                   Aggregates
## 6256                                                   Aggregates
## 6257                                                   Aggregates
## 6258                                                   Aggregates
## 6259                                                   Aggregates
## 6260                                                   Aggregates
## 6261                                                   Aggregates
## 6262                                                   Aggregates
## 6263                <NA>       <NA>      <NA>                <NA>
## 6264                <NA>       <NA>      <NA>                <NA>
## 6265                <NA>       <NA>      <NA>                <NA>
## 6266                <NA>       <NA>      <NA>                <NA>
## 6267                <NA>       <NA>      <NA>                <NA>
## 6268                <NA>       <NA>      <NA>                <NA>
## 6269                <NA>       <NA>      <NA>                <NA>
## 6270                <NA>       <NA>      <NA>                <NA>
## 6271                <NA>       <NA>      <NA>                <NA>
## 6272                <NA>       <NA>      <NA>                <NA>
## 6273                <NA>       <NA>      <NA>                <NA>
## 6274                <NA>       <NA>      <NA>                <NA>
## 6275                <NA>       <NA>      <NA>                <NA>
## 6276                <NA>       <NA>      <NA>                <NA>
## 6277                <NA>       <NA>      <NA>                <NA>
## 6278                <NA>       <NA>      <NA>                <NA>
## 6279                <NA>       <NA>      <NA>                <NA>
## 6280                <NA>       <NA>      <NA>                <NA>
## 6281                <NA>       <NA>      <NA>                <NA>
## 6282                <NA>       <NA>      <NA>                <NA>
## 6283                <NA>       <NA>      <NA>                <NA>
## 6284                <NA>       <NA>      <NA>                <NA>
## 6285                <NA>       <NA>      <NA>                <NA>
## 6286                <NA>       <NA>      <NA>                <NA>
## 6287                <NA>       <NA>      <NA>                <NA>
## 6288                <NA>       <NA>      <NA>                <NA>
## 6289                <NA>       <NA>      <NA>                <NA>
## 6290                <NA>       <NA>      <NA>                <NA>
## 6291                <NA>       <NA>      <NA>                <NA>
## 6292                <NA>       <NA>      <NA>                <NA>
## 6293                <NA>       <NA>      <NA>                <NA>
## 6294                <NA>       <NA>      <NA>                <NA>
## 6295                <NA>       <NA>      <NA>                <NA>
## 6296                <NA>       <NA>      <NA>                <NA>
## 6297                <NA>       <NA>      <NA>                <NA>
## 6298                <NA>       <NA>      <NA>                <NA>
## 6299                <NA>       <NA>      <NA>                <NA>
## 6300                <NA>       <NA>      <NA>                <NA>
## 6301                <NA>       <NA>      <NA>                <NA>
## 6302                <NA>       <NA>      <NA>                <NA>
## 6303                <NA>       <NA>      <NA>                <NA>
## 6304                <NA>       <NA>      <NA>                <NA>
## 6305                <NA>       <NA>      <NA>                <NA>
## 6306                <NA>       <NA>      <NA>                <NA>
## 6307                <NA>       <NA>      <NA>                <NA>
## 6308                <NA>       <NA>      <NA>                <NA>
## 6309                <NA>       <NA>      <NA>                <NA>
## 6310                <NA>       <NA>      <NA>                <NA>
## 6311                <NA>       <NA>      <NA>                <NA>
## 6312                <NA>       <NA>      <NA>                <NA>
## 6313                <NA>       <NA>      <NA>                <NA>
## 6314                <NA>       <NA>      <NA>                <NA>
## 6315                <NA>       <NA>      <NA>                <NA>
## 6316                <NA>       <NA>      <NA>                <NA>
## 6317                <NA>       <NA>      <NA>                <NA>
## 6318                <NA>       <NA>      <NA>                <NA>
## 6319                <NA>       <NA>      <NA>                <NA>
## 6320                <NA>       <NA>      <NA>                <NA>
## 6321                <NA>       <NA>      <NA>                <NA>
## 6322                <NA>       <NA>      <NA>                <NA>
## 6323                <NA>       <NA>      <NA>                <NA>
## 6324                <NA>       <NA>      <NA>                <NA>
## 6325         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6326         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6327         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6328         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6329         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6330         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6331         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6332         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6333         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6334         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6335         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6336         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6337         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6338         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6339         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6340         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6341         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6342         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6343         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6344         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6345         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6346         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6347         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6348         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6349         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6350         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6351         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6352         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6353         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6354         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6355         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6356         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6357         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6358         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6359         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6360         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6361         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6362         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6363         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6364         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6365         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6366         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6367         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6368         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6369         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6370         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6371         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6372         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6373         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6374         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6375         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6376         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6377         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6378         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6379         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6380         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6381         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6382         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6383         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6384         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6385         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6386         Tegucigalpa   -87.4667   15.1333 Lower middle income
## 6387                        114.109   22.3964         High income
## 6388                        114.109   22.3964         High income
## 6389                        114.109   22.3964         High income
## 6390                        114.109   22.3964         High income
## 6391                        114.109   22.3964         High income
## 6392                        114.109   22.3964         High income
## 6393                        114.109   22.3964         High income
## 6394                        114.109   22.3964         High income
## 6395                        114.109   22.3964         High income
## 6396                        114.109   22.3964         High income
## 6397                        114.109   22.3964         High income
## 6398                        114.109   22.3964         High income
## 6399                        114.109   22.3964         High income
## 6400                        114.109   22.3964         High income
## 6401                        114.109   22.3964         High income
## 6402                        114.109   22.3964         High income
## 6403                        114.109   22.3964         High income
## 6404                        114.109   22.3964         High income
## 6405                        114.109   22.3964         High income
## 6406                        114.109   22.3964         High income
## 6407                        114.109   22.3964         High income
## 6408                        114.109   22.3964         High income
## 6409                        114.109   22.3964         High income
## 6410                        114.109   22.3964         High income
## 6411                        114.109   22.3964         High income
## 6412                        114.109   22.3964         High income
## 6413                        114.109   22.3964         High income
## 6414                        114.109   22.3964         High income
## 6415                        114.109   22.3964         High income
## 6416                        114.109   22.3964         High income
## 6417                        114.109   22.3964         High income
## 6418                        114.109   22.3964         High income
## 6419                        114.109   22.3964         High income
## 6420                        114.109   22.3964         High income
## 6421                        114.109   22.3964         High income
## 6422                        114.109   22.3964         High income
## 6423                        114.109   22.3964         High income
## 6424                        114.109   22.3964         High income
## 6425                        114.109   22.3964         High income
## 6426                        114.109   22.3964         High income
## 6427                        114.109   22.3964         High income
## 6428                        114.109   22.3964         High income
## 6429                        114.109   22.3964         High income
## 6430                        114.109   22.3964         High income
## 6431                        114.109   22.3964         High income
## 6432                        114.109   22.3964         High income
## 6433                        114.109   22.3964         High income
## 6434                        114.109   22.3964         High income
## 6435                        114.109   22.3964         High income
## 6436                        114.109   22.3964         High income
## 6437                        114.109   22.3964         High income
## 6438                        114.109   22.3964         High income
## 6439                        114.109   22.3964         High income
## 6440                        114.109   22.3964         High income
## 6441                        114.109   22.3964         High income
## 6442                        114.109   22.3964         High income
## 6443                        114.109   22.3964         High income
## 6444                        114.109   22.3964         High income
## 6445                        114.109   22.3964         High income
## 6446                        114.109   22.3964         High income
## 6447                        114.109   22.3964         High income
## 6448                        114.109   22.3964         High income
## 6449            Budapest    19.0408   47.4984         High income
## 6450            Budapest    19.0408   47.4984         High income
## 6451            Budapest    19.0408   47.4984         High income
## 6452            Budapest    19.0408   47.4984         High income
## 6453            Budapest    19.0408   47.4984         High income
## 6454            Budapest    19.0408   47.4984         High income
## 6455            Budapest    19.0408   47.4984         High income
## 6456            Budapest    19.0408   47.4984         High income
## 6457            Budapest    19.0408   47.4984         High income
## 6458            Budapest    19.0408   47.4984         High income
## 6459            Budapest    19.0408   47.4984         High income
## 6460            Budapest    19.0408   47.4984         High income
## 6461            Budapest    19.0408   47.4984         High income
## 6462            Budapest    19.0408   47.4984         High income
## 6463            Budapest    19.0408   47.4984         High income
## 6464            Budapest    19.0408   47.4984         High income
## 6465            Budapest    19.0408   47.4984         High income
## 6466            Budapest    19.0408   47.4984         High income
## 6467            Budapest    19.0408   47.4984         High income
## 6468            Budapest    19.0408   47.4984         High income
## 6469            Budapest    19.0408   47.4984         High income
## 6470            Budapest    19.0408   47.4984         High income
## 6471            Budapest    19.0408   47.4984         High income
## 6472            Budapest    19.0408   47.4984         High income
## 6473            Budapest    19.0408   47.4984         High income
## 6474            Budapest    19.0408   47.4984         High income
## 6475            Budapest    19.0408   47.4984         High income
## 6476            Budapest    19.0408   47.4984         High income
## 6477            Budapest    19.0408   47.4984         High income
## 6478            Budapest    19.0408   47.4984         High income
## 6479            Budapest    19.0408   47.4984         High income
## 6480            Budapest    19.0408   47.4984         High income
## 6481            Budapest    19.0408   47.4984         High income
## 6482            Budapest    19.0408   47.4984         High income
## 6483            Budapest    19.0408   47.4984         High income
## 6484            Budapest    19.0408   47.4984         High income
## 6485            Budapest    19.0408   47.4984         High income
## 6486            Budapest    19.0408   47.4984         High income
## 6487            Budapest    19.0408   47.4984         High income
## 6488            Budapest    19.0408   47.4984         High income
## 6489            Budapest    19.0408   47.4984         High income
## 6490            Budapest    19.0408   47.4984         High income
## 6491            Budapest    19.0408   47.4984         High income
## 6492            Budapest    19.0408   47.4984         High income
## 6493            Budapest    19.0408   47.4984         High income
## 6494            Budapest    19.0408   47.4984         High income
## 6495            Budapest    19.0408   47.4984         High income
## 6496            Budapest    19.0408   47.4984         High income
## 6497            Budapest    19.0408   47.4984         High income
## 6498            Budapest    19.0408   47.4984         High income
## 6499            Budapest    19.0408   47.4984         High income
## 6500            Budapest    19.0408   47.4984         High income
## 6501            Budapest    19.0408   47.4984         High income
## 6502            Budapest    19.0408   47.4984         High income
## 6503            Budapest    19.0408   47.4984         High income
## 6504            Budapest    19.0408   47.4984         High income
## 6505            Budapest    19.0408   47.4984         High income
## 6506            Budapest    19.0408   47.4984         High income
## 6507            Budapest    19.0408   47.4984         High income
## 6508            Budapest    19.0408   47.4984         High income
## 6509            Budapest    19.0408   47.4984         High income
## 6510            Budapest    19.0408   47.4984         High income
## 6511                                                   Aggregates
## 6512                                                   Aggregates
## 6513                                                   Aggregates
## 6514                                                   Aggregates
## 6515                                                   Aggregates
## 6516                                                   Aggregates
## 6517                                                   Aggregates
## 6518                                                   Aggregates
## 6519                                                   Aggregates
## 6520                                                   Aggregates
## 6521                                                   Aggregates
## 6522                                                   Aggregates
## 6523                                                   Aggregates
## 6524                                                   Aggregates
## 6525                                                   Aggregates
## 6526                                                   Aggregates
## 6527                                                   Aggregates
## 6528                                                   Aggregates
## 6529                                                   Aggregates
## 6530                                                   Aggregates
## 6531                                                   Aggregates
## 6532                                                   Aggregates
## 6533                                                   Aggregates
## 6534                                                   Aggregates
## 6535                                                   Aggregates
## 6536                                                   Aggregates
## 6537                                                   Aggregates
## 6538                                                   Aggregates
## 6539                                                   Aggregates
## 6540                                                   Aggregates
## 6541                                                   Aggregates
## 6542                                                   Aggregates
## 6543                                                   Aggregates
## 6544                                                   Aggregates
## 6545                                                   Aggregates
## 6546                                                   Aggregates
## 6547                                                   Aggregates
## 6548                                                   Aggregates
## 6549                                                   Aggregates
## 6550                                                   Aggregates
## 6551                                                   Aggregates
## 6552                                                   Aggregates
## 6553                                                   Aggregates
## 6554                                                   Aggregates
## 6555                                                   Aggregates
## 6556                                                   Aggregates
## 6557                                                   Aggregates
## 6558                                                   Aggregates
## 6559                                                   Aggregates
## 6560                                                   Aggregates
## 6561                                                   Aggregates
## 6562                                                   Aggregates
## 6563                                                   Aggregates
## 6564                                                   Aggregates
## 6565                                                   Aggregates
## 6566                                                   Aggregates
## 6567                                                   Aggregates
## 6568                                                   Aggregates
## 6569                                                   Aggregates
## 6570                                                   Aggregates
## 6571                                                   Aggregates
## 6572                                                   Aggregates
## 6573           Reykjavik   -21.8952   64.1353         High income
## 6574           Reykjavik   -21.8952   64.1353         High income
## 6575           Reykjavik   -21.8952   64.1353         High income
## 6576           Reykjavik   -21.8952   64.1353         High income
## 6577           Reykjavik   -21.8952   64.1353         High income
## 6578           Reykjavik   -21.8952   64.1353         High income
## 6579           Reykjavik   -21.8952   64.1353         High income
## 6580           Reykjavik   -21.8952   64.1353         High income
## 6581           Reykjavik   -21.8952   64.1353         High income
## 6582           Reykjavik   -21.8952   64.1353         High income
## 6583           Reykjavik   -21.8952   64.1353         High income
## 6584           Reykjavik   -21.8952   64.1353         High income
## 6585           Reykjavik   -21.8952   64.1353         High income
## 6586           Reykjavik   -21.8952   64.1353         High income
## 6587           Reykjavik   -21.8952   64.1353         High income
## 6588           Reykjavik   -21.8952   64.1353         High income
## 6589           Reykjavik   -21.8952   64.1353         High income
## 6590           Reykjavik   -21.8952   64.1353         High income
## 6591           Reykjavik   -21.8952   64.1353         High income
## 6592           Reykjavik   -21.8952   64.1353         High income
## 6593           Reykjavik   -21.8952   64.1353         High income
## 6594           Reykjavik   -21.8952   64.1353         High income
## 6595           Reykjavik   -21.8952   64.1353         High income
## 6596           Reykjavik   -21.8952   64.1353         High income
## 6597           Reykjavik   -21.8952   64.1353         High income
## 6598           Reykjavik   -21.8952   64.1353         High income
## 6599           Reykjavik   -21.8952   64.1353         High income
## 6600           Reykjavik   -21.8952   64.1353         High income
## 6601           Reykjavik   -21.8952   64.1353         High income
## 6602           Reykjavik   -21.8952   64.1353         High income
## 6603           Reykjavik   -21.8952   64.1353         High income
## 6604           Reykjavik   -21.8952   64.1353         High income
## 6605           Reykjavik   -21.8952   64.1353         High income
## 6606           Reykjavik   -21.8952   64.1353         High income
## 6607           Reykjavik   -21.8952   64.1353         High income
## 6608           Reykjavik   -21.8952   64.1353         High income
## 6609           Reykjavik   -21.8952   64.1353         High income
## 6610           Reykjavik   -21.8952   64.1353         High income
## 6611           Reykjavik   -21.8952   64.1353         High income
## 6612           Reykjavik   -21.8952   64.1353         High income
## 6613           Reykjavik   -21.8952   64.1353         High income
## 6614           Reykjavik   -21.8952   64.1353         High income
## 6615           Reykjavik   -21.8952   64.1353         High income
## 6616           Reykjavik   -21.8952   64.1353         High income
## 6617           Reykjavik   -21.8952   64.1353         High income
## 6618           Reykjavik   -21.8952   64.1353         High income
## 6619           Reykjavik   -21.8952   64.1353         High income
## 6620           Reykjavik   -21.8952   64.1353         High income
## 6621           Reykjavik   -21.8952   64.1353         High income
## 6622           Reykjavik   -21.8952   64.1353         High income
## 6623           Reykjavik   -21.8952   64.1353         High income
## 6624           Reykjavik   -21.8952   64.1353         High income
## 6625           Reykjavik   -21.8952   64.1353         High income
## 6626           Reykjavik   -21.8952   64.1353         High income
## 6627           Reykjavik   -21.8952   64.1353         High income
## 6628           Reykjavik   -21.8952   64.1353         High income
## 6629           Reykjavik   -21.8952   64.1353         High income
## 6630           Reykjavik   -21.8952   64.1353         High income
## 6631           Reykjavik   -21.8952   64.1353         High income
## 6632           Reykjavik   -21.8952   64.1353         High income
## 6633           Reykjavik   -21.8952   64.1353         High income
## 6634           Reykjavik   -21.8952   64.1353         High income
## 6635                                                   Aggregates
## 6636                                                   Aggregates
## 6637                                                   Aggregates
## 6638                                                   Aggregates
## 6639                                                   Aggregates
## 6640                                                   Aggregates
## 6641                                                   Aggregates
## 6642                                                   Aggregates
## 6643                                                   Aggregates
## 6644                                                   Aggregates
## 6645                                                   Aggregates
## 6646                                                   Aggregates
## 6647                                                   Aggregates
## 6648                                                   Aggregates
## 6649                                                   Aggregates
## 6650                                                   Aggregates
## 6651                                                   Aggregates
## 6652                                                   Aggregates
## 6653                                                   Aggregates
## 6654                                                   Aggregates
## 6655                                                   Aggregates
## 6656                                                   Aggregates
## 6657                                                   Aggregates
## 6658                                                   Aggregates
## 6659                                                   Aggregates
## 6660                                                   Aggregates
## 6661                                                   Aggregates
## 6662                                                   Aggregates
## 6663                                                   Aggregates
## 6664                                                   Aggregates
## 6665                                                   Aggregates
## 6666                                                   Aggregates
##             lending
## 1               IDA
## 2               IDA
## 3               IDA
## 4               IDA
## 5               IDA
## 6               IDA
## 7               IDA
## 8               IDA
## 9               IDA
## 10              IDA
## 11              IDA
## 12              IDA
## 13              IDA
## 14              IDA
## 15              IDA
## 16              IDA
## 17              IDA
## 18              IDA
## 19              IDA
## 20              IDA
## 21              IDA
## 22              IDA
## 23              IDA
## 24              IDA
## 25              IDA
## 26              IDA
## 27              IDA
## 28              IDA
## 29              IDA
## 30              IDA
## 31              IDA
## 32              IDA
## 33              IDA
## 34              IDA
## 35              IDA
## 36              IDA
## 37              IDA
## 38              IDA
## 39              IDA
## 40              IDA
## 41              IDA
## 42              IDA
## 43              IDA
## 44              IDA
## 45              IDA
## 46              IDA
## 47              IDA
## 48              IDA
## 49              IDA
## 50              IDA
## 51              IDA
## 52              IDA
## 53              IDA
## 54              IDA
## 55              IDA
## 56              IDA
## 57              IDA
## 58              IDA
## 59              IDA
## 60              IDA
## 61              IDA
## 62              IDA
## 63       Aggregates
## 64       Aggregates
## 65       Aggregates
## 66       Aggregates
## 67       Aggregates
## 68       Aggregates
## 69       Aggregates
## 70       Aggregates
## 71       Aggregates
## 72       Aggregates
## 73       Aggregates
## 74       Aggregates
## 75       Aggregates
## 76       Aggregates
## 77       Aggregates
## 78       Aggregates
## 79       Aggregates
## 80       Aggregates
## 81       Aggregates
## 82       Aggregates
## 83       Aggregates
## 84       Aggregates
## 85       Aggregates
## 86       Aggregates
## 87       Aggregates
## 88       Aggregates
## 89       Aggregates
## 90       Aggregates
## 91       Aggregates
## 92       Aggregates
## 93       Aggregates
## 94       Aggregates
## 95       Aggregates
## 96       Aggregates
## 97       Aggregates
## 98       Aggregates
## 99       Aggregates
## 100      Aggregates
## 101      Aggregates
## 102      Aggregates
## 103      Aggregates
## 104      Aggregates
## 105      Aggregates
## 106      Aggregates
## 107      Aggregates
## 108      Aggregates
## 109      Aggregates
## 110      Aggregates
## 111      Aggregates
## 112      Aggregates
## 113      Aggregates
## 114      Aggregates
## 115      Aggregates
## 116      Aggregates
## 117      Aggregates
## 118      Aggregates
## 119      Aggregates
## 120      Aggregates
## 121      Aggregates
## 122      Aggregates
## 123      Aggregates
## 124      Aggregates
## 125      Aggregates
## 126      Aggregates
## 127      Aggregates
## 128      Aggregates
## 129      Aggregates
## 130      Aggregates
## 131      Aggregates
## 132      Aggregates
## 133      Aggregates
## 134      Aggregates
## 135      Aggregates
## 136      Aggregates
## 137      Aggregates
## 138      Aggregates
## 139      Aggregates
## 140      Aggregates
## 141      Aggregates
## 142      Aggregates
## 143      Aggregates
## 144      Aggregates
## 145      Aggregates
## 146      Aggregates
## 147      Aggregates
## 148      Aggregates
## 149      Aggregates
## 150      Aggregates
## 151      Aggregates
## 152      Aggregates
## 153      Aggregates
## 154      Aggregates
## 155      Aggregates
## 156      Aggregates
## 157      Aggregates
## 158      Aggregates
## 159      Aggregates
## 160      Aggregates
## 161      Aggregates
## 162      Aggregates
## 163      Aggregates
## 164      Aggregates
## 165      Aggregates
## 166      Aggregates
## 167      Aggregates
## 168      Aggregates
## 169      Aggregates
## 170      Aggregates
## 171      Aggregates
## 172      Aggregates
## 173      Aggregates
## 174      Aggregates
## 175      Aggregates
## 176      Aggregates
## 177      Aggregates
## 178      Aggregates
## 179      Aggregates
## 180      Aggregates
## 181      Aggregates
## 182      Aggregates
## 183      Aggregates
## 184      Aggregates
## 185      Aggregates
## 186      Aggregates
## 187            IBRD
## 188            IBRD
## 189            IBRD
## 190            IBRD
## 191            IBRD
## 192            IBRD
## 193            IBRD
## 194            IBRD
## 195            IBRD
## 196            IBRD
## 197            IBRD
## 198            IBRD
## 199            IBRD
## 200            IBRD
## 201            IBRD
## 202            IBRD
## 203            IBRD
## 204            IBRD
## 205            IBRD
## 206            IBRD
## 207            IBRD
## 208            IBRD
## 209            IBRD
## 210            IBRD
## 211            IBRD
## 212            IBRD
## 213            IBRD
## 214            IBRD
## 215            IBRD
## 216            IBRD
## 217            IBRD
## 218            IBRD
## 219            IBRD
## 220            IBRD
## 221            IBRD
## 222            IBRD
## 223            IBRD
## 224            IBRD
## 225            IBRD
## 226            IBRD
## 227            IBRD
## 228            IBRD
## 229            IBRD
## 230            IBRD
## 231            IBRD
## 232            IBRD
## 233            IBRD
## 234            IBRD
## 235            IBRD
## 236            IBRD
## 237            IBRD
## 238            IBRD
## 239            IBRD
## 240            IBRD
## 241            IBRD
## 242            IBRD
## 243            IBRD
## 244            IBRD
## 245            IBRD
## 246            IBRD
## 247            IBRD
## 248            IBRD
## 249            IBRD
## 250            IBRD
## 251            IBRD
## 252            IBRD
## 253            IBRD
## 254            IBRD
## 255            IBRD
## 256            IBRD
## 257            IBRD
## 258            IBRD
## 259            IBRD
## 260            IBRD
## 261            IBRD
## 262            IBRD
## 263            IBRD
## 264            IBRD
## 265            IBRD
## 266            IBRD
## 267            IBRD
## 268            IBRD
## 269            IBRD
## 270            IBRD
## 271            IBRD
## 272            IBRD
## 273            IBRD
## 274            IBRD
## 275            IBRD
## 276            IBRD
## 277            IBRD
## 278            IBRD
## 279            IBRD
## 280            IBRD
## 281            IBRD
## 282            IBRD
## 283            IBRD
## 284            IBRD
## 285            IBRD
## 286            IBRD
## 287            IBRD
## 288            IBRD
## 289            IBRD
## 290            IBRD
## 291            IBRD
## 292            IBRD
## 293            IBRD
## 294            IBRD
## 295            IBRD
## 296            IBRD
## 297            IBRD
## 298            IBRD
## 299            IBRD
## 300            IBRD
## 301            IBRD
## 302            IBRD
## 303            IBRD
## 304            IBRD
## 305            IBRD
## 306            IBRD
## 307            IBRD
## 308            IBRD
## 309            IBRD
## 310            IBRD
## 311  Not classified
## 312  Not classified
## 313  Not classified
## 314  Not classified
## 315  Not classified
## 316  Not classified
## 317  Not classified
## 318  Not classified
## 319  Not classified
## 320  Not classified
## 321  Not classified
## 322  Not classified
## 323  Not classified
## 324  Not classified
## 325  Not classified
## 326  Not classified
## 327  Not classified
## 328  Not classified
## 329  Not classified
## 330  Not classified
## 331  Not classified
## 332  Not classified
## 333  Not classified
## 334  Not classified
## 335  Not classified
## 336  Not classified
## 337  Not classified
## 338  Not classified
## 339  Not classified
## 340  Not classified
## 341  Not classified
## 342  Not classified
## 343  Not classified
## 344  Not classified
## 345  Not classified
## 346  Not classified
## 347  Not classified
## 348  Not classified
## 349  Not classified
## 350  Not classified
## 351  Not classified
## 352  Not classified
## 353  Not classified
## 354  Not classified
## 355  Not classified
## 356  Not classified
## 357  Not classified
## 358  Not classified
## 359  Not classified
## 360  Not classified
## 361  Not classified
## 362  Not classified
## 363  Not classified
## 364  Not classified
## 365  Not classified
## 366  Not classified
## 367  Not classified
## 368  Not classified
## 369  Not classified
## 370  Not classified
## 371  Not classified
## 372  Not classified
## 373  Not classified
## 374  Not classified
## 375  Not classified
## 376  Not classified
## 377  Not classified
## 378  Not classified
## 379  Not classified
## 380  Not classified
## 381  Not classified
## 382  Not classified
## 383  Not classified
## 384  Not classified
## 385  Not classified
## 386  Not classified
## 387  Not classified
## 388  Not classified
## 389  Not classified
## 390  Not classified
## 391  Not classified
## 392  Not classified
## 393  Not classified
## 394  Not classified
## 395  Not classified
## 396  Not classified
## 397  Not classified
## 398  Not classified
## 399  Not classified
## 400  Not classified
## 401  Not classified
## 402  Not classified
## 403  Not classified
## 404  Not classified
## 405  Not classified
## 406  Not classified
## 407  Not classified
## 408  Not classified
## 409  Not classified
## 410  Not classified
## 411  Not classified
## 412  Not classified
## 413  Not classified
## 414  Not classified
## 415  Not classified
## 416  Not classified
## 417  Not classified
## 418  Not classified
## 419  Not classified
## 420  Not classified
## 421  Not classified
## 422  Not classified
## 423  Not classified
## 424  Not classified
## 425  Not classified
## 426  Not classified
## 427  Not classified
## 428  Not classified
## 429  Not classified
## 430  Not classified
## 431  Not classified
## 432  Not classified
## 433  Not classified
## 434  Not classified
## 435            IBRD
## 436            IBRD
## 437            IBRD
## 438            IBRD
## 439            IBRD
## 440            IBRD
## 441            IBRD
## 442            IBRD
## 443            IBRD
## 444            IBRD
## 445            IBRD
## 446            IBRD
## 447            IBRD
## 448            IBRD
## 449            IBRD
## 450            IBRD
## 451            IBRD
## 452            IBRD
## 453            IBRD
## 454            IBRD
## 455            IBRD
## 456            IBRD
## 457            IBRD
## 458            IBRD
## 459            IBRD
## 460            IBRD
## 461            IBRD
## 462            IBRD
## 463            IBRD
## 464            IBRD
## 465            IBRD
## 466            IBRD
## 467            IBRD
## 468            IBRD
## 469            IBRD
## 470            IBRD
## 471            IBRD
## 472            IBRD
## 473            IBRD
## 474            IBRD
## 475            IBRD
## 476            IBRD
## 477            IBRD
## 478            IBRD
## 479            IBRD
## 480            IBRD
## 481            IBRD
## 482            IBRD
## 483            IBRD
## 484            IBRD
## 485            IBRD
## 486            IBRD
## 487            IBRD
## 488            IBRD
## 489            IBRD
## 490            IBRD
## 491            IBRD
## 492            IBRD
## 493            IBRD
## 494            IBRD
## 495            IBRD
## 496            IBRD
## 497            IBRD
## 498            IBRD
## 499            IBRD
## 500            IBRD
## 501            IBRD
## 502            IBRD
## 503            IBRD
## 504            IBRD
## 505            IBRD
## 506            IBRD
## 507            IBRD
## 508            IBRD
## 509            IBRD
## 510            IBRD
## 511            IBRD
## 512            IBRD
## 513            IBRD
## 514            IBRD
## 515            IBRD
## 516            IBRD
## 517            IBRD
## 518            IBRD
## 519            IBRD
## 520            IBRD
## 521            IBRD
## 522            IBRD
## 523            IBRD
## 524            IBRD
## 525            IBRD
## 526            IBRD
## 527            IBRD
## 528            IBRD
## 529            IBRD
## 530            IBRD
## 531            IBRD
## 532            IBRD
## 533            IBRD
## 534            IBRD
## 535            IBRD
## 536            IBRD
## 537            IBRD
## 538            IBRD
## 539            IBRD
## 540            IBRD
## 541            IBRD
## 542            IBRD
## 543            IBRD
## 544            IBRD
## 545            IBRD
## 546            IBRD
## 547            IBRD
## 548            IBRD
## 549            IBRD
## 550            IBRD
## 551            IBRD
## 552            IBRD
## 553            IBRD
## 554            IBRD
## 555            IBRD
## 556            IBRD
## 557            IBRD
## 558            IBRD
## 559      Aggregates
## 560      Aggregates
## 561      Aggregates
## 562      Aggregates
## 563      Aggregates
## 564      Aggregates
## 565      Aggregates
## 566      Aggregates
## 567      Aggregates
## 568      Aggregates
## 569      Aggregates
## 570      Aggregates
## 571      Aggregates
## 572      Aggregates
## 573      Aggregates
## 574      Aggregates
## 575      Aggregates
## 576      Aggregates
## 577      Aggregates
## 578      Aggregates
## 579      Aggregates
## 580      Aggregates
## 581      Aggregates
## 582      Aggregates
## 583      Aggregates
## 584      Aggregates
## 585      Aggregates
## 586      Aggregates
## 587      Aggregates
## 588      Aggregates
## 589      Aggregates
## 590      Aggregates
## 591      Aggregates
## 592      Aggregates
## 593      Aggregates
## 594      Aggregates
## 595      Aggregates
## 596      Aggregates
## 597      Aggregates
## 598      Aggregates
## 599      Aggregates
## 600      Aggregates
## 601      Aggregates
## 602      Aggregates
## 603      Aggregates
## 604      Aggregates
## 605      Aggregates
## 606      Aggregates
## 607      Aggregates
## 608      Aggregates
## 609      Aggregates
## 610      Aggregates
## 611      Aggregates
## 612      Aggregates
## 613      Aggregates
## 614      Aggregates
## 615      Aggregates
## 616      Aggregates
## 617      Aggregates
## 618      Aggregates
## 619      Aggregates
## 620      Aggregates
## 621            IBRD
## 622            IBRD
## 623            IBRD
## 624            IBRD
## 625            IBRD
## 626            IBRD
## 627            IBRD
## 628            IBRD
## 629            IBRD
## 630            IBRD
## 631            IBRD
## 632            IBRD
## 633            IBRD
## 634            IBRD
## 635            IBRD
## 636            IBRD
## 637            IBRD
## 638            IBRD
## 639            IBRD
## 640            IBRD
## 641            IBRD
## 642            IBRD
## 643            IBRD
## 644            IBRD
## 645            IBRD
## 646            IBRD
## 647            IBRD
## 648            IBRD
## 649            IBRD
## 650            IBRD
## 651            IBRD
## 652            IBRD
## 653            IBRD
## 654            IBRD
## 655            IBRD
## 656            IBRD
## 657            IBRD
## 658            IBRD
## 659            IBRD
## 660            IBRD
## 661            IBRD
## 662            IBRD
## 663            IBRD
## 664            IBRD
## 665            IBRD
## 666            IBRD
## 667            IBRD
## 668            IBRD
## 669            IBRD
## 670            IBRD
## 671            IBRD
## 672            IBRD
## 673            IBRD
## 674            IBRD
## 675            IBRD
## 676            IBRD
## 677            IBRD
## 678            IBRD
## 679            IBRD
## 680            IBRD
## 681            IBRD
## 682            IBRD
## 683            IBRD
## 684            IBRD
## 685            IBRD
## 686            IBRD
## 687            IBRD
## 688            IBRD
## 689            IBRD
## 690            IBRD
## 691            IBRD
## 692            IBRD
## 693            IBRD
## 694            IBRD
## 695            IBRD
## 696            IBRD
## 697            IBRD
## 698            IBRD
## 699            IBRD
## 700            IBRD
## 701            IBRD
## 702            IBRD
## 703            IBRD
## 704            IBRD
## 705            IBRD
## 706            IBRD
## 707            IBRD
## 708            IBRD
## 709            IBRD
## 710            IBRD
## 711            IBRD
## 712            IBRD
## 713            IBRD
## 714            IBRD
## 715            IBRD
## 716            IBRD
## 717            IBRD
## 718            IBRD
## 719            IBRD
## 720            IBRD
## 721            IBRD
## 722            IBRD
## 723            IBRD
## 724            IBRD
## 725            IBRD
## 726            IBRD
## 727            IBRD
## 728            IBRD
## 729            IBRD
## 730            IBRD
## 731            IBRD
## 732            IBRD
## 733            IBRD
## 734            IBRD
## 735            IBRD
## 736            IBRD
## 737            IBRD
## 738            IBRD
## 739            IBRD
## 740            IBRD
## 741            IBRD
## 742            IBRD
## 743            IBRD
## 744            IBRD
## 745  Not classified
## 746  Not classified
## 747  Not classified
## 748  Not classified
## 749  Not classified
## 750  Not classified
## 751  Not classified
## 752  Not classified
## 753  Not classified
## 754  Not classified
## 755  Not classified
## 756  Not classified
## 757  Not classified
## 758  Not classified
## 759  Not classified
## 760  Not classified
## 761  Not classified
## 762  Not classified
## 763  Not classified
## 764  Not classified
## 765  Not classified
## 766  Not classified
## 767  Not classified
## 768  Not classified
## 769  Not classified
## 770  Not classified
## 771  Not classified
## 772  Not classified
## 773  Not classified
## 774  Not classified
## 775  Not classified
## 776  Not classified
## 777  Not classified
## 778  Not classified
## 779  Not classified
## 780  Not classified
## 781  Not classified
## 782  Not classified
## 783  Not classified
## 784  Not classified
## 785  Not classified
## 786  Not classified
## 787  Not classified
## 788  Not classified
## 789  Not classified
## 790  Not classified
## 791  Not classified
## 792  Not classified
## 793  Not classified
## 794  Not classified
## 795  Not classified
## 796  Not classified
## 797  Not classified
## 798  Not classified
## 799  Not classified
## 800  Not classified
## 801  Not classified
## 802  Not classified
## 803  Not classified
## 804  Not classified
## 805  Not classified
## 806  Not classified
## 807  Not classified
## 808  Not classified
## 809  Not classified
## 810  Not classified
## 811  Not classified
## 812  Not classified
## 813  Not classified
## 814  Not classified
## 815  Not classified
## 816  Not classified
## 817  Not classified
## 818  Not classified
## 819  Not classified
## 820  Not classified
## 821  Not classified
## 822  Not classified
## 823  Not classified
## 824  Not classified
## 825  Not classified
## 826  Not classified
## 827  Not classified
## 828  Not classified
## 829  Not classified
## 830  Not classified
## 831  Not classified
## 832  Not classified
## 833  Not classified
## 834  Not classified
## 835  Not classified
## 836  Not classified
## 837  Not classified
## 838  Not classified
## 839  Not classified
## 840  Not classified
## 841  Not classified
## 842  Not classified
## 843  Not classified
## 844  Not classified
## 845  Not classified
## 846  Not classified
## 847  Not classified
## 848  Not classified
## 849  Not classified
## 850  Not classified
## 851  Not classified
## 852  Not classified
## 853  Not classified
## 854  Not classified
## 855  Not classified
## 856  Not classified
## 857  Not classified
## 858  Not classified
## 859  Not classified
## 860  Not classified
## 861  Not classified
## 862  Not classified
## 863  Not classified
## 864  Not classified
## 865  Not classified
## 866  Not classified
## 867  Not classified
## 868  Not classified
## 869  Not classified
## 870  Not classified
## 871  Not classified
## 872  Not classified
## 873  Not classified
## 874  Not classified
## 875  Not classified
## 876  Not classified
## 877  Not classified
## 878  Not classified
## 879  Not classified
## 880  Not classified
## 881  Not classified
## 882  Not classified
## 883  Not classified
## 884  Not classified
## 885  Not classified
## 886  Not classified
## 887  Not classified
## 888  Not classified
## 889  Not classified
## 890  Not classified
## 891  Not classified
## 892  Not classified
## 893  Not classified
## 894  Not classified
## 895  Not classified
## 896  Not classified
## 897  Not classified
## 898  Not classified
## 899  Not classified
## 900  Not classified
## 901  Not classified
## 902  Not classified
## 903  Not classified
## 904  Not classified
## 905  Not classified
## 906  Not classified
## 907  Not classified
## 908  Not classified
## 909  Not classified
## 910  Not classified
## 911  Not classified
## 912  Not classified
## 913  Not classified
## 914  Not classified
## 915  Not classified
## 916  Not classified
## 917  Not classified
## 918  Not classified
## 919  Not classified
## 920  Not classified
## 921  Not classified
## 922  Not classified
## 923  Not classified
## 924  Not classified
## 925  Not classified
## 926  Not classified
## 927  Not classified
## 928  Not classified
## 929  Not classified
## 930  Not classified
## 931            IBRD
## 932            IBRD
## 933            IBRD
## 934            IBRD
## 935            IBRD
## 936            IBRD
## 937            IBRD
## 938            IBRD
## 939            IBRD
## 940            IBRD
## 941            IBRD
## 942            IBRD
## 943            IBRD
## 944            IBRD
## 945            IBRD
## 946            IBRD
## 947            IBRD
## 948            IBRD
## 949            IBRD
## 950            IBRD
## 951            IBRD
## 952            IBRD
## 953            IBRD
## 954            IBRD
## 955            IBRD
## 956            IBRD
## 957            IBRD
## 958            IBRD
## 959            IBRD
## 960            IBRD
## 961            IBRD
## 962            IBRD
## 963            IBRD
## 964            IBRD
## 965            IBRD
## 966            IBRD
## 967            IBRD
## 968            IBRD
## 969            IBRD
## 970            IBRD
## 971            IBRD
## 972            IBRD
## 973            IBRD
## 974            IBRD
## 975            IBRD
## 976            IBRD
## 977            IBRD
## 978            IBRD
## 979            IBRD
## 980            IBRD
## 981            IBRD
## 982            IBRD
## 983            IBRD
## 984            IBRD
## 985            IBRD
## 986            IBRD
## 987            IBRD
## 988            IBRD
## 989            IBRD
## 990            IBRD
## 991            IBRD
## 992            IBRD
## 993  Not classified
## 994  Not classified
## 995  Not classified
## 996  Not classified
## 997  Not classified
## 998  Not classified
## 999  Not classified
## 1000 Not classified
## 1001 Not classified
## 1002 Not classified
## 1003 Not classified
## 1004 Not classified
## 1005 Not classified
## 1006 Not classified
## 1007 Not classified
## 1008 Not classified
## 1009 Not classified
## 1010 Not classified
## 1011 Not classified
## 1012 Not classified
## 1013 Not classified
## 1014 Not classified
## 1015 Not classified
## 1016 Not classified
## 1017 Not classified
## 1018 Not classified
## 1019 Not classified
## 1020 Not classified
## 1021 Not classified
## 1022 Not classified
## 1023 Not classified
## 1024 Not classified
## 1025 Not classified
## 1026 Not classified
## 1027 Not classified
## 1028 Not classified
## 1029 Not classified
## 1030 Not classified
## 1031 Not classified
## 1032 Not classified
## 1033 Not classified
## 1034 Not classified
## 1035 Not classified
## 1036 Not classified
## 1037 Not classified
## 1038 Not classified
## 1039 Not classified
## 1040 Not classified
## 1041 Not classified
## 1042 Not classified
## 1043 Not classified
## 1044 Not classified
## 1045 Not classified
## 1046 Not classified
## 1047 Not classified
## 1048 Not classified
## 1049 Not classified
## 1050 Not classified
## 1051 Not classified
## 1052 Not classified
## 1053 Not classified
## 1054 Not classified
## 1055 Not classified
## 1056 Not classified
## 1057 Not classified
## 1058 Not classified
## 1059 Not classified
## 1060 Not classified
## 1061 Not classified
## 1062 Not classified
## 1063 Not classified
## 1064 Not classified
## 1065 Not classified
## 1066 Not classified
## 1067 Not classified
## 1068 Not classified
## 1069 Not classified
## 1070 Not classified
## 1071 Not classified
## 1072 Not classified
## 1073 Not classified
## 1074 Not classified
## 1075 Not classified
## 1076 Not classified
## 1077 Not classified
## 1078 Not classified
## 1079 Not classified
## 1080 Not classified
## 1081 Not classified
## 1082 Not classified
## 1083 Not classified
## 1084 Not classified
## 1085 Not classified
## 1086 Not classified
## 1087 Not classified
## 1088 Not classified
## 1089 Not classified
## 1090 Not classified
## 1091 Not classified
## 1092 Not classified
## 1093 Not classified
## 1094 Not classified
## 1095 Not classified
## 1096 Not classified
## 1097 Not classified
## 1098 Not classified
## 1099 Not classified
## 1100 Not classified
## 1101 Not classified
## 1102 Not classified
## 1103 Not classified
## 1104 Not classified
## 1105 Not classified
## 1106 Not classified
## 1107 Not classified
## 1108 Not classified
## 1109 Not classified
## 1110 Not classified
## 1111 Not classified
## 1112 Not classified
## 1113 Not classified
## 1114 Not classified
## 1115 Not classified
## 1116 Not classified
## 1117            IDA
## 1118            IDA
## 1119            IDA
## 1120            IDA
## 1121            IDA
## 1122            IDA
## 1123            IDA
## 1124            IDA
## 1125            IDA
## 1126            IDA
## 1127            IDA
## 1128            IDA
## 1129            IDA
## 1130            IDA
## 1131            IDA
## 1132            IDA
## 1133            IDA
## 1134            IDA
## 1135            IDA
## 1136            IDA
## 1137            IDA
## 1138            IDA
## 1139            IDA
## 1140            IDA
## 1141            IDA
## 1142            IDA
## 1143            IDA
## 1144            IDA
## 1145            IDA
## 1146            IDA
## 1147            IDA
## 1148            IDA
## 1149            IDA
## 1150            IDA
## 1151            IDA
## 1152            IDA
## 1153            IDA
## 1154            IDA
## 1155            IDA
## 1156            IDA
## 1157            IDA
## 1158            IDA
## 1159            IDA
## 1160            IDA
## 1161            IDA
## 1162            IDA
## 1163            IDA
## 1164            IDA
## 1165            IDA
## 1166            IDA
## 1167            IDA
## 1168            IDA
## 1169            IDA
## 1170            IDA
## 1171            IDA
## 1172            IDA
## 1173            IDA
## 1174            IDA
## 1175            IDA
## 1176            IDA
## 1177            IDA
## 1178            IDA
## 1179 Not classified
## 1180 Not classified
## 1181 Not classified
## 1182 Not classified
## 1183 Not classified
## 1184 Not classified
## 1185 Not classified
## 1186 Not classified
## 1187 Not classified
## 1188 Not classified
## 1189 Not classified
## 1190 Not classified
## 1191 Not classified
## 1192 Not classified
## 1193 Not classified
## 1194 Not classified
## 1195 Not classified
## 1196 Not classified
## 1197 Not classified
## 1198 Not classified
## 1199 Not classified
## 1200 Not classified
## 1201 Not classified
## 1202 Not classified
## 1203 Not classified
## 1204 Not classified
## 1205 Not classified
## 1206 Not classified
## 1207 Not classified
## 1208 Not classified
## 1209 Not classified
## 1210 Not classified
## 1211 Not classified
## 1212 Not classified
## 1213 Not classified
## 1214 Not classified
## 1215 Not classified
## 1216 Not classified
## 1217 Not classified
## 1218 Not classified
## 1219 Not classified
## 1220 Not classified
## 1221 Not classified
## 1222 Not classified
## 1223 Not classified
## 1224 Not classified
## 1225 Not classified
## 1226 Not classified
## 1227 Not classified
## 1228 Not classified
## 1229 Not classified
## 1230 Not classified
## 1231 Not classified
## 1232 Not classified
## 1233 Not classified
## 1234 Not classified
## 1235 Not classified
## 1236 Not classified
## 1237 Not classified
## 1238 Not classified
## 1239 Not classified
## 1240 Not classified
## 1241           IBRD
## 1242           IBRD
## 1243           IBRD
## 1244           IBRD
## 1245           IBRD
## 1246           IBRD
## 1247           IBRD
## 1248           IBRD
## 1249           IBRD
## 1250           IBRD
## 1251           IBRD
## 1252           IBRD
## 1253           IBRD
## 1254           IBRD
## 1255           IBRD
## 1256           IBRD
## 1257           IBRD
## 1258           IBRD
## 1259           IBRD
## 1260           IBRD
## 1261           IBRD
## 1262           IBRD
## 1263           IBRD
## 1264           IBRD
## 1265           IBRD
## 1266           IBRD
## 1267           IBRD
## 1268           IBRD
## 1269           IBRD
## 1270           IBRD
## 1271           IBRD
## 1272           IBRD
## 1273           IBRD
## 1274           IBRD
## 1275           IBRD
## 1276           IBRD
## 1277           IBRD
## 1278           IBRD
## 1279           IBRD
## 1280           IBRD
## 1281           IBRD
## 1282           IBRD
## 1283           IBRD
## 1284           IBRD
## 1285           IBRD
## 1286           IBRD
## 1287           IBRD
## 1288           IBRD
## 1289           IBRD
## 1290           IBRD
## 1291           IBRD
## 1292           IBRD
## 1293           IBRD
## 1294           IBRD
## 1295           IBRD
## 1296           IBRD
## 1297           IBRD
## 1298           IBRD
## 1299           IBRD
## 1300           IBRD
## 1301           IBRD
## 1302           IBRD
## 1303 Not classified
## 1304 Not classified
## 1305 Not classified
## 1306 Not classified
## 1307 Not classified
## 1308 Not classified
## 1309 Not classified
## 1310 Not classified
## 1311 Not classified
## 1312 Not classified
## 1313 Not classified
## 1314 Not classified
## 1315 Not classified
## 1316 Not classified
## 1317 Not classified
## 1318 Not classified
## 1319 Not classified
## 1320 Not classified
## 1321 Not classified
## 1322 Not classified
## 1323 Not classified
## 1324 Not classified
## 1325 Not classified
## 1326 Not classified
## 1327 Not classified
## 1328 Not classified
## 1329 Not classified
## 1330 Not classified
## 1331 Not classified
## 1332 Not classified
## 1333 Not classified
## 1334 Not classified
## 1335 Not classified
## 1336 Not classified
## 1337 Not classified
## 1338 Not classified
## 1339 Not classified
## 1340 Not classified
## 1341 Not classified
## 1342 Not classified
## 1343 Not classified
## 1344 Not classified
## 1345 Not classified
## 1346 Not classified
## 1347 Not classified
## 1348 Not classified
## 1349 Not classified
## 1350 Not classified
## 1351 Not classified
## 1352 Not classified
## 1353 Not classified
## 1354 Not classified
## 1355 Not classified
## 1356 Not classified
## 1357 Not classified
## 1358 Not classified
## 1359 Not classified
## 1360 Not classified
## 1361 Not classified
## 1362 Not classified
## 1363 Not classified
## 1364 Not classified
## 1365           IBRD
## 1366           IBRD
## 1367           IBRD
## 1368           IBRD
## 1369           IBRD
## 1370           IBRD
## 1371           IBRD
## 1372           IBRD
## 1373           IBRD
## 1374           IBRD
## 1375           IBRD
## 1376           IBRD
## 1377           IBRD
## 1378           IBRD
## 1379           IBRD
## 1380           IBRD
## 1381           IBRD
## 1382           IBRD
## 1383           IBRD
## 1384           IBRD
## 1385           IBRD
## 1386           IBRD
## 1387           IBRD
## 1388           IBRD
## 1389           IBRD
## 1390           IBRD
## 1391           IBRD
## 1392           IBRD
## 1393           IBRD
## 1394           IBRD
## 1395           IBRD
## 1396           IBRD
## 1397           IBRD
## 1398           IBRD
## 1399           IBRD
## 1400           IBRD
## 1401           IBRD
## 1402           IBRD
## 1403           IBRD
## 1404           IBRD
## 1405           IBRD
## 1406           IBRD
## 1407           IBRD
## 1408           IBRD
## 1409           IBRD
## 1410           IBRD
## 1411           IBRD
## 1412           IBRD
## 1413           IBRD
## 1414           IBRD
## 1415           IBRD
## 1416           IBRD
## 1417           IBRD
## 1418           IBRD
## 1419           IBRD
## 1420           IBRD
## 1421           IBRD
## 1422           IBRD
## 1423           IBRD
## 1424           IBRD
## 1425           IBRD
## 1426           IBRD
## 1427            IDA
## 1428            IDA
## 1429            IDA
## 1430            IDA
## 1431            IDA
## 1432            IDA
## 1433            IDA
## 1434            IDA
## 1435            IDA
## 1436            IDA
## 1437            IDA
## 1438            IDA
## 1439            IDA
## 1440            IDA
## 1441            IDA
## 1442            IDA
## 1443            IDA
## 1444            IDA
## 1445            IDA
## 1446            IDA
## 1447            IDA
## 1448            IDA
## 1449            IDA
## 1450            IDA
## 1451            IDA
## 1452            IDA
## 1453            IDA
## 1454            IDA
## 1455            IDA
## 1456            IDA
## 1457            IDA
## 1458            IDA
## 1459            IDA
## 1460            IDA
## 1461            IDA
## 1462            IDA
## 1463            IDA
## 1464            IDA
## 1465            IDA
## 1466            IDA
## 1467            IDA
## 1468            IDA
## 1469            IDA
## 1470            IDA
## 1471            IDA
## 1472            IDA
## 1473            IDA
## 1474            IDA
## 1475            IDA
## 1476            IDA
## 1477            IDA
## 1478            IDA
## 1479            IDA
## 1480            IDA
## 1481            IDA
## 1482            IDA
## 1483            IDA
## 1484            IDA
## 1485            IDA
## 1486            IDA
## 1487            IDA
## 1488            IDA
## 1489 Not classified
## 1490 Not classified
## 1491 Not classified
## 1492 Not classified
## 1493 Not classified
## 1494 Not classified
## 1495 Not classified
## 1496 Not classified
## 1497 Not classified
## 1498 Not classified
## 1499 Not classified
## 1500 Not classified
## 1501 Not classified
## 1502 Not classified
## 1503 Not classified
## 1504 Not classified
## 1505 Not classified
## 1506 Not classified
## 1507 Not classified
## 1508 Not classified
## 1509 Not classified
## 1510 Not classified
## 1511 Not classified
## 1512 Not classified
## 1513 Not classified
## 1514 Not classified
## 1515 Not classified
## 1516 Not classified
## 1517 Not classified
## 1518 Not classified
## 1519 Not classified
## 1520 Not classified
## 1521 Not classified
## 1522 Not classified
## 1523 Not classified
## 1524 Not classified
## 1525 Not classified
## 1526 Not classified
## 1527 Not classified
## 1528 Not classified
## 1529 Not classified
## 1530 Not classified
## 1531 Not classified
## 1532 Not classified
## 1533 Not classified
## 1534 Not classified
## 1535 Not classified
## 1536 Not classified
## 1537 Not classified
## 1538 Not classified
## 1539 Not classified
## 1540 Not classified
## 1541 Not classified
## 1542 Not classified
## 1543 Not classified
## 1544 Not classified
## 1545 Not classified
## 1546 Not classified
## 1547 Not classified
## 1548 Not classified
## 1549 Not classified
## 1550 Not classified
## 1551            IDA
## 1552            IDA
## 1553            IDA
## 1554            IDA
## 1555            IDA
## 1556            IDA
## 1557            IDA
## 1558            IDA
## 1559            IDA
## 1560            IDA
## 1561            IDA
## 1562            IDA
## 1563            IDA
## 1564            IDA
## 1565            IDA
## 1566            IDA
## 1567            IDA
## 1568            IDA
## 1569            IDA
## 1570            IDA
## 1571            IDA
## 1572            IDA
## 1573            IDA
## 1574            IDA
## 1575            IDA
## 1576            IDA
## 1577            IDA
## 1578            IDA
## 1579            IDA
## 1580            IDA
## 1581            IDA
## 1582            IDA
## 1583            IDA
## 1584            IDA
## 1585            IDA
## 1586            IDA
## 1587            IDA
## 1588            IDA
## 1589            IDA
## 1590            IDA
## 1591            IDA
## 1592            IDA
## 1593            IDA
## 1594            IDA
## 1595            IDA
## 1596            IDA
## 1597            IDA
## 1598            IDA
## 1599            IDA
## 1600            IDA
## 1601            IDA
## 1602            IDA
## 1603            IDA
## 1604            IDA
## 1605            IDA
## 1606            IDA
## 1607            IDA
## 1608            IDA
## 1609            IDA
## 1610            IDA
## 1611            IDA
## 1612            IDA
## 1613           IBRD
## 1614           IBRD
## 1615           IBRD
## 1616           IBRD
## 1617           IBRD
## 1618           IBRD
## 1619           IBRD
## 1620           IBRD
## 1621           IBRD
## 1622           IBRD
## 1623           IBRD
## 1624           IBRD
## 1625           IBRD
## 1626           IBRD
## 1627           IBRD
## 1628           IBRD
## 1629           IBRD
## 1630           IBRD
## 1631           IBRD
## 1632           IBRD
## 1633           IBRD
## 1634           IBRD
## 1635           IBRD
## 1636           IBRD
## 1637           IBRD
## 1638           IBRD
## 1639           IBRD
## 1640           IBRD
## 1641           IBRD
## 1642           IBRD
## 1643           IBRD
## 1644           IBRD
## 1645           IBRD
## 1646           IBRD
## 1647           IBRD
## 1648           IBRD
## 1649           IBRD
## 1650           IBRD
## 1651           IBRD
## 1652           IBRD
## 1653           IBRD
## 1654           IBRD
## 1655           IBRD
## 1656           IBRD
## 1657           IBRD
## 1658           IBRD
## 1659           IBRD
## 1660           IBRD
## 1661           IBRD
## 1662           IBRD
## 1663           IBRD
## 1664           IBRD
## 1665           IBRD
## 1666           IBRD
## 1667           IBRD
## 1668           IBRD
## 1669           IBRD
## 1670           IBRD
## 1671           IBRD
## 1672           IBRD
## 1673           IBRD
## 1674           IBRD
## 1675           IBRD
## 1676           IBRD
## 1677           IBRD
## 1678           IBRD
## 1679           IBRD
## 1680           IBRD
## 1681           IBRD
## 1682           IBRD
## 1683           IBRD
## 1684           IBRD
## 1685           IBRD
## 1686           IBRD
## 1687           IBRD
## 1688           IBRD
## 1689           IBRD
## 1690           IBRD
## 1691           IBRD
## 1692           IBRD
## 1693           IBRD
## 1694           IBRD
## 1695           IBRD
## 1696           IBRD
## 1697           IBRD
## 1698           IBRD
## 1699           IBRD
## 1700           IBRD
## 1701           IBRD
## 1702           IBRD
## 1703           IBRD
## 1704           IBRD
## 1705           IBRD
## 1706           IBRD
## 1707           IBRD
## 1708           IBRD
## 1709           IBRD
## 1710           IBRD
## 1711           IBRD
## 1712           IBRD
## 1713           IBRD
## 1714           IBRD
## 1715           IBRD
## 1716           IBRD
## 1717           IBRD
## 1718           IBRD
## 1719           IBRD
## 1720           IBRD
## 1721           IBRD
## 1722           IBRD
## 1723           IBRD
## 1724           IBRD
## 1725           IBRD
## 1726           IBRD
## 1727           IBRD
## 1728           IBRD
## 1729           IBRD
## 1730           IBRD
## 1731           IBRD
## 1732           IBRD
## 1733           IBRD
## 1734           IBRD
## 1735           IBRD
## 1736           IBRD
## 1737           IBRD
## 1738           IBRD
## 1739           IBRD
## 1740           IBRD
## 1741           IBRD
## 1742           IBRD
## 1743           IBRD
## 1744           IBRD
## 1745           IBRD
## 1746           IBRD
## 1747           IBRD
## 1748           IBRD
## 1749           IBRD
## 1750           IBRD
## 1751           IBRD
## 1752           IBRD
## 1753           IBRD
## 1754           IBRD
## 1755           IBRD
## 1756           IBRD
## 1757           IBRD
## 1758           IBRD
## 1759           IBRD
## 1760           IBRD
## 1761           IBRD
## 1762           IBRD
## 1763           IBRD
## 1764           IBRD
## 1765           IBRD
## 1766           IBRD
## 1767           IBRD
## 1768           IBRD
## 1769           IBRD
## 1770           IBRD
## 1771           IBRD
## 1772           IBRD
## 1773           IBRD
## 1774           IBRD
## 1775           IBRD
## 1776           IBRD
## 1777           IBRD
## 1778           IBRD
## 1779           IBRD
## 1780           IBRD
## 1781           IBRD
## 1782           IBRD
## 1783           IBRD
## 1784           IBRD
## 1785           IBRD
## 1786           IBRD
## 1787           IBRD
## 1788           IBRD
## 1789           IBRD
## 1790           IBRD
## 1791           IBRD
## 1792           IBRD
## 1793           IBRD
## 1794           IBRD
## 1795           IBRD
## 1796           IBRD
## 1797           IBRD
## 1798           IBRD
## 1799           IBRD
## 1800           IBRD
## 1801           IBRD
## 1802           IBRD
## 1803           IBRD
## 1804           IBRD
## 1805           IBRD
## 1806           IBRD
## 1807           IBRD
## 1808           IBRD
## 1809           IBRD
## 1810           IBRD
## 1811           IBRD
## 1812           IBRD
## 1813           IBRD
## 1814           IBRD
## 1815           IBRD
## 1816           IBRD
## 1817           IBRD
## 1818           IBRD
## 1819           IBRD
## 1820           IBRD
## 1821           IBRD
## 1822           IBRD
## 1823           IBRD
## 1824           IBRD
## 1825           IBRD
## 1826           IBRD
## 1827           IBRD
## 1828           IBRD
## 1829           IBRD
## 1830           IBRD
## 1831           IBRD
## 1832           IBRD
## 1833           IBRD
## 1834           IBRD
## 1835           IBRD
## 1836           IBRD
## 1837           IBRD
## 1838           IBRD
## 1839           IBRD
## 1840           IBRD
## 1841           IBRD
## 1842           IBRD
## 1843           IBRD
## 1844           IBRD
## 1845           IBRD
## 1846           IBRD
## 1847           IBRD
## 1848           IBRD
## 1849           IBRD
## 1850           IBRD
## 1851           IBRD
## 1852           IBRD
## 1853           IBRD
## 1854           IBRD
## 1855           IBRD
## 1856           IBRD
## 1857           IBRD
## 1858           IBRD
## 1859           IBRD
## 1860           IBRD
## 1861 Not classified
## 1862 Not classified
## 1863 Not classified
## 1864 Not classified
## 1865 Not classified
## 1866 Not classified
## 1867 Not classified
## 1868 Not classified
## 1869 Not classified
## 1870 Not classified
## 1871 Not classified
## 1872 Not classified
## 1873 Not classified
## 1874 Not classified
## 1875 Not classified
## 1876 Not classified
## 1877 Not classified
## 1878 Not classified
## 1879 Not classified
## 1880 Not classified
## 1881 Not classified
## 1882 Not classified
## 1883 Not classified
## 1884 Not classified
## 1885 Not classified
## 1886 Not classified
## 1887 Not classified
## 1888 Not classified
## 1889 Not classified
## 1890 Not classified
## 1891 Not classified
## 1892 Not classified
## 1893 Not classified
## 1894 Not classified
## 1895 Not classified
## 1896 Not classified
## 1897 Not classified
## 1898 Not classified
## 1899 Not classified
## 1900 Not classified
## 1901 Not classified
## 1902 Not classified
## 1903 Not classified
## 1904 Not classified
## 1905 Not classified
## 1906 Not classified
## 1907 Not classified
## 1908 Not classified
## 1909 Not classified
## 1910 Not classified
## 1911 Not classified
## 1912 Not classified
## 1913 Not classified
## 1914 Not classified
## 1915 Not classified
## 1916 Not classified
## 1917 Not classified
## 1918 Not classified
## 1919 Not classified
## 1920 Not classified
## 1921 Not classified
## 1922 Not classified
## 1923 Not classified
## 1924 Not classified
## 1925 Not classified
## 1926 Not classified
## 1927 Not classified
## 1928 Not classified
## 1929 Not classified
## 1930 Not classified
## 1931 Not classified
## 1932 Not classified
## 1933 Not classified
## 1934 Not classified
## 1935 Not classified
## 1936 Not classified
## 1937 Not classified
## 1938 Not classified
## 1939 Not classified
## 1940 Not classified
## 1941 Not classified
## 1942 Not classified
## 1943 Not classified
## 1944 Not classified
## 1945 Not classified
## 1946 Not classified
## 1947 Not classified
## 1948 Not classified
## 1949 Not classified
## 1950 Not classified
## 1951 Not classified
## 1952 Not classified
## 1953 Not classified
## 1954 Not classified
## 1955 Not classified
## 1956 Not classified
## 1957 Not classified
## 1958 Not classified
## 1959 Not classified
## 1960 Not classified
## 1961 Not classified
## 1962 Not classified
## 1963 Not classified
## 1964 Not classified
## 1965 Not classified
## 1966 Not classified
## 1967 Not classified
## 1968 Not classified
## 1969 Not classified
## 1970 Not classified
## 1971 Not classified
## 1972 Not classified
## 1973 Not classified
## 1974 Not classified
## 1975 Not classified
## 1976 Not classified
## 1977 Not classified
## 1978 Not classified
## 1979 Not classified
## 1980 Not classified
## 1981 Not classified
## 1982 Not classified
## 1983 Not classified
## 1984 Not classified
## 1985           IBRD
## 1986           IBRD
## 1987           IBRD
## 1988           IBRD
## 1989           IBRD
## 1990           IBRD
## 1991           IBRD
## 1992           IBRD
## 1993           IBRD
## 1994           IBRD
## 1995           IBRD
## 1996           IBRD
## 1997           IBRD
## 1998           IBRD
## 1999           IBRD
## 2000           IBRD
## 2001           IBRD
## 2002           IBRD
## 2003           IBRD
## 2004           IBRD
## 2005           IBRD
## 2006           IBRD
## 2007           IBRD
## 2008           IBRD
## 2009           IBRD
## 2010           IBRD
## 2011           IBRD
## 2012           IBRD
## 2013           IBRD
## 2014           IBRD
## 2015           IBRD
## 2016           IBRD
## 2017           IBRD
## 2018           IBRD
## 2019           IBRD
## 2020           IBRD
## 2021           IBRD
## 2022           IBRD
## 2023           IBRD
## 2024           IBRD
## 2025           IBRD
## 2026           IBRD
## 2027           IBRD
## 2028           IBRD
## 2029           IBRD
## 2030           IBRD
## 2031           IBRD
## 2032           IBRD
## 2033           IBRD
## 2034           IBRD
## 2035           IBRD
## 2036           IBRD
## 2037           IBRD
## 2038           IBRD
## 2039           IBRD
## 2040           IBRD
## 2041           IBRD
## 2042           IBRD
## 2043           IBRD
## 2044           IBRD
## 2045           IBRD
## 2046           IBRD
## 2047            IDA
## 2048            IDA
## 2049            IDA
## 2050            IDA
## 2051            IDA
## 2052            IDA
## 2053            IDA
## 2054            IDA
## 2055            IDA
## 2056            IDA
## 2057            IDA
## 2058            IDA
## 2059            IDA
## 2060            IDA
## 2061            IDA
## 2062            IDA
## 2063            IDA
## 2064            IDA
## 2065            IDA
## 2066            IDA
## 2067            IDA
## 2068            IDA
## 2069            IDA
## 2070            IDA
## 2071            IDA
## 2072            IDA
## 2073            IDA
## 2074            IDA
## 2075            IDA
## 2076            IDA
## 2077            IDA
## 2078            IDA
## 2079            IDA
## 2080            IDA
## 2081            IDA
## 2082            IDA
## 2083            IDA
## 2084            IDA
## 2085            IDA
## 2086            IDA
## 2087            IDA
## 2088            IDA
## 2089            IDA
## 2090            IDA
## 2091            IDA
## 2092            IDA
## 2093            IDA
## 2094            IDA
## 2095            IDA
## 2096            IDA
## 2097            IDA
## 2098            IDA
## 2099            IDA
## 2100            IDA
## 2101            IDA
## 2102            IDA
## 2103            IDA
## 2104            IDA
## 2105            IDA
## 2106            IDA
## 2107            IDA
## 2108            IDA
## 2109            IDA
## 2110            IDA
## 2111            IDA
## 2112            IDA
## 2113            IDA
## 2114            IDA
## 2115            IDA
## 2116            IDA
## 2117            IDA
## 2118            IDA
## 2119            IDA
## 2120            IDA
## 2121            IDA
## 2122            IDA
## 2123            IDA
## 2124            IDA
## 2125            IDA
## 2126            IDA
## 2127            IDA
## 2128            IDA
## 2129            IDA
## 2130            IDA
## 2131            IDA
## 2132            IDA
## 2133            IDA
## 2134            IDA
## 2135            IDA
## 2136            IDA
## 2137            IDA
## 2138            IDA
## 2139            IDA
## 2140            IDA
## 2141            IDA
## 2142            IDA
## 2143            IDA
## 2144            IDA
## 2145            IDA
## 2146            IDA
## 2147            IDA
## 2148            IDA
## 2149            IDA
## 2150            IDA
## 2151            IDA
## 2152            IDA
## 2153            IDA
## 2154            IDA
## 2155            IDA
## 2156            IDA
## 2157            IDA
## 2158            IDA
## 2159            IDA
## 2160            IDA
## 2161            IDA
## 2162            IDA
## 2163            IDA
## 2164            IDA
## 2165            IDA
## 2166            IDA
## 2167            IDA
## 2168            IDA
## 2169            IDA
## 2170            IDA
## 2171          Blend
## 2172          Blend
## 2173          Blend
## 2174          Blend
## 2175          Blend
## 2176          Blend
## 2177          Blend
## 2178          Blend
## 2179          Blend
## 2180          Blend
## 2181          Blend
## 2182          Blend
## 2183          Blend
## 2184          Blend
## 2185          Blend
## 2186          Blend
## 2187          Blend
## 2188          Blend
## 2189          Blend
## 2190          Blend
## 2191          Blend
## 2192          Blend
## 2193          Blend
## 2194          Blend
## 2195          Blend
## 2196          Blend
## 2197          Blend
## 2198          Blend
## 2199          Blend
## 2200          Blend
## 2201          Blend
## 2202          Blend
## 2203          Blend
## 2204          Blend
## 2205          Blend
## 2206          Blend
## 2207          Blend
## 2208          Blend
## 2209          Blend
## 2210          Blend
## 2211          Blend
## 2212          Blend
## 2213          Blend
## 2214          Blend
## 2215          Blend
## 2216          Blend
## 2217          Blend
## 2218          Blend
## 2219          Blend
## 2220          Blend
## 2221          Blend
## 2222          Blend
## 2223          Blend
## 2224          Blend
## 2225          Blend
## 2226          Blend
## 2227          Blend
## 2228          Blend
## 2229          Blend
## 2230          Blend
## 2231          Blend
## 2232          Blend
## 2233            IDA
## 2234            IDA
## 2235            IDA
## 2236            IDA
## 2237            IDA
## 2238            IDA
## 2239            IDA
## 2240            IDA
## 2241            IDA
## 2242            IDA
## 2243            IDA
## 2244            IDA
## 2245            IDA
## 2246            IDA
## 2247            IDA
## 2248            IDA
## 2249            IDA
## 2250            IDA
## 2251            IDA
## 2252            IDA
## 2253            IDA
## 2254            IDA
## 2255            IDA
## 2256            IDA
## 2257            IDA
## 2258            IDA
## 2259            IDA
## 2260            IDA
## 2261            IDA
## 2262            IDA
## 2263            IDA
## 2264            IDA
## 2265            IDA
## 2266            IDA
## 2267            IDA
## 2268            IDA
## 2269            IDA
## 2270            IDA
## 2271            IDA
## 2272            IDA
## 2273            IDA
## 2274            IDA
## 2275            IDA
## 2276            IDA
## 2277            IDA
## 2278            IDA
## 2279            IDA
## 2280            IDA
## 2281            IDA
## 2282            IDA
## 2283            IDA
## 2284            IDA
## 2285            IDA
## 2286            IDA
## 2287            IDA
## 2288            IDA
## 2289            IDA
## 2290            IDA
## 2291            IDA
## 2292            IDA
## 2293            IDA
## 2294            IDA
## 2295          Blend
## 2296          Blend
## 2297          Blend
## 2298          Blend
## 2299          Blend
## 2300          Blend
## 2301          Blend
## 2302          Blend
## 2303          Blend
## 2304          Blend
## 2305          Blend
## 2306          Blend
## 2307          Blend
## 2308          Blend
## 2309          Blend
## 2310          Blend
## 2311          Blend
## 2312          Blend
## 2313          Blend
## 2314          Blend
## 2315          Blend
## 2316          Blend
## 2317          Blend
## 2318          Blend
## 2319          Blend
## 2320          Blend
## 2321          Blend
## 2322          Blend
## 2323          Blend
## 2324          Blend
## 2325          Blend
## 2326          Blend
## 2327          Blend
## 2328          Blend
## 2329          Blend
## 2330          Blend
## 2331          Blend
## 2332          Blend
## 2333          Blend
## 2334          Blend
## 2335          Blend
## 2336          Blend
## 2337          Blend
## 2338          Blend
## 2339          Blend
## 2340          Blend
## 2341          Blend
## 2342          Blend
## 2343          Blend
## 2344          Blend
## 2345          Blend
## 2346          Blend
## 2347          Blend
## 2348          Blend
## 2349          Blend
## 2350          Blend
## 2351          Blend
## 2352          Blend
## 2353          Blend
## 2354          Blend
## 2355          Blend
## 2356          Blend
## 2357 Not classified
## 2358 Not classified
## 2359 Not classified
## 2360 Not classified
## 2361 Not classified
## 2362 Not classified
## 2363 Not classified
## 2364 Not classified
## 2365 Not classified
## 2366 Not classified
## 2367 Not classified
## 2368 Not classified
## 2369 Not classified
## 2370 Not classified
## 2371 Not classified
## 2372 Not classified
## 2373 Not classified
## 2374 Not classified
## 2375 Not classified
## 2376 Not classified
## 2377 Not classified
## 2378 Not classified
## 2379 Not classified
## 2380 Not classified
## 2381 Not classified
## 2382 Not classified
## 2383 Not classified
## 2384 Not classified
## 2385 Not classified
## 2386 Not classified
## 2387 Not classified
## 2388 Not classified
## 2389 Not classified
## 2390 Not classified
## 2391 Not classified
## 2392 Not classified
## 2393 Not classified
## 2394 Not classified
## 2395 Not classified
## 2396 Not classified
## 2397 Not classified
## 2398 Not classified
## 2399 Not classified
## 2400 Not classified
## 2401 Not classified
## 2402 Not classified
## 2403 Not classified
## 2404 Not classified
## 2405 Not classified
## 2406 Not classified
## 2407 Not classified
## 2408 Not classified
## 2409 Not classified
## 2410 Not classified
## 2411 Not classified
## 2412 Not classified
## 2413 Not classified
## 2414 Not classified
## 2415 Not classified
## 2416 Not classified
## 2417 Not classified
## 2418 Not classified
## 2419     Aggregates
## 2420     Aggregates
## 2421     Aggregates
## 2422     Aggregates
## 2423     Aggregates
## 2424     Aggregates
## 2425     Aggregates
## 2426     Aggregates
## 2427     Aggregates
## 2428     Aggregates
## 2429     Aggregates
## 2430     Aggregates
## 2431     Aggregates
## 2432     Aggregates
## 2433     Aggregates
## 2434     Aggregates
## 2435     Aggregates
## 2436     Aggregates
## 2437     Aggregates
## 2438     Aggregates
## 2439     Aggregates
## 2440     Aggregates
## 2441     Aggregates
## 2442     Aggregates
## 2443     Aggregates
## 2444     Aggregates
## 2445     Aggregates
## 2446     Aggregates
## 2447     Aggregates
## 2448     Aggregates
## 2449     Aggregates
## 2450     Aggregates
## 2451     Aggregates
## 2452     Aggregates
## 2453     Aggregates
## 2454     Aggregates
## 2455     Aggregates
## 2456     Aggregates
## 2457     Aggregates
## 2458     Aggregates
## 2459     Aggregates
## 2460     Aggregates
## 2461     Aggregates
## 2462     Aggregates
## 2463     Aggregates
## 2464     Aggregates
## 2465     Aggregates
## 2466     Aggregates
## 2467     Aggregates
## 2468     Aggregates
## 2469     Aggregates
## 2470     Aggregates
## 2471     Aggregates
## 2472     Aggregates
## 2473     Aggregates
## 2474     Aggregates
## 2475     Aggregates
## 2476     Aggregates
## 2477     Aggregates
## 2478     Aggregates
## 2479     Aggregates
## 2480     Aggregates
## 2481 Not classified
## 2482 Not classified
## 2483 Not classified
## 2484 Not classified
## 2485 Not classified
## 2486 Not classified
## 2487 Not classified
## 2488 Not classified
## 2489 Not classified
## 2490 Not classified
## 2491 Not classified
## 2492 Not classified
## 2493 Not classified
## 2494 Not classified
## 2495 Not classified
## 2496 Not classified
## 2497 Not classified
## 2498 Not classified
## 2499 Not classified
## 2500 Not classified
## 2501 Not classified
## 2502 Not classified
## 2503 Not classified
## 2504 Not classified
## 2505 Not classified
## 2506 Not classified
## 2507 Not classified
## 2508 Not classified
## 2509 Not classified
## 2510 Not classified
## 2511 Not classified
## 2512 Not classified
## 2513 Not classified
## 2514 Not classified
## 2515 Not classified
## 2516 Not classified
## 2517 Not classified
## 2518 Not classified
## 2519 Not classified
## 2520 Not classified
## 2521 Not classified
## 2522 Not classified
## 2523 Not classified
## 2524 Not classified
## 2525 Not classified
## 2526 Not classified
## 2527 Not classified
## 2528 Not classified
## 2529 Not classified
## 2530 Not classified
## 2531 Not classified
## 2532 Not classified
## 2533 Not classified
## 2534 Not classified
## 2535 Not classified
## 2536 Not classified
## 2537 Not classified
## 2538 Not classified
## 2539 Not classified
## 2540 Not classified
## 2541 Not classified
## 2542 Not classified
## 2543            IDA
## 2544            IDA
## 2545            IDA
## 2546            IDA
## 2547            IDA
## 2548            IDA
## 2549            IDA
## 2550            IDA
## 2551            IDA
## 2552            IDA
## 2553            IDA
## 2554            IDA
## 2555            IDA
## 2556            IDA
## 2557            IDA
## 2558            IDA
## 2559            IDA
## 2560            IDA
## 2561            IDA
## 2562            IDA
## 2563            IDA
## 2564            IDA
## 2565            IDA
## 2566            IDA
## 2567            IDA
## 2568            IDA
## 2569            IDA
## 2570            IDA
## 2571            IDA
## 2572            IDA
## 2573            IDA
## 2574            IDA
## 2575            IDA
## 2576            IDA
## 2577            IDA
## 2578            IDA
## 2579            IDA
## 2580            IDA
## 2581            IDA
## 2582            IDA
## 2583            IDA
## 2584            IDA
## 2585            IDA
## 2586            IDA
## 2587            IDA
## 2588            IDA
## 2589            IDA
## 2590            IDA
## 2591            IDA
## 2592            IDA
## 2593            IDA
## 2594            IDA
## 2595            IDA
## 2596            IDA
## 2597            IDA
## 2598            IDA
## 2599            IDA
## 2600            IDA
## 2601            IDA
## 2602            IDA
## 2603            IDA
## 2604            IDA
## 2605     Aggregates
## 2606     Aggregates
## 2607     Aggregates
## 2608     Aggregates
## 2609     Aggregates
## 2610     Aggregates
## 2611     Aggregates
## 2612     Aggregates
## 2613     Aggregates
## 2614     Aggregates
## 2615     Aggregates
## 2616     Aggregates
## 2617     Aggregates
## 2618     Aggregates
## 2619     Aggregates
## 2620     Aggregates
## 2621     Aggregates
## 2622     Aggregates
## 2623     Aggregates
## 2624     Aggregates
## 2625     Aggregates
## 2626     Aggregates
## 2627     Aggregates
## 2628     Aggregates
## 2629     Aggregates
## 2630     Aggregates
## 2631     Aggregates
## 2632     Aggregates
## 2633     Aggregates
## 2634     Aggregates
## 2635     Aggregates
## 2636     Aggregates
## 2637     Aggregates
## 2638     Aggregates
## 2639     Aggregates
## 2640     Aggregates
## 2641     Aggregates
## 2642     Aggregates
## 2643     Aggregates
## 2644     Aggregates
## 2645     Aggregates
## 2646     Aggregates
## 2647     Aggregates
## 2648     Aggregates
## 2649     Aggregates
## 2650     Aggregates
## 2651     Aggregates
## 2652     Aggregates
## 2653     Aggregates
## 2654     Aggregates
## 2655     Aggregates
## 2656     Aggregates
## 2657     Aggregates
## 2658     Aggregates
## 2659     Aggregates
## 2660     Aggregates
## 2661     Aggregates
## 2662     Aggregates
## 2663     Aggregates
## 2664     Aggregates
## 2665     Aggregates
## 2666     Aggregates
## 2667            IDA
## 2668            IDA
## 2669            IDA
## 2670            IDA
## 2671            IDA
## 2672            IDA
## 2673            IDA
## 2674            IDA
## 2675            IDA
## 2676            IDA
## 2677            IDA
## 2678            IDA
## 2679            IDA
## 2680            IDA
## 2681            IDA
## 2682            IDA
## 2683            IDA
## 2684            IDA
## 2685            IDA
## 2686            IDA
## 2687            IDA
## 2688            IDA
## 2689            IDA
## 2690            IDA
## 2691            IDA
## 2692            IDA
## 2693            IDA
## 2694            IDA
## 2695            IDA
## 2696            IDA
## 2697            IDA
## 2698            IDA
## 2699            IDA
## 2700            IDA
## 2701            IDA
## 2702            IDA
## 2703            IDA
## 2704            IDA
## 2705            IDA
## 2706            IDA
## 2707            IDA
## 2708            IDA
## 2709            IDA
## 2710            IDA
## 2711            IDA
## 2712            IDA
## 2713            IDA
## 2714            IDA
## 2715            IDA
## 2716            IDA
## 2717            IDA
## 2718            IDA
## 2719            IDA
## 2720            IDA
## 2721            IDA
## 2722            IDA
## 2723            IDA
## 2724            IDA
## 2725            IDA
## 2726            IDA
## 2727            IDA
## 2728            IDA
## 2729 Not classified
## 2730 Not classified
## 2731 Not classified
## 2732 Not classified
## 2733 Not classified
## 2734 Not classified
## 2735 Not classified
## 2736 Not classified
## 2737 Not classified
## 2738 Not classified
## 2739 Not classified
## 2740 Not classified
## 2741 Not classified
## 2742 Not classified
## 2743 Not classified
## 2744 Not classified
## 2745 Not classified
## 2746 Not classified
## 2747 Not classified
## 2748 Not classified
## 2749 Not classified
## 2750 Not classified
## 2751 Not classified
## 2752 Not classified
## 2753 Not classified
## 2754 Not classified
## 2755 Not classified
## 2756 Not classified
## 2757 Not classified
## 2758 Not classified
## 2759 Not classified
## 2760 Not classified
## 2761 Not classified
## 2762 Not classified
## 2763 Not classified
## 2764 Not classified
## 2765 Not classified
## 2766 Not classified
## 2767 Not classified
## 2768 Not classified
## 2769 Not classified
## 2770 Not classified
## 2771 Not classified
## 2772 Not classified
## 2773 Not classified
## 2774 Not classified
## 2775 Not classified
## 2776 Not classified
## 2777 Not classified
## 2778 Not classified
## 2779 Not classified
## 2780 Not classified
## 2781 Not classified
## 2782 Not classified
## 2783 Not classified
## 2784 Not classified
## 2785 Not classified
## 2786 Not classified
## 2787 Not classified
## 2788 Not classified
## 2789 Not classified
## 2790 Not classified
## 2791           IBRD
## 2792           IBRD
## 2793           IBRD
## 2794           IBRD
## 2795           IBRD
## 2796           IBRD
## 2797           IBRD
## 2798           IBRD
## 2799           IBRD
## 2800           IBRD
## 2801           IBRD
## 2802           IBRD
## 2803           IBRD
## 2804           IBRD
## 2805           IBRD
## 2806           IBRD
## 2807           IBRD
## 2808           IBRD
## 2809           IBRD
## 2810           IBRD
## 2811           IBRD
## 2812           IBRD
## 2813           IBRD
## 2814           IBRD
## 2815           IBRD
## 2816           IBRD
## 2817           IBRD
## 2818           IBRD
## 2819           IBRD
## 2820           IBRD
## 2821           IBRD
## 2822           IBRD
## 2823           IBRD
## 2824           IBRD
## 2825           IBRD
## 2826           IBRD
## 2827           IBRD
## 2828           IBRD
## 2829           IBRD
## 2830           IBRD
## 2831           IBRD
## 2832           IBRD
## 2833           IBRD
## 2834           IBRD
## 2835           IBRD
## 2836           IBRD
## 2837           IBRD
## 2838           IBRD
## 2839           IBRD
## 2840           IBRD
## 2841           IBRD
## 2842           IBRD
## 2843           IBRD
## 2844           IBRD
## 2845           IBRD
## 2846           IBRD
## 2847           IBRD
## 2848           IBRD
## 2849           IBRD
## 2850           IBRD
## 2851           IBRD
## 2852           IBRD
## 2853           IBRD
## 2854           IBRD
## 2855           IBRD
## 2856           IBRD
## 2857           IBRD
## 2858           IBRD
## 2859           IBRD
## 2860           IBRD
## 2861           IBRD
## 2862           IBRD
## 2863           IBRD
## 2864           IBRD
## 2865           IBRD
## 2866           IBRD
## 2867           IBRD
## 2868           IBRD
## 2869           IBRD
## 2870           IBRD
## 2871           IBRD
## 2872           IBRD
## 2873           IBRD
## 2874           IBRD
## 2875           IBRD
## 2876           IBRD
## 2877           IBRD
## 2878           IBRD
## 2879           IBRD
## 2880           IBRD
## 2881           IBRD
## 2882           IBRD
## 2883           IBRD
## 2884           IBRD
## 2885           IBRD
## 2886           IBRD
## 2887           IBRD
## 2888           IBRD
## 2889           IBRD
## 2890           IBRD
## 2891           IBRD
## 2892           IBRD
## 2893           IBRD
## 2894           IBRD
## 2895           IBRD
## 2896           IBRD
## 2897           IBRD
## 2898           IBRD
## 2899           IBRD
## 2900           IBRD
## 2901           IBRD
## 2902           IBRD
## 2903           IBRD
## 2904           IBRD
## 2905           IBRD
## 2906           IBRD
## 2907           IBRD
## 2908           IBRD
## 2909           IBRD
## 2910           IBRD
## 2911           IBRD
## 2912           IBRD
## 2913           IBRD
## 2914           IBRD
## 2915           IBRD
## 2916           IBRD
## 2917           IBRD
## 2918           IBRD
## 2919           IBRD
## 2920           IBRD
## 2921           IBRD
## 2922           IBRD
## 2923           IBRD
## 2924           IBRD
## 2925           IBRD
## 2926           IBRD
## 2927           IBRD
## 2928           IBRD
## 2929           IBRD
## 2930           IBRD
## 2931           IBRD
## 2932           IBRD
## 2933           IBRD
## 2934           IBRD
## 2935           IBRD
## 2936           IBRD
## 2937           IBRD
## 2938           IBRD
## 2939           IBRD
## 2940           IBRD
## 2941           IBRD
## 2942           IBRD
## 2943           IBRD
## 2944           IBRD
## 2945           IBRD
## 2946           IBRD
## 2947           IBRD
## 2948           IBRD
## 2949           IBRD
## 2950           IBRD
## 2951           IBRD
## 2952           IBRD
## 2953           IBRD
## 2954           IBRD
## 2955           IBRD
## 2956           IBRD
## 2957           IBRD
## 2958           IBRD
## 2959           IBRD
## 2960           IBRD
## 2961           IBRD
## 2962           IBRD
## 2963           IBRD
## 2964           IBRD
## 2965           IBRD
## 2966           IBRD
## 2967           IBRD
## 2968           IBRD
## 2969           IBRD
## 2970           IBRD
## 2971           IBRD
## 2972           IBRD
## 2973           IBRD
## 2974           IBRD
## 2975           IBRD
## 2976           IBRD
## 2977            IDA
## 2978            IDA
## 2979            IDA
## 2980            IDA
## 2981            IDA
## 2982            IDA
## 2983            IDA
## 2984            IDA
## 2985            IDA
## 2986            IDA
## 2987            IDA
## 2988            IDA
## 2989            IDA
## 2990            IDA
## 2991            IDA
## 2992            IDA
## 2993            IDA
## 2994            IDA
## 2995            IDA
## 2996            IDA
## 2997            IDA
## 2998            IDA
## 2999            IDA
## 3000            IDA
## 3001            IDA
## 3002            IDA
## 3003            IDA
## 3004            IDA
## 3005            IDA
## 3006            IDA
## 3007            IDA
## 3008            IDA
## 3009            IDA
## 3010            IDA
## 3011            IDA
## 3012            IDA
## 3013            IDA
## 3014            IDA
## 3015            IDA
## 3016            IDA
## 3017            IDA
## 3018            IDA
## 3019            IDA
## 3020            IDA
## 3021            IDA
## 3022            IDA
## 3023            IDA
## 3024            IDA
## 3025            IDA
## 3026            IDA
## 3027            IDA
## 3028            IDA
## 3029            IDA
## 3030            IDA
## 3031            IDA
## 3032            IDA
## 3033            IDA
## 3034            IDA
## 3035            IDA
## 3036            IDA
## 3037            IDA
## 3038            IDA
## 3039            IDA
## 3040            IDA
## 3041            IDA
## 3042            IDA
## 3043            IDA
## 3044            IDA
## 3045            IDA
## 3046            IDA
## 3047            IDA
## 3048            IDA
## 3049            IDA
## 3050            IDA
## 3051            IDA
## 3052            IDA
## 3053            IDA
## 3054            IDA
## 3055            IDA
## 3056            IDA
## 3057            IDA
## 3058            IDA
## 3059            IDA
## 3060            IDA
## 3061            IDA
## 3062            IDA
## 3063            IDA
## 3064            IDA
## 3065            IDA
## 3066            IDA
## 3067            IDA
## 3068            IDA
## 3069            IDA
## 3070            IDA
## 3071            IDA
## 3072            IDA
## 3073            IDA
## 3074            IDA
## 3075            IDA
## 3076            IDA
## 3077            IDA
## 3078            IDA
## 3079            IDA
## 3080            IDA
## 3081            IDA
## 3082            IDA
## 3083            IDA
## 3084            IDA
## 3085            IDA
## 3086            IDA
## 3087            IDA
## 3088            IDA
## 3089            IDA
## 3090            IDA
## 3091            IDA
## 3092            IDA
## 3093            IDA
## 3094            IDA
## 3095            IDA
## 3096            IDA
## 3097            IDA
## 3098            IDA
## 3099            IDA
## 3100            IDA
## 3101          Blend
## 3102          Blend
## 3103          Blend
## 3104          Blend
## 3105          Blend
## 3106          Blend
## 3107          Blend
## 3108          Blend
## 3109          Blend
## 3110          Blend
## 3111          Blend
## 3112          Blend
## 3113          Blend
## 3114          Blend
## 3115          Blend
## 3116          Blend
## 3117          Blend
## 3118          Blend
## 3119          Blend
## 3120          Blend
## 3121          Blend
## 3122          Blend
## 3123          Blend
## 3124          Blend
## 3125          Blend
## 3126          Blend
## 3127          Blend
## 3128          Blend
## 3129          Blend
## 3130          Blend
## 3131          Blend
## 3132          Blend
## 3133          Blend
## 3134          Blend
## 3135          Blend
## 3136          Blend
## 3137          Blend
## 3138          Blend
## 3139          Blend
## 3140          Blend
## 3141          Blend
## 3142          Blend
## 3143          Blend
## 3144          Blend
## 3145          Blend
## 3146          Blend
## 3147          Blend
## 3148          Blend
## 3149          Blend
## 3150          Blend
## 3151          Blend
## 3152          Blend
## 3153          Blend
## 3154          Blend
## 3155          Blend
## 3156          Blend
## 3157          Blend
## 3158          Blend
## 3159          Blend
## 3160          Blend
## 3161          Blend
## 3162          Blend
## 3163           IBRD
## 3164           IBRD
## 3165           IBRD
## 3166           IBRD
## 3167           IBRD
## 3168           IBRD
## 3169           IBRD
## 3170           IBRD
## 3171           IBRD
## 3172           IBRD
## 3173           IBRD
## 3174           IBRD
## 3175           IBRD
## 3176           IBRD
## 3177           IBRD
## 3178           IBRD
## 3179           IBRD
## 3180           IBRD
## 3181           IBRD
## 3182           IBRD
## 3183           IBRD
## 3184           IBRD
## 3185           IBRD
## 3186           IBRD
## 3187           IBRD
## 3188           IBRD
## 3189           IBRD
## 3190           IBRD
## 3191           IBRD
## 3192           IBRD
## 3193           IBRD
## 3194           IBRD
## 3195           IBRD
## 3196           IBRD
## 3197           IBRD
## 3198           IBRD
## 3199           IBRD
## 3200           IBRD
## 3201           IBRD
## 3202           IBRD
## 3203           IBRD
## 3204           IBRD
## 3205           IBRD
## 3206           IBRD
## 3207           IBRD
## 3208           IBRD
## 3209           IBRD
## 3210           IBRD
## 3211           IBRD
## 3212           IBRD
## 3213           IBRD
## 3214           IBRD
## 3215           IBRD
## 3216           IBRD
## 3217           IBRD
## 3218           IBRD
## 3219           IBRD
## 3220           IBRD
## 3221           IBRD
## 3222           IBRD
## 3223           IBRD
## 3224           IBRD
## 3225            IDA
## 3226            IDA
## 3227            IDA
## 3228            IDA
## 3229            IDA
## 3230            IDA
## 3231            IDA
## 3232            IDA
## 3233            IDA
## 3234            IDA
## 3235            IDA
## 3236            IDA
## 3237            IDA
## 3238            IDA
## 3239            IDA
## 3240            IDA
## 3241            IDA
## 3242            IDA
## 3243            IDA
## 3244            IDA
## 3245            IDA
## 3246            IDA
## 3247            IDA
## 3248            IDA
## 3249            IDA
## 3250            IDA
## 3251            IDA
## 3252            IDA
## 3253            IDA
## 3254            IDA
## 3255            IDA
## 3256            IDA
## 3257            IDA
## 3258            IDA
## 3259            IDA
## 3260            IDA
## 3261            IDA
## 3262            IDA
## 3263            IDA
## 3264            IDA
## 3265            IDA
## 3266            IDA
## 3267            IDA
## 3268            IDA
## 3269            IDA
## 3270            IDA
## 3271            IDA
## 3272            IDA
## 3273            IDA
## 3274            IDA
## 3275            IDA
## 3276            IDA
## 3277            IDA
## 3278            IDA
## 3279            IDA
## 3280            IDA
## 3281            IDA
## 3282            IDA
## 3283            IDA
## 3284            IDA
## 3285            IDA
## 3286            IDA
## 3287           IBRD
## 3288           IBRD
## 3289           IBRD
## 3290           IBRD
## 3291           IBRD
## 3292           IBRD
## 3293           IBRD
## 3294           IBRD
## 3295           IBRD
## 3296           IBRD
## 3297           IBRD
## 3298           IBRD
## 3299           IBRD
## 3300           IBRD
## 3301           IBRD
## 3302           IBRD
## 3303           IBRD
## 3304           IBRD
## 3305           IBRD
## 3306           IBRD
## 3307           IBRD
## 3308           IBRD
## 3309           IBRD
## 3310           IBRD
## 3311           IBRD
## 3312           IBRD
## 3313           IBRD
## 3314           IBRD
## 3315           IBRD
## 3316           IBRD
## 3317           IBRD
## 3318           IBRD
## 3319           IBRD
## 3320           IBRD
## 3321           IBRD
## 3322           IBRD
## 3323           IBRD
## 3324           IBRD
## 3325           IBRD
## 3326           IBRD
## 3327           IBRD
## 3328           IBRD
## 3329           IBRD
## 3330           IBRD
## 3331           IBRD
## 3332           IBRD
## 3333           IBRD
## 3334           IBRD
## 3335           IBRD
## 3336           IBRD
## 3337           IBRD
## 3338           IBRD
## 3339           IBRD
## 3340           IBRD
## 3341           IBRD
## 3342           IBRD
## 3343           IBRD
## 3344           IBRD
## 3345           IBRD
## 3346           IBRD
## 3347           IBRD
## 3348           IBRD
## 3349 Not classified
## 3350 Not classified
## 3351 Not classified
## 3352 Not classified
## 3353 Not classified
## 3354 Not classified
## 3355 Not classified
## 3356 Not classified
## 3357 Not classified
## 3358 Not classified
## 3359 Not classified
## 3360 Not classified
## 3361 Not classified
## 3362 Not classified
## 3363 Not classified
## 3364 Not classified
## 3365 Not classified
## 3366 Not classified
## 3367 Not classified
## 3368 Not classified
## 3369 Not classified
## 3370 Not classified
## 3371 Not classified
## 3372 Not classified
## 3373 Not classified
## 3374 Not classified
## 3375 Not classified
## 3376 Not classified
## 3377 Not classified
## 3378 Not classified
## 3379 Not classified
## 3380 Not classified
## 3381 Not classified
## 3382 Not classified
## 3383 Not classified
## 3384 Not classified
## 3385 Not classified
## 3386 Not classified
## 3387 Not classified
## 3388 Not classified
## 3389 Not classified
## 3390 Not classified
## 3391 Not classified
## 3392 Not classified
## 3393 Not classified
## 3394 Not classified
## 3395 Not classified
## 3396 Not classified
## 3397 Not classified
## 3398 Not classified
## 3399 Not classified
## 3400 Not classified
## 3401 Not classified
## 3402 Not classified
## 3403 Not classified
## 3404 Not classified
## 3405 Not classified
## 3406 Not classified
## 3407 Not classified
## 3408 Not classified
## 3409 Not classified
## 3410 Not classified
## 3411 Not classified
## 3412 Not classified
## 3413 Not classified
## 3414 Not classified
## 3415 Not classified
## 3416 Not classified
## 3417 Not classified
## 3418 Not classified
## 3419 Not classified
## 3420 Not classified
## 3421 Not classified
## 3422 Not classified
## 3423 Not classified
## 3424 Not classified
## 3425 Not classified
## 3426 Not classified
## 3427 Not classified
## 3428 Not classified
## 3429 Not classified
## 3430 Not classified
## 3431 Not classified
## 3432 Not classified
## 3433 Not classified
## 3434 Not classified
## 3435 Not classified
## 3436 Not classified
## 3437 Not classified
## 3438 Not classified
## 3439 Not classified
## 3440 Not classified
## 3441 Not classified
## 3442 Not classified
## 3443 Not classified
## 3444 Not classified
## 3445 Not classified
## 3446 Not classified
## 3447 Not classified
## 3448 Not classified
## 3449 Not classified
## 3450 Not classified
## 3451 Not classified
## 3452 Not classified
## 3453 Not classified
## 3454 Not classified
## 3455 Not classified
## 3456 Not classified
## 3457 Not classified
## 3458 Not classified
## 3459 Not classified
## 3460 Not classified
## 3461 Not classified
## 3462 Not classified
## 3463 Not classified
## 3464 Not classified
## 3465 Not classified
## 3466 Not classified
## 3467 Not classified
## 3468 Not classified
## 3469 Not classified
## 3470 Not classified
## 3471 Not classified
## 3472 Not classified
## 3473 Not classified
## 3474 Not classified
## 3475 Not classified
## 3476 Not classified
## 3477 Not classified
## 3478 Not classified
## 3479 Not classified
## 3480 Not classified
## 3481 Not classified
## 3482 Not classified
## 3483 Not classified
## 3484 Not classified
## 3485 Not classified
## 3486 Not classified
## 3487 Not classified
## 3488 Not classified
## 3489 Not classified
## 3490 Not classified
## 3491 Not classified
## 3492 Not classified
## 3493 Not classified
## 3494 Not classified
## 3495 Not classified
## 3496 Not classified
## 3497 Not classified
## 3498 Not classified
## 3499 Not classified
## 3500 Not classified
## 3501 Not classified
## 3502 Not classified
## 3503 Not classified
## 3504 Not classified
## 3505 Not classified
## 3506 Not classified
## 3507 Not classified
## 3508 Not classified
## 3509 Not classified
## 3510 Not classified
## 3511 Not classified
## 3512 Not classified
## 3513 Not classified
## 3514 Not classified
## 3515 Not classified
## 3516 Not classified
## 3517 Not classified
## 3518 Not classified
## 3519 Not classified
## 3520 Not classified
## 3521 Not classified
## 3522 Not classified
## 3523 Not classified
## 3524 Not classified
## 3525 Not classified
## 3526 Not classified
## 3527 Not classified
## 3528 Not classified
## 3529 Not classified
## 3530 Not classified
## 3531 Not classified
## 3532 Not classified
## 3533 Not classified
## 3534 Not classified
## 3535           <NA>
## 3536           <NA>
## 3537           <NA>
## 3538           <NA>
## 3539           <NA>
## 3540           <NA>
## 3541           <NA>
## 3542           <NA>
## 3543           <NA>
## 3544           <NA>
## 3545           <NA>
## 3546           <NA>
## 3547           <NA>
## 3548           <NA>
## 3549           <NA>
## 3550           <NA>
## 3551           <NA>
## 3552           <NA>
## 3553           <NA>
## 3554           <NA>
## 3555           <NA>
## 3556           <NA>
## 3557           <NA>
## 3558           <NA>
## 3559           <NA>
## 3560           <NA>
## 3561           <NA>
## 3562           <NA>
## 3563           <NA>
## 3564           <NA>
## 3565           <NA>
## 3566           <NA>
## 3567           <NA>
## 3568           <NA>
## 3569           <NA>
## 3570           <NA>
## 3571           <NA>
## 3572           <NA>
## 3573           <NA>
## 3574           <NA>
## 3575           <NA>
## 3576           <NA>
## 3577           <NA>
## 3578           <NA>
## 3579           <NA>
## 3580           <NA>
## 3581           <NA>
## 3582           <NA>
## 3583           <NA>
## 3584           <NA>
## 3585           <NA>
## 3586           <NA>
## 3587           <NA>
## 3588           <NA>
## 3589           <NA>
## 3590           <NA>
## 3591           <NA>
## 3592           <NA>
## 3593           <NA>
## 3594           <NA>
## 3595           <NA>
## 3596           <NA>
## 3597 Not classified
## 3598 Not classified
## 3599 Not classified
## 3600 Not classified
## 3601 Not classified
## 3602 Not classified
## 3603 Not classified
## 3604 Not classified
## 3605 Not classified
## 3606 Not classified
## 3607 Not classified
## 3608 Not classified
## 3609 Not classified
## 3610 Not classified
## 3611 Not classified
## 3612 Not classified
## 3613 Not classified
## 3614 Not classified
## 3615 Not classified
## 3616 Not classified
## 3617 Not classified
## 3618 Not classified
## 3619 Not classified
## 3620 Not classified
## 3621 Not classified
## 3622 Not classified
## 3623 Not classified
## 3624 Not classified
## 3625 Not classified
## 3626 Not classified
## 3627 Not classified
## 3628 Not classified
## 3629 Not classified
## 3630 Not classified
## 3631 Not classified
## 3632 Not classified
## 3633 Not classified
## 3634 Not classified
## 3635 Not classified
## 3636 Not classified
## 3637 Not classified
## 3638 Not classified
## 3639 Not classified
## 3640 Not classified
## 3641 Not classified
## 3642 Not classified
## 3643 Not classified
## 3644 Not classified
## 3645 Not classified
## 3646 Not classified
## 3647 Not classified
## 3648 Not classified
## 3649 Not classified
## 3650 Not classified
## 3651 Not classified
## 3652 Not classified
## 3653 Not classified
## 3654 Not classified
## 3655 Not classified
## 3656 Not classified
## 3657 Not classified
## 3658 Not classified
## 3659            IDA
## 3660            IDA
## 3661            IDA
## 3662            IDA
## 3663            IDA
## 3664            IDA
## 3665            IDA
## 3666            IDA
## 3667            IDA
## 3668            IDA
## 3669            IDA
## 3670            IDA
## 3671            IDA
## 3672            IDA
## 3673            IDA
## 3674            IDA
## 3675            IDA
## 3676            IDA
## 3677            IDA
## 3678            IDA
## 3679            IDA
## 3680            IDA
## 3681            IDA
## 3682            IDA
## 3683            IDA
## 3684            IDA
## 3685            IDA
## 3686            IDA
## 3687            IDA
## 3688            IDA
## 3689            IDA
## 3690            IDA
## 3691            IDA
## 3692            IDA
## 3693            IDA
## 3694            IDA
## 3695            IDA
## 3696            IDA
## 3697            IDA
## 3698            IDA
## 3699            IDA
## 3700            IDA
## 3701            IDA
## 3702            IDA
## 3703            IDA
## 3704            IDA
## 3705            IDA
## 3706            IDA
## 3707            IDA
## 3708            IDA
## 3709            IDA
## 3710            IDA
## 3711            IDA
## 3712            IDA
## 3713            IDA
## 3714            IDA
## 3715            IDA
## 3716            IDA
## 3717            IDA
## 3718            IDA
## 3719            IDA
## 3720            IDA
## 3721          Blend
## 3722          Blend
## 3723          Blend
## 3724          Blend
## 3725          Blend
## 3726          Blend
## 3727          Blend
## 3728          Blend
## 3729          Blend
## 3730          Blend
## 3731          Blend
## 3732          Blend
## 3733          Blend
## 3734          Blend
## 3735          Blend
## 3736          Blend
## 3737          Blend
## 3738          Blend
## 3739          Blend
## 3740          Blend
## 3741          Blend
## 3742          Blend
## 3743          Blend
## 3744          Blend
## 3745          Blend
## 3746          Blend
## 3747          Blend
## 3748          Blend
## 3749          Blend
## 3750          Blend
## 3751          Blend
## 3752          Blend
## 3753          Blend
## 3754          Blend
## 3755          Blend
## 3756          Blend
## 3757          Blend
## 3758          Blend
## 3759          Blend
## 3760          Blend
## 3761          Blend
## 3762          Blend
## 3763          Blend
## 3764          Blend
## 3765          Blend
## 3766          Blend
## 3767          Blend
## 3768          Blend
## 3769          Blend
## 3770          Blend
## 3771          Blend
## 3772          Blend
## 3773          Blend
## 3774          Blend
## 3775          Blend
## 3776          Blend
## 3777          Blend
## 3778          Blend
## 3779          Blend
## 3780          Blend
## 3781          Blend
## 3782          Blend
## 3783           IBRD
## 3784           IBRD
## 3785           IBRD
## 3786           IBRD
## 3787           IBRD
## 3788           IBRD
## 3789           IBRD
## 3790           IBRD
## 3791           IBRD
## 3792           IBRD
## 3793           IBRD
## 3794           IBRD
## 3795           IBRD
## 3796           IBRD
## 3797           IBRD
## 3798           IBRD
## 3799           IBRD
## 3800           IBRD
## 3801           IBRD
## 3802           IBRD
## 3803           IBRD
## 3804           IBRD
## 3805           IBRD
## 3806           IBRD
## 3807           IBRD
## 3808           IBRD
## 3809           IBRD
## 3810           IBRD
## 3811           IBRD
## 3812           IBRD
## 3813           IBRD
## 3814           IBRD
## 3815           IBRD
## 3816           IBRD
## 3817           IBRD
## 3818           IBRD
## 3819           IBRD
## 3820           IBRD
## 3821           IBRD
## 3822           IBRD
## 3823           IBRD
## 3824           IBRD
## 3825           IBRD
## 3826           IBRD
## 3827           IBRD
## 3828           IBRD
## 3829           IBRD
## 3830           IBRD
## 3831           IBRD
## 3832           IBRD
## 3833           IBRD
## 3834           IBRD
## 3835           IBRD
## 3836           IBRD
## 3837           IBRD
## 3838           IBRD
## 3839           IBRD
## 3840           IBRD
## 3841           IBRD
## 3842           IBRD
## 3843           IBRD
## 3844           IBRD
## 3845     Aggregates
## 3846     Aggregates
## 3847     Aggregates
## 3848     Aggregates
## 3849     Aggregates
## 3850     Aggregates
## 3851     Aggregates
## 3852     Aggregates
## 3853     Aggregates
## 3854     Aggregates
## 3855     Aggregates
## 3856     Aggregates
## 3857     Aggregates
## 3858     Aggregates
## 3859     Aggregates
## 3860     Aggregates
## 3861     Aggregates
## 3862     Aggregates
## 3863     Aggregates
## 3864     Aggregates
## 3865     Aggregates
## 3866     Aggregates
## 3867     Aggregates
## 3868     Aggregates
## 3869     Aggregates
## 3870     Aggregates
## 3871     Aggregates
## 3872     Aggregates
## 3873     Aggregates
## 3874     Aggregates
## 3875     Aggregates
## 3876     Aggregates
## 3877     Aggregates
## 3878     Aggregates
## 3879     Aggregates
## 3880     Aggregates
## 3881     Aggregates
## 3882     Aggregates
## 3883     Aggregates
## 3884     Aggregates
## 3885     Aggregates
## 3886     Aggregates
## 3887     Aggregates
## 3888     Aggregates
## 3889     Aggregates
## 3890     Aggregates
## 3891     Aggregates
## 3892     Aggregates
## 3893     Aggregates
## 3894     Aggregates
## 3895     Aggregates
## 3896     Aggregates
## 3897     Aggregates
## 3898     Aggregates
## 3899     Aggregates
## 3900     Aggregates
## 3901     Aggregates
## 3902     Aggregates
## 3903     Aggregates
## 3904     Aggregates
## 3905     Aggregates
## 3906     Aggregates
## 3907     Aggregates
## 3908     Aggregates
## 3909     Aggregates
## 3910     Aggregates
## 3911     Aggregates
## 3912     Aggregates
## 3913     Aggregates
## 3914     Aggregates
## 3915     Aggregates
## 3916     Aggregates
## 3917     Aggregates
## 3918     Aggregates
## 3919     Aggregates
## 3920     Aggregates
## 3921     Aggregates
## 3922     Aggregates
## 3923     Aggregates
## 3924     Aggregates
## 3925     Aggregates
## 3926     Aggregates
## 3927     Aggregates
## 3928     Aggregates
## 3929     Aggregates
## 3930     Aggregates
## 3931     Aggregates
## 3932     Aggregates
## 3933     Aggregates
## 3934     Aggregates
## 3935     Aggregates
## 3936     Aggregates
## 3937     Aggregates
## 3938     Aggregates
## 3939     Aggregates
## 3940     Aggregates
## 3941     Aggregates
## 3942     Aggregates
## 3943     Aggregates
## 3944     Aggregates
## 3945     Aggregates
## 3946     Aggregates
## 3947     Aggregates
## 3948     Aggregates
## 3949     Aggregates
## 3950     Aggregates
## 3951     Aggregates
## 3952     Aggregates
## 3953     Aggregates
## 3954     Aggregates
## 3955     Aggregates
## 3956     Aggregates
## 3957     Aggregates
## 3958     Aggregates
## 3959     Aggregates
## 3960     Aggregates
## 3961     Aggregates
## 3962     Aggregates
## 3963     Aggregates
## 3964     Aggregates
## 3965     Aggregates
## 3966     Aggregates
## 3967     Aggregates
## 3968     Aggregates
## 3969     Aggregates
## 3970     Aggregates
## 3971     Aggregates
## 3972     Aggregates
## 3973     Aggregates
## 3974     Aggregates
## 3975     Aggregates
## 3976     Aggregates
## 3977     Aggregates
## 3978     Aggregates
## 3979     Aggregates
## 3980     Aggregates
## 3981     Aggregates
## 3982     Aggregates
## 3983     Aggregates
## 3984     Aggregates
## 3985     Aggregates
## 3986     Aggregates
## 3987     Aggregates
## 3988     Aggregates
## 3989     Aggregates
## 3990     Aggregates
## 3991     Aggregates
## 3992     Aggregates
## 3993     Aggregates
## 3994     Aggregates
## 3995     Aggregates
## 3996     Aggregates
## 3997     Aggregates
## 3998     Aggregates
## 3999     Aggregates
## 4000     Aggregates
## 4001     Aggregates
## 4002     Aggregates
## 4003     Aggregates
## 4004     Aggregates
## 4005     Aggregates
## 4006     Aggregates
## 4007     Aggregates
## 4008     Aggregates
## 4009     Aggregates
## 4010     Aggregates
## 4011     Aggregates
## 4012     Aggregates
## 4013     Aggregates
## 4014     Aggregates
## 4015     Aggregates
## 4016     Aggregates
## 4017     Aggregates
## 4018     Aggregates
## 4019     Aggregates
## 4020     Aggregates
## 4021     Aggregates
## 4022     Aggregates
## 4023     Aggregates
## 4024     Aggregates
## 4025     Aggregates
## 4026     Aggregates
## 4027     Aggregates
## 4028     Aggregates
## 4029     Aggregates
## 4030     Aggregates
## 4031     Aggregates
## 4032     Aggregates
## 4033     Aggregates
## 4034     Aggregates
## 4035     Aggregates
## 4036     Aggregates
## 4037     Aggregates
## 4038     Aggregates
## 4039     Aggregates
## 4040     Aggregates
## 4041     Aggregates
## 4042     Aggregates
## 4043     Aggregates
## 4044     Aggregates
## 4045     Aggregates
## 4046     Aggregates
## 4047     Aggregates
## 4048     Aggregates
## 4049     Aggregates
## 4050     Aggregates
## 4051     Aggregates
## 4052     Aggregates
## 4053     Aggregates
## 4054     Aggregates
## 4055     Aggregates
## 4056     Aggregates
## 4057     Aggregates
## 4058     Aggregates
## 4059     Aggregates
## 4060     Aggregates
## 4061     Aggregates
## 4062     Aggregates
## 4063     Aggregates
## 4064     Aggregates
## 4065     Aggregates
## 4066     Aggregates
## 4067     Aggregates
## 4068     Aggregates
## 4069     Aggregates
## 4070     Aggregates
## 4071     Aggregates
## 4072     Aggregates
## 4073     Aggregates
## 4074     Aggregates
## 4075     Aggregates
## 4076     Aggregates
## 4077     Aggregates
## 4078     Aggregates
## 4079     Aggregates
## 4080     Aggregates
## 4081     Aggregates
## 4082     Aggregates
## 4083     Aggregates
## 4084     Aggregates
## 4085     Aggregates
## 4086     Aggregates
## 4087     Aggregates
## 4088     Aggregates
## 4089     Aggregates
## 4090     Aggregates
## 4091     Aggregates
## 4092     Aggregates
## 4093           IBRD
## 4094           IBRD
## 4095           IBRD
## 4096           IBRD
## 4097           IBRD
## 4098           IBRD
## 4099           IBRD
## 4100           IBRD
## 4101           IBRD
## 4102           IBRD
## 4103           IBRD
## 4104           IBRD
## 4105           IBRD
## 4106           IBRD
## 4107           IBRD
## 4108           IBRD
## 4109           IBRD
## 4110           IBRD
## 4111           IBRD
## 4112           IBRD
## 4113           IBRD
## 4114           IBRD
## 4115           IBRD
## 4116           IBRD
## 4117           IBRD
## 4118           IBRD
## 4119           IBRD
## 4120           IBRD
## 4121           IBRD
## 4122           IBRD
## 4123           IBRD
## 4124           IBRD
## 4125           IBRD
## 4126           IBRD
## 4127           IBRD
## 4128           IBRD
## 4129           IBRD
## 4130           IBRD
## 4131           IBRD
## 4132           IBRD
## 4133           IBRD
## 4134           IBRD
## 4135           IBRD
## 4136           IBRD
## 4137           IBRD
## 4138           IBRD
## 4139           IBRD
## 4140           IBRD
## 4141           IBRD
## 4142           IBRD
## 4143           IBRD
## 4144           IBRD
## 4145           IBRD
## 4146           IBRD
## 4147           IBRD
## 4148           IBRD
## 4149           IBRD
## 4150           IBRD
## 4151           IBRD
## 4152           IBRD
## 4153           IBRD
## 4154           IBRD
## 4155           IBRD
## 4156           IBRD
## 4157           IBRD
## 4158           IBRD
## 4159           IBRD
## 4160           IBRD
## 4161           IBRD
## 4162           IBRD
## 4163           IBRD
## 4164           IBRD
## 4165           IBRD
## 4166           IBRD
## 4167           IBRD
## 4168           IBRD
## 4169           IBRD
## 4170           IBRD
## 4171           IBRD
## 4172           IBRD
## 4173           IBRD
## 4174           IBRD
## 4175           IBRD
## 4176           IBRD
## 4177           IBRD
## 4178           IBRD
## 4179           IBRD
## 4180           IBRD
## 4181           IBRD
## 4182           IBRD
## 4183           IBRD
## 4184           IBRD
## 4185           IBRD
## 4186           IBRD
## 4187           IBRD
## 4188           IBRD
## 4189           IBRD
## 4190           IBRD
## 4191           IBRD
## 4192           IBRD
## 4193           IBRD
## 4194           IBRD
## 4195           IBRD
## 4196           IBRD
## 4197           IBRD
## 4198           IBRD
## 4199           IBRD
## 4200           IBRD
## 4201           IBRD
## 4202           IBRD
## 4203           IBRD
## 4204           IBRD
## 4205           IBRD
## 4206           IBRD
## 4207           IBRD
## 4208           IBRD
## 4209           IBRD
## 4210           IBRD
## 4211           IBRD
## 4212           IBRD
## 4213           IBRD
## 4214           IBRD
## 4215           IBRD
## 4216           IBRD
## 4217           IBRD
## 4218           IBRD
## 4219           IBRD
## 4220           IBRD
## 4221           IBRD
## 4222           IBRD
## 4223           IBRD
## 4224           IBRD
## 4225           IBRD
## 4226           IBRD
## 4227           IBRD
## 4228           IBRD
## 4229           IBRD
## 4230           IBRD
## 4231           IBRD
## 4232           IBRD
## 4233           IBRD
## 4234           IBRD
## 4235           IBRD
## 4236           IBRD
## 4237           IBRD
## 4238           IBRD
## 4239           IBRD
## 4240           IBRD
## 4241           IBRD
## 4242           IBRD
## 4243           IBRD
## 4244           IBRD
## 4245           IBRD
## 4246           IBRD
## 4247           IBRD
## 4248           IBRD
## 4249           IBRD
## 4250           IBRD
## 4251           IBRD
## 4252           IBRD
## 4253           IBRD
## 4254           IBRD
## 4255           IBRD
## 4256           IBRD
## 4257           IBRD
## 4258           IBRD
## 4259           IBRD
## 4260           IBRD
## 4261           IBRD
## 4262           IBRD
## 4263           IBRD
## 4264           IBRD
## 4265           IBRD
## 4266           IBRD
## 4267           IBRD
## 4268           IBRD
## 4269           IBRD
## 4270           IBRD
## 4271           IBRD
## 4272           IBRD
## 4273           IBRD
## 4274           IBRD
## 4275           IBRD
## 4276           IBRD
## 4277           IBRD
## 4278           IBRD
## 4279           IBRD
## 4280           IBRD
## 4281           IBRD
## 4282           IBRD
## 4283           IBRD
## 4284           IBRD
## 4285           IBRD
## 4286           IBRD
## 4287           IBRD
## 4288           IBRD
## 4289           IBRD
## 4290           IBRD
## 4291           IBRD
## 4292           IBRD
## 4293           IBRD
## 4294           IBRD
## 4295           IBRD
## 4296           IBRD
## 4297           IBRD
## 4298           IBRD
## 4299           IBRD
## 4300           IBRD
## 4301           IBRD
## 4302           IBRD
## 4303           IBRD
## 4304           IBRD
## 4305           IBRD
## 4306           IBRD
## 4307           IBRD
## 4308           IBRD
## 4309           IBRD
## 4310           IBRD
## 4311           IBRD
## 4312           IBRD
## 4313           IBRD
## 4314           IBRD
## 4315           IBRD
## 4316           IBRD
## 4317           IBRD
## 4318           IBRD
## 4319           IBRD
## 4320           IBRD
## 4321           IBRD
## 4322           IBRD
## 4323           IBRD
## 4324           IBRD
## 4325           IBRD
## 4326           IBRD
## 4327           IBRD
## 4328           IBRD
## 4329           IBRD
## 4330           IBRD
## 4331           IBRD
## 4332           IBRD
## 4333           IBRD
## 4334           IBRD
## 4335           IBRD
## 4336           IBRD
## 4337           IBRD
## 4338           IBRD
## 4339           IBRD
## 4340           IBRD
## 4341            IDA
## 4342            IDA
## 4343            IDA
## 4344            IDA
## 4345            IDA
## 4346            IDA
## 4347            IDA
## 4348            IDA
## 4349            IDA
## 4350            IDA
## 4351            IDA
## 4352            IDA
## 4353            IDA
## 4354            IDA
## 4355            IDA
## 4356            IDA
## 4357            IDA
## 4358            IDA
## 4359            IDA
## 4360            IDA
## 4361            IDA
## 4362            IDA
## 4363            IDA
## 4364            IDA
## 4365            IDA
## 4366            IDA
## 4367            IDA
## 4368            IDA
## 4369            IDA
## 4370            IDA
## 4371            IDA
## 4372            IDA
## 4373            IDA
## 4374            IDA
## 4375            IDA
## 4376            IDA
## 4377            IDA
## 4378            IDA
## 4379            IDA
## 4380            IDA
## 4381            IDA
## 4382            IDA
## 4383            IDA
## 4384            IDA
## 4385            IDA
## 4386            IDA
## 4387            IDA
## 4388            IDA
## 4389            IDA
## 4390            IDA
## 4391            IDA
## 4392            IDA
## 4393            IDA
## 4394            IDA
## 4395            IDA
## 4396            IDA
## 4397            IDA
## 4398            IDA
## 4399            IDA
## 4400            IDA
## 4401            IDA
## 4402            IDA
## 4403 Not classified
## 4404 Not classified
## 4405 Not classified
## 4406 Not classified
## 4407 Not classified
## 4408 Not classified
## 4409 Not classified
## 4410 Not classified
## 4411 Not classified
## 4412 Not classified
## 4413 Not classified
## 4414 Not classified
## 4415 Not classified
## 4416 Not classified
## 4417 Not classified
## 4418 Not classified
## 4419 Not classified
## 4420 Not classified
## 4421 Not classified
## 4422 Not classified
## 4423 Not classified
## 4424 Not classified
## 4425 Not classified
## 4426 Not classified
## 4427 Not classified
## 4428 Not classified
## 4429 Not classified
## 4430 Not classified
## 4431 Not classified
## 4432 Not classified
## 4433 Not classified
## 4434 Not classified
## 4435 Not classified
## 4436 Not classified
## 4437 Not classified
## 4438 Not classified
## 4439 Not classified
## 4440 Not classified
## 4441 Not classified
## 4442 Not classified
## 4443 Not classified
## 4444 Not classified
## 4445 Not classified
## 4446 Not classified
## 4447 Not classified
## 4448 Not classified
## 4449 Not classified
## 4450 Not classified
## 4451 Not classified
## 4452 Not classified
## 4453 Not classified
## 4454 Not classified
## 4455 Not classified
## 4456 Not classified
## 4457 Not classified
## 4458 Not classified
## 4459 Not classified
## 4460 Not classified
## 4461 Not classified
## 4462 Not classified
## 4463 Not classified
## 4464 Not classified
## 4465           IBRD
## 4466           IBRD
## 4467           IBRD
## 4468           IBRD
## 4469           IBRD
## 4470           IBRD
## 4471           IBRD
## 4472           IBRD
## 4473           IBRD
## 4474           IBRD
## 4475           IBRD
## 4476           IBRD
## 4477           IBRD
## 4478           IBRD
## 4479           IBRD
## 4480           IBRD
## 4481           IBRD
## 4482           IBRD
## 4483           IBRD
## 4484           IBRD
## 4485           IBRD
## 4486           IBRD
## 4487           IBRD
## 4488           IBRD
## 4489           IBRD
## 4490           IBRD
## 4491           IBRD
## 4492           IBRD
## 4493           IBRD
## 4494           IBRD
## 4495           IBRD
## 4496           IBRD
## 4497           IBRD
## 4498           IBRD
## 4499           IBRD
## 4500           IBRD
## 4501           IBRD
## 4502           IBRD
## 4503           IBRD
## 4504           IBRD
## 4505           IBRD
## 4506           IBRD
## 4507           IBRD
## 4508           IBRD
## 4509           IBRD
## 4510           IBRD
## 4511           IBRD
## 4512           IBRD
## 4513           IBRD
## 4514           IBRD
## 4515           IBRD
## 4516           IBRD
## 4517           IBRD
## 4518           IBRD
## 4519           IBRD
## 4520           IBRD
## 4521           IBRD
## 4522           IBRD
## 4523           IBRD
## 4524           IBRD
## 4525           IBRD
## 4526           IBRD
## 4527            IDA
## 4528            IDA
## 4529            IDA
## 4530            IDA
## 4531            IDA
## 4532            IDA
## 4533            IDA
## 4534            IDA
## 4535            IDA
## 4536            IDA
## 4537            IDA
## 4538            IDA
## 4539            IDA
## 4540            IDA
## 4541            IDA
## 4542            IDA
## 4543            IDA
## 4544            IDA
## 4545            IDA
## 4546            IDA
## 4547            IDA
## 4548            IDA
## 4549            IDA
## 4550            IDA
## 4551            IDA
## 4552            IDA
## 4553            IDA
## 4554            IDA
## 4555            IDA
## 4556            IDA
## 4557            IDA
## 4558            IDA
## 4559            IDA
## 4560            IDA
## 4561            IDA
## 4562            IDA
## 4563            IDA
## 4564            IDA
## 4565            IDA
## 4566            IDA
## 4567            IDA
## 4568            IDA
## 4569            IDA
## 4570            IDA
## 4571            IDA
## 4572            IDA
## 4573            IDA
## 4574            IDA
## 4575            IDA
## 4576            IDA
## 4577            IDA
## 4578            IDA
## 4579            IDA
## 4580            IDA
## 4581            IDA
## 4582            IDA
## 4583            IDA
## 4584            IDA
## 4585            IDA
## 4586            IDA
## 4587            IDA
## 4588            IDA
## 4589     Aggregates
## 4590     Aggregates
## 4591     Aggregates
## 4592     Aggregates
## 4593     Aggregates
## 4594     Aggregates
## 4595     Aggregates
## 4596     Aggregates
## 4597     Aggregates
## 4598     Aggregates
## 4599     Aggregates
## 4600     Aggregates
## 4601     Aggregates
## 4602     Aggregates
## 4603     Aggregates
## 4604     Aggregates
## 4605     Aggregates
## 4606     Aggregates
## 4607     Aggregates
## 4608     Aggregates
## 4609     Aggregates
## 4610     Aggregates
## 4611     Aggregates
## 4612     Aggregates
## 4613     Aggregates
## 4614     Aggregates
## 4615     Aggregates
## 4616     Aggregates
## 4617     Aggregates
## 4618     Aggregates
## 4619     Aggregates
## 4620     Aggregates
## 4621     Aggregates
## 4622     Aggregates
## 4623     Aggregates
## 4624     Aggregates
## 4625     Aggregates
## 4626     Aggregates
## 4627     Aggregates
## 4628     Aggregates
## 4629     Aggregates
## 4630     Aggregates
## 4631     Aggregates
## 4632     Aggregates
## 4633     Aggregates
## 4634     Aggregates
## 4635     Aggregates
## 4636     Aggregates
## 4637     Aggregates
## 4638     Aggregates
## 4639     Aggregates
## 4640     Aggregates
## 4641     Aggregates
## 4642     Aggregates
## 4643     Aggregates
## 4644     Aggregates
## 4645     Aggregates
## 4646     Aggregates
## 4647     Aggregates
## 4648     Aggregates
## 4649     Aggregates
## 4650     Aggregates
## 4651     Aggregates
## 4652     Aggregates
## 4653     Aggregates
## 4654     Aggregates
## 4655     Aggregates
## 4656     Aggregates
## 4657     Aggregates
## 4658     Aggregates
## 4659     Aggregates
## 4660     Aggregates
## 4661     Aggregates
## 4662     Aggregates
## 4663     Aggregates
## 4664     Aggregates
## 4665     Aggregates
## 4666     Aggregates
## 4667     Aggregates
## 4668     Aggregates
## 4669     Aggregates
## 4670     Aggregates
## 4671     Aggregates
## 4672     Aggregates
## 4673     Aggregates
## 4674     Aggregates
## 4675     Aggregates
## 4676     Aggregates
## 4677     Aggregates
## 4678     Aggregates
## 4679     Aggregates
## 4680     Aggregates
## 4681     Aggregates
## 4682     Aggregates
## 4683     Aggregates
## 4684     Aggregates
## 4685     Aggregates
## 4686     Aggregates
## 4687     Aggregates
## 4688     Aggregates
## 4689     Aggregates
## 4690     Aggregates
## 4691     Aggregates
## 4692     Aggregates
## 4693     Aggregates
## 4694     Aggregates
## 4695     Aggregates
## 4696     Aggregates
## 4697     Aggregates
## 4698     Aggregates
## 4699     Aggregates
## 4700     Aggregates
## 4701     Aggregates
## 4702     Aggregates
## 4703     Aggregates
## 4704     Aggregates
## 4705     Aggregates
## 4706     Aggregates
## 4707     Aggregates
## 4708     Aggregates
## 4709     Aggregates
## 4710     Aggregates
## 4711     Aggregates
## 4712     Aggregates
## 4713     Aggregates
## 4714     Aggregates
## 4715     Aggregates
## 4716     Aggregates
## 4717     Aggregates
## 4718     Aggregates
## 4719     Aggregates
## 4720     Aggregates
## 4721     Aggregates
## 4722     Aggregates
## 4723     Aggregates
## 4724     Aggregates
## 4725     Aggregates
## 4726     Aggregates
## 4727     Aggregates
## 4728     Aggregates
## 4729     Aggregates
## 4730     Aggregates
## 4731     Aggregates
## 4732     Aggregates
## 4733     Aggregates
## 4734     Aggregates
## 4735     Aggregates
## 4736     Aggregates
## 4737     Aggregates
## 4738     Aggregates
## 4739     Aggregates
## 4740     Aggregates
## 4741     Aggregates
## 4742     Aggregates
## 4743     Aggregates
## 4744     Aggregates
## 4745     Aggregates
## 4746     Aggregates
## 4747     Aggregates
## 4748     Aggregates
## 4749     Aggregates
## 4750     Aggregates
## 4751     Aggregates
## 4752     Aggregates
## 4753     Aggregates
## 4754     Aggregates
## 4755     Aggregates
## 4756     Aggregates
## 4757     Aggregates
## 4758     Aggregates
## 4759     Aggregates
## 4760     Aggregates
## 4761     Aggregates
## 4762     Aggregates
## 4763     Aggregates
## 4764     Aggregates
## 4765     Aggregates
## 4766     Aggregates
## 4767     Aggregates
## 4768     Aggregates
## 4769     Aggregates
## 4770     Aggregates
## 4771     Aggregates
## 4772     Aggregates
## 4773     Aggregates
## 4774     Aggregates
## 4775     Aggregates
## 4776     Aggregates
## 4777     Aggregates
## 4778     Aggregates
## 4779     Aggregates
## 4780     Aggregates
## 4781     Aggregates
## 4782     Aggregates
## 4783     Aggregates
## 4784     Aggregates
## 4785     Aggregates
## 4786     Aggregates
## 4787     Aggregates
## 4788     Aggregates
## 4789     Aggregates
## 4790     Aggregates
## 4791     Aggregates
## 4792     Aggregates
## 4793     Aggregates
## 4794     Aggregates
## 4795     Aggregates
## 4796     Aggregates
## 4797     Aggregates
## 4798     Aggregates
## 4799     Aggregates
## 4800     Aggregates
## 4801     Aggregates
## 4802     Aggregates
## 4803     Aggregates
## 4804     Aggregates
## 4805     Aggregates
## 4806     Aggregates
## 4807     Aggregates
## 4808     Aggregates
## 4809     Aggregates
## 4810     Aggregates
## 4811     Aggregates
## 4812     Aggregates
## 4813     Aggregates
## 4814     Aggregates
## 4815     Aggregates
## 4816     Aggregates
## 4817     Aggregates
## 4818     Aggregates
## 4819     Aggregates
## 4820     Aggregates
## 4821     Aggregates
## 4822     Aggregates
## 4823     Aggregates
## 4824     Aggregates
## 4825     Aggregates
## 4826     Aggregates
## 4827     Aggregates
## 4828     Aggregates
## 4829     Aggregates
## 4830     Aggregates
## 4831     Aggregates
## 4832     Aggregates
## 4833     Aggregates
## 4834     Aggregates
## 4835     Aggregates
## 4836     Aggregates
## 4837     Aggregates
## 4838     Aggregates
## 4839     Aggregates
## 4840     Aggregates
## 4841     Aggregates
## 4842     Aggregates
## 4843     Aggregates
## 4844     Aggregates
## 4845     Aggregates
## 4846     Aggregates
## 4847     Aggregates
## 4848     Aggregates
## 4849     Aggregates
## 4850     Aggregates
## 4851     Aggregates
## 4852     Aggregates
## 4853     Aggregates
## 4854     Aggregates
## 4855     Aggregates
## 4856     Aggregates
## 4857     Aggregates
## 4858     Aggregates
## 4859     Aggregates
## 4860     Aggregates
## 4861     Aggregates
## 4862     Aggregates
## 4863     Aggregates
## 4864     Aggregates
## 4865     Aggregates
## 4866     Aggregates
## 4867     Aggregates
## 4868     Aggregates
## 4869     Aggregates
## 4870     Aggregates
## 4871     Aggregates
## 4872     Aggregates
## 4873     Aggregates
## 4874     Aggregates
## 4875     Aggregates
## 4876     Aggregates
## 4877     Aggregates
## 4878     Aggregates
## 4879     Aggregates
## 4880     Aggregates
## 4881     Aggregates
## 4882     Aggregates
## 4883     Aggregates
## 4884     Aggregates
## 4885     Aggregates
## 4886     Aggregates
## 4887     Aggregates
## 4888     Aggregates
## 4889     Aggregates
## 4890     Aggregates
## 4891     Aggregates
## 4892     Aggregates
## 4893     Aggregates
## 4894     Aggregates
## 4895     Aggregates
## 4896     Aggregates
## 4897     Aggregates
## 4898     Aggregates
## 4899 Not classified
## 4900 Not classified
## 4901 Not classified
## 4902 Not classified
## 4903 Not classified
## 4904 Not classified
## 4905 Not classified
## 4906 Not classified
## 4907 Not classified
## 4908 Not classified
## 4909 Not classified
## 4910 Not classified
## 4911 Not classified
## 4912 Not classified
## 4913 Not classified
## 4914 Not classified
## 4915 Not classified
## 4916 Not classified
## 4917 Not classified
## 4918 Not classified
## 4919 Not classified
## 4920 Not classified
## 4921 Not classified
## 4922 Not classified
## 4923 Not classified
## 4924 Not classified
## 4925 Not classified
## 4926 Not classified
## 4927 Not classified
## 4928 Not classified
## 4929 Not classified
## 4930 Not classified
## 4931 Not classified
## 4932 Not classified
## 4933 Not classified
## 4934 Not classified
## 4935 Not classified
## 4936 Not classified
## 4937 Not classified
## 4938 Not classified
## 4939 Not classified
## 4940 Not classified
## 4941 Not classified
## 4942 Not classified
## 4943 Not classified
## 4944 Not classified
## 4945 Not classified
## 4946 Not classified
## 4947 Not classified
## 4948 Not classified
## 4949 Not classified
## 4950 Not classified
## 4951 Not classified
## 4952 Not classified
## 4953 Not classified
## 4954 Not classified
## 4955 Not classified
## 4956 Not classified
## 4957 Not classified
## 4958 Not classified
## 4959 Not classified
## 4960 Not classified
## 4961          Blend
## 4962          Blend
## 4963          Blend
## 4964          Blend
## 4965          Blend
## 4966          Blend
## 4967          Blend
## 4968          Blend
## 4969          Blend
## 4970          Blend
## 4971          Blend
## 4972          Blend
## 4973          Blend
## 4974          Blend
## 4975          Blend
## 4976          Blend
## 4977          Blend
## 4978          Blend
## 4979          Blend
## 4980          Blend
## 4981          Blend
## 4982          Blend
## 4983          Blend
## 4984          Blend
## 4985          Blend
## 4986          Blend
## 4987          Blend
## 4988          Blend
## 4989          Blend
## 4990          Blend
## 4991          Blend
## 4992          Blend
## 4993          Blend
## 4994          Blend
## 4995          Blend
## 4996          Blend
## 4997          Blend
## 4998          Blend
## 4999          Blend
## 5000          Blend
## 5001          Blend
## 5002          Blend
## 5003          Blend
## 5004          Blend
## 5005          Blend
## 5006          Blend
## 5007          Blend
## 5008          Blend
## 5009          Blend
## 5010          Blend
## 5011          Blend
## 5012          Blend
## 5013          Blend
## 5014          Blend
## 5015          Blend
## 5016          Blend
## 5017          Blend
## 5018          Blend
## 5019          Blend
## 5020          Blend
## 5021          Blend
## 5022          Blend
## 5023 Not classified
## 5024 Not classified
## 5025 Not classified
## 5026 Not classified
## 5027 Not classified
## 5028 Not classified
## 5029 Not classified
## 5030 Not classified
## 5031 Not classified
## 5032 Not classified
## 5033 Not classified
## 5034 Not classified
## 5035 Not classified
## 5036 Not classified
## 5037 Not classified
## 5038 Not classified
## 5039 Not classified
## 5040 Not classified
## 5041 Not classified
## 5042 Not classified
## 5043 Not classified
## 5044 Not classified
## 5045 Not classified
## 5046 Not classified
## 5047 Not classified
## 5048 Not classified
## 5049 Not classified
## 5050 Not classified
## 5051 Not classified
## 5052 Not classified
## 5053 Not classified
## 5054 Not classified
## 5055 Not classified
## 5056 Not classified
## 5057 Not classified
## 5058 Not classified
## 5059 Not classified
## 5060 Not classified
## 5061 Not classified
## 5062 Not classified
## 5063 Not classified
## 5064 Not classified
## 5065 Not classified
## 5066 Not classified
## 5067 Not classified
## 5068 Not classified
## 5069 Not classified
## 5070 Not classified
## 5071 Not classified
## 5072 Not classified
## 5073 Not classified
## 5074 Not classified
## 5075 Not classified
## 5076 Not classified
## 5077 Not classified
## 5078 Not classified
## 5079 Not classified
## 5080 Not classified
## 5081 Not classified
## 5082 Not classified
## 5083 Not classified
## 5084 Not classified
## 5085     Aggregates
## 5086     Aggregates
## 5087     Aggregates
## 5088     Aggregates
## 5089     Aggregates
## 5090     Aggregates
## 5091     Aggregates
## 5092     Aggregates
## 5093     Aggregates
## 5094     Aggregates
## 5095     Aggregates
## 5096     Aggregates
## 5097     Aggregates
## 5098     Aggregates
## 5099     Aggregates
## 5100     Aggregates
## 5101     Aggregates
## 5102     Aggregates
## 5103     Aggregates
## 5104     Aggregates
## 5105     Aggregates
## 5106     Aggregates
## 5107     Aggregates
## 5108     Aggregates
## 5109     Aggregates
## 5110     Aggregates
## 5111     Aggregates
## 5112     Aggregates
## 5113     Aggregates
## 5114     Aggregates
## 5115     Aggregates
## 5116     Aggregates
## 5117     Aggregates
## 5118     Aggregates
## 5119     Aggregates
## 5120     Aggregates
## 5121     Aggregates
## 5122     Aggregates
## 5123     Aggregates
## 5124     Aggregates
## 5125     Aggregates
## 5126     Aggregates
## 5127     Aggregates
## 5128     Aggregates
## 5129     Aggregates
## 5130     Aggregates
## 5131     Aggregates
## 5132     Aggregates
## 5133     Aggregates
## 5134     Aggregates
## 5135     Aggregates
## 5136     Aggregates
## 5137     Aggregates
## 5138     Aggregates
## 5139     Aggregates
## 5140     Aggregates
## 5141     Aggregates
## 5142     Aggregates
## 5143     Aggregates
## 5144     Aggregates
## 5145     Aggregates
## 5146     Aggregates
## 5147 Not classified
## 5148 Not classified
## 5149 Not classified
## 5150 Not classified
## 5151 Not classified
## 5152 Not classified
## 5153 Not classified
## 5154 Not classified
## 5155 Not classified
## 5156 Not classified
## 5157 Not classified
## 5158 Not classified
## 5159 Not classified
## 5160 Not classified
## 5161 Not classified
## 5162 Not classified
## 5163 Not classified
## 5164 Not classified
## 5165 Not classified
## 5166 Not classified
## 5167 Not classified
## 5168 Not classified
## 5169 Not classified
## 5170 Not classified
## 5171 Not classified
## 5172 Not classified
## 5173 Not classified
## 5174 Not classified
## 5175 Not classified
## 5176 Not classified
## 5177 Not classified
## 5178 Not classified
## 5179 Not classified
## 5180 Not classified
## 5181 Not classified
## 5182 Not classified
## 5183 Not classified
## 5184 Not classified
## 5185 Not classified
## 5186 Not classified
## 5187 Not classified
## 5188 Not classified
## 5189 Not classified
## 5190 Not classified
## 5191 Not classified
## 5192 Not classified
## 5193 Not classified
## 5194 Not classified
## 5195 Not classified
## 5196 Not classified
## 5197 Not classified
## 5198 Not classified
## 5199 Not classified
## 5200 Not classified
## 5201 Not classified
## 5202 Not classified
## 5203 Not classified
## 5204 Not classified
## 5205 Not classified
## 5206 Not classified
## 5207 Not classified
## 5208 Not classified
## 5209 Not classified
## 5210 Not classified
## 5211 Not classified
## 5212 Not classified
## 5213 Not classified
## 5214 Not classified
## 5215 Not classified
## 5216 Not classified
## 5217 Not classified
## 5218 Not classified
## 5219 Not classified
## 5220 Not classified
## 5221 Not classified
## 5222 Not classified
## 5223 Not classified
## 5224 Not classified
## 5225 Not classified
## 5226 Not classified
## 5227 Not classified
## 5228 Not classified
## 5229 Not classified
## 5230 Not classified
## 5231 Not classified
## 5232 Not classified
## 5233 Not classified
## 5234 Not classified
## 5235 Not classified
## 5236 Not classified
## 5237 Not classified
## 5238 Not classified
## 5239 Not classified
## 5240 Not classified
## 5241 Not classified
## 5242 Not classified
## 5243 Not classified
## 5244 Not classified
## 5245 Not classified
## 5246 Not classified
## 5247 Not classified
## 5248 Not classified
## 5249 Not classified
## 5250 Not classified
## 5251 Not classified
## 5252 Not classified
## 5253 Not classified
## 5254 Not classified
## 5255 Not classified
## 5256 Not classified
## 5257 Not classified
## 5258 Not classified
## 5259 Not classified
## 5260 Not classified
## 5261 Not classified
## 5262 Not classified
## 5263 Not classified
## 5264 Not classified
## 5265 Not classified
## 5266 Not classified
## 5267 Not classified
## 5268 Not classified
## 5269 Not classified
## 5270 Not classified
## 5271           IBRD
## 5272           IBRD
## 5273           IBRD
## 5274           IBRD
## 5275           IBRD
## 5276           IBRD
## 5277           IBRD
## 5278           IBRD
## 5279           IBRD
## 5280           IBRD
## 5281           IBRD
## 5282           IBRD
## 5283           IBRD
## 5284           IBRD
## 5285           IBRD
## 5286           IBRD
## 5287           IBRD
## 5288           IBRD
## 5289           IBRD
## 5290           IBRD
## 5291           IBRD
## 5292           IBRD
## 5293           IBRD
## 5294           IBRD
## 5295           IBRD
## 5296           IBRD
## 5297           IBRD
## 5298           IBRD
## 5299           IBRD
## 5300           IBRD
## 5301           IBRD
## 5302           IBRD
## 5303           IBRD
## 5304           IBRD
## 5305           IBRD
## 5306           IBRD
## 5307           IBRD
## 5308           IBRD
## 5309           IBRD
## 5310           IBRD
## 5311           IBRD
## 5312           IBRD
## 5313           IBRD
## 5314           IBRD
## 5315           IBRD
## 5316           IBRD
## 5317           IBRD
## 5318           IBRD
## 5319           IBRD
## 5320           IBRD
## 5321           IBRD
## 5322           IBRD
## 5323           IBRD
## 5324           IBRD
## 5325           IBRD
## 5326           IBRD
## 5327           IBRD
## 5328           IBRD
## 5329           IBRD
## 5330           IBRD
## 5331           IBRD
## 5332           IBRD
## 5333            IDA
## 5334            IDA
## 5335            IDA
## 5336            IDA
## 5337            IDA
## 5338            IDA
## 5339            IDA
## 5340            IDA
## 5341            IDA
## 5342            IDA
## 5343            IDA
## 5344            IDA
## 5345            IDA
## 5346            IDA
## 5347            IDA
## 5348            IDA
## 5349            IDA
## 5350            IDA
## 5351            IDA
## 5352            IDA
## 5353            IDA
## 5354            IDA
## 5355            IDA
## 5356            IDA
## 5357            IDA
## 5358            IDA
## 5359            IDA
## 5360            IDA
## 5361            IDA
## 5362            IDA
## 5363            IDA
## 5364            IDA
## 5365            IDA
## 5366            IDA
## 5367            IDA
## 5368            IDA
## 5369            IDA
## 5370            IDA
## 5371            IDA
## 5372            IDA
## 5373            IDA
## 5374            IDA
## 5375            IDA
## 5376            IDA
## 5377            IDA
## 5378            IDA
## 5379            IDA
## 5380            IDA
## 5381            IDA
## 5382            IDA
## 5383            IDA
## 5384            IDA
## 5385            IDA
## 5386            IDA
## 5387            IDA
## 5388            IDA
## 5389            IDA
## 5390            IDA
## 5391            IDA
## 5392            IDA
## 5393            IDA
## 5394            IDA
## 5395           IBRD
## 5396           IBRD
## 5397           IBRD
## 5398           IBRD
## 5399           IBRD
## 5400           IBRD
## 5401           IBRD
## 5402           IBRD
## 5403           IBRD
## 5404           IBRD
## 5405           IBRD
## 5406           IBRD
## 5407           IBRD
## 5408           IBRD
## 5409           IBRD
## 5410           IBRD
## 5411           IBRD
## 5412           IBRD
## 5413           IBRD
## 5414           IBRD
## 5415           IBRD
## 5416           IBRD
## 5417           IBRD
## 5418           IBRD
## 5419           IBRD
## 5420           IBRD
## 5421           IBRD
## 5422           IBRD
## 5423           IBRD
## 5424           IBRD
## 5425           IBRD
## 5426           IBRD
## 5427           IBRD
## 5428           IBRD
## 5429           IBRD
## 5430           IBRD
## 5431           IBRD
## 5432           IBRD
## 5433           IBRD
## 5434           IBRD
## 5435           IBRD
## 5436           IBRD
## 5437           IBRD
## 5438           IBRD
## 5439           IBRD
## 5440           IBRD
## 5441           IBRD
## 5442           IBRD
## 5443           IBRD
## 5444           IBRD
## 5445           IBRD
## 5446           IBRD
## 5447           IBRD
## 5448           IBRD
## 5449           IBRD
## 5450           IBRD
## 5451           IBRD
## 5452           IBRD
## 5453           IBRD
## 5454           IBRD
## 5455           IBRD
## 5456           IBRD
## 5457 Not classified
## 5458 Not classified
## 5459 Not classified
## 5460 Not classified
## 5461 Not classified
## 5462 Not classified
## 5463 Not classified
## 5464 Not classified
## 5465 Not classified
## 5466 Not classified
## 5467 Not classified
## 5468 Not classified
## 5469 Not classified
## 5470 Not classified
## 5471 Not classified
## 5472 Not classified
## 5473 Not classified
## 5474 Not classified
## 5475 Not classified
## 5476 Not classified
## 5477 Not classified
## 5478 Not classified
## 5479 Not classified
## 5480 Not classified
## 5481 Not classified
## 5482 Not classified
## 5483 Not classified
## 5484 Not classified
## 5485 Not classified
## 5486 Not classified
## 5487 Not classified
## 5488 Not classified
## 5489 Not classified
## 5490 Not classified
## 5491 Not classified
## 5492 Not classified
## 5493 Not classified
## 5494 Not classified
## 5495 Not classified
## 5496 Not classified
## 5497 Not classified
## 5498 Not classified
## 5499 Not classified
## 5500 Not classified
## 5501 Not classified
## 5502 Not classified
## 5503 Not classified
## 5504 Not classified
## 5505 Not classified
## 5506 Not classified
## 5507 Not classified
## 5508 Not classified
## 5509 Not classified
## 5510 Not classified
## 5511 Not classified
## 5512 Not classified
## 5513 Not classified
## 5514 Not classified
## 5515 Not classified
## 5516 Not classified
## 5517 Not classified
## 5518 Not classified
## 5519            IDA
## 5520            IDA
## 5521            IDA
## 5522            IDA
## 5523            IDA
## 5524            IDA
## 5525            IDA
## 5526            IDA
## 5527            IDA
## 5528            IDA
## 5529            IDA
## 5530            IDA
## 5531            IDA
## 5532            IDA
## 5533            IDA
## 5534            IDA
## 5535            IDA
## 5536            IDA
## 5537            IDA
## 5538            IDA
## 5539            IDA
## 5540            IDA
## 5541            IDA
## 5542            IDA
## 5543            IDA
## 5544            IDA
## 5545            IDA
## 5546            IDA
## 5547            IDA
## 5548            IDA
## 5549            IDA
## 5550            IDA
## 5551            IDA
## 5552            IDA
## 5553            IDA
## 5554            IDA
## 5555            IDA
## 5556            IDA
## 5557            IDA
## 5558            IDA
## 5559            IDA
## 5560            IDA
## 5561            IDA
## 5562            IDA
## 5563            IDA
## 5564            IDA
## 5565            IDA
## 5566            IDA
## 5567            IDA
## 5568            IDA
## 5569            IDA
## 5570            IDA
## 5571            IDA
## 5572            IDA
## 5573            IDA
## 5574            IDA
## 5575            IDA
## 5576            IDA
## 5577            IDA
## 5578            IDA
## 5579            IDA
## 5580            IDA
## 5581 Not classified
## 5582 Not classified
## 5583 Not classified
## 5584 Not classified
## 5585 Not classified
## 5586 Not classified
## 5587 Not classified
## 5588 Not classified
## 5589 Not classified
## 5590 Not classified
## 5591 Not classified
## 5592 Not classified
## 5593 Not classified
## 5594 Not classified
## 5595 Not classified
## 5596 Not classified
## 5597 Not classified
## 5598 Not classified
## 5599 Not classified
## 5600 Not classified
## 5601 Not classified
## 5602 Not classified
## 5603 Not classified
## 5604 Not classified
## 5605 Not classified
## 5606 Not classified
## 5607 Not classified
## 5608 Not classified
## 5609 Not classified
## 5610 Not classified
## 5611 Not classified
## 5612 Not classified
## 5613 Not classified
## 5614 Not classified
## 5615 Not classified
## 5616 Not classified
## 5617 Not classified
## 5618 Not classified
## 5619 Not classified
## 5620 Not classified
## 5621 Not classified
## 5622 Not classified
## 5623 Not classified
## 5624 Not classified
## 5625 Not classified
## 5626 Not classified
## 5627 Not classified
## 5628 Not classified
## 5629 Not classified
## 5630 Not classified
## 5631 Not classified
## 5632 Not classified
## 5633 Not classified
## 5634 Not classified
## 5635 Not classified
## 5636 Not classified
## 5637 Not classified
## 5638 Not classified
## 5639 Not classified
## 5640 Not classified
## 5641 Not classified
## 5642 Not classified
## 5643 Not classified
## 5644 Not classified
## 5645 Not classified
## 5646 Not classified
## 5647 Not classified
## 5648 Not classified
## 5649 Not classified
## 5650 Not classified
## 5651 Not classified
## 5652 Not classified
## 5653 Not classified
## 5654 Not classified
## 5655 Not classified
## 5656 Not classified
## 5657 Not classified
## 5658 Not classified
## 5659 Not classified
## 5660 Not classified
## 5661 Not classified
## 5662 Not classified
## 5663 Not classified
## 5664 Not classified
## 5665 Not classified
## 5666 Not classified
## 5667 Not classified
## 5668 Not classified
## 5669 Not classified
## 5670 Not classified
## 5671 Not classified
## 5672 Not classified
## 5673 Not classified
## 5674 Not classified
## 5675 Not classified
## 5676 Not classified
## 5677 Not classified
## 5678 Not classified
## 5679 Not classified
## 5680 Not classified
## 5681 Not classified
## 5682 Not classified
## 5683 Not classified
## 5684 Not classified
## 5685 Not classified
## 5686 Not classified
## 5687 Not classified
## 5688 Not classified
## 5689 Not classified
## 5690 Not classified
## 5691 Not classified
## 5692 Not classified
## 5693 Not classified
## 5694 Not classified
## 5695 Not classified
## 5696 Not classified
## 5697 Not classified
## 5698 Not classified
## 5699 Not classified
## 5700 Not classified
## 5701 Not classified
## 5702 Not classified
## 5703 Not classified
## 5704 Not classified
## 5705 Not classified
## 5706 Not classified
## 5707 Not classified
## 5708 Not classified
## 5709 Not classified
## 5710 Not classified
## 5711 Not classified
## 5712 Not classified
## 5713 Not classified
## 5714 Not classified
## 5715 Not classified
## 5716 Not classified
## 5717 Not classified
## 5718 Not classified
## 5719 Not classified
## 5720 Not classified
## 5721 Not classified
## 5722 Not classified
## 5723 Not classified
## 5724 Not classified
## 5725 Not classified
## 5726 Not classified
## 5727 Not classified
## 5728 Not classified
## 5729 Not classified
## 5730 Not classified
## 5731 Not classified
## 5732 Not classified
## 5733 Not classified
## 5734 Not classified
## 5735 Not classified
## 5736 Not classified
## 5737 Not classified
## 5738 Not classified
## 5739 Not classified
## 5740 Not classified
## 5741 Not classified
## 5742 Not classified
## 5743 Not classified
## 5744 Not classified
## 5745 Not classified
## 5746 Not classified
## 5747 Not classified
## 5748 Not classified
## 5749 Not classified
## 5750 Not classified
## 5751 Not classified
## 5752 Not classified
## 5753 Not classified
## 5754 Not classified
## 5755 Not classified
## 5756 Not classified
## 5757 Not classified
## 5758 Not classified
## 5759 Not classified
## 5760 Not classified
## 5761 Not classified
## 5762 Not classified
## 5763 Not classified
## 5764 Not classified
## 5765 Not classified
## 5766 Not classified
## 5767          Blend
## 5768          Blend
## 5769          Blend
## 5770          Blend
## 5771          Blend
## 5772          Blend
## 5773          Blend
## 5774          Blend
## 5775          Blend
## 5776          Blend
## 5777          Blend
## 5778          Blend
## 5779          Blend
## 5780          Blend
## 5781          Blend
## 5782          Blend
## 5783          Blend
## 5784          Blend
## 5785          Blend
## 5786          Blend
## 5787          Blend
## 5788          Blend
## 5789          Blend
## 5790          Blend
## 5791          Blend
## 5792          Blend
## 5793          Blend
## 5794          Blend
## 5795          Blend
## 5796          Blend
## 5797          Blend
## 5798          Blend
## 5799          Blend
## 5800          Blend
## 5801          Blend
## 5802          Blend
## 5803          Blend
## 5804          Blend
## 5805          Blend
## 5806          Blend
## 5807          Blend
## 5808          Blend
## 5809          Blend
## 5810          Blend
## 5811          Blend
## 5812          Blend
## 5813          Blend
## 5814          Blend
## 5815          Blend
## 5816          Blend
## 5817          Blend
## 5818          Blend
## 5819          Blend
## 5820          Blend
## 5821          Blend
## 5822          Blend
## 5823          Blend
## 5824          Blend
## 5825          Blend
## 5826          Blend
## 5827          Blend
## 5828          Blend
## 5829 Not classified
## 5830 Not classified
## 5831 Not classified
## 5832 Not classified
## 5833 Not classified
## 5834 Not classified
## 5835 Not classified
## 5836 Not classified
## 5837 Not classified
## 5838 Not classified
## 5839 Not classified
## 5840 Not classified
## 5841 Not classified
## 5842 Not classified
## 5843 Not classified
## 5844 Not classified
## 5845 Not classified
## 5846 Not classified
## 5847 Not classified
## 5848 Not classified
## 5849 Not classified
## 5850 Not classified
## 5851 Not classified
## 5852 Not classified
## 5853 Not classified
## 5854 Not classified
## 5855 Not classified
## 5856 Not classified
## 5857 Not classified
## 5858 Not classified
## 5859 Not classified
## 5860 Not classified
## 5861 Not classified
## 5862 Not classified
## 5863 Not classified
## 5864 Not classified
## 5865 Not classified
## 5866 Not classified
## 5867 Not classified
## 5868 Not classified
## 5869 Not classified
## 5870 Not classified
## 5871 Not classified
## 5872 Not classified
## 5873 Not classified
## 5874 Not classified
## 5875 Not classified
## 5876 Not classified
## 5877 Not classified
## 5878 Not classified
## 5879 Not classified
## 5880 Not classified
## 5881 Not classified
## 5882 Not classified
## 5883 Not classified
## 5884 Not classified
## 5885 Not classified
## 5886 Not classified
## 5887 Not classified
## 5888 Not classified
## 5889 Not classified
## 5890 Not classified
## 5891           IBRD
## 5892           IBRD
## 5893           IBRD
## 5894           IBRD
## 5895           IBRD
## 5896           IBRD
## 5897           IBRD
## 5898           IBRD
## 5899           IBRD
## 5900           IBRD
## 5901           IBRD
## 5902           IBRD
## 5903           IBRD
## 5904           IBRD
## 5905           IBRD
## 5906           IBRD
## 5907           IBRD
## 5908           IBRD
## 5909           IBRD
## 5910           IBRD
## 5911           IBRD
## 5912           IBRD
## 5913           IBRD
## 5914           IBRD
## 5915           IBRD
## 5916           IBRD
## 5917           IBRD
## 5918           IBRD
## 5919           IBRD
## 5920           IBRD
## 5921           IBRD
## 5922           IBRD
## 5923           IBRD
## 5924           IBRD
## 5925           IBRD
## 5926           IBRD
## 5927           IBRD
## 5928           IBRD
## 5929           IBRD
## 5930           IBRD
## 5931           IBRD
## 5932           IBRD
## 5933           IBRD
## 5934           IBRD
## 5935           IBRD
## 5936           IBRD
## 5937           IBRD
## 5938           IBRD
## 5939           IBRD
## 5940           IBRD
## 5941           IBRD
## 5942           IBRD
## 5943           IBRD
## 5944           IBRD
## 5945           IBRD
## 5946           IBRD
## 5947           IBRD
## 5948           IBRD
## 5949           IBRD
## 5950           IBRD
## 5951           IBRD
## 5952           IBRD
## 5953            IDA
## 5954            IDA
## 5955            IDA
## 5956            IDA
## 5957            IDA
## 5958            IDA
## 5959            IDA
## 5960            IDA
## 5961            IDA
## 5962            IDA
## 5963            IDA
## 5964            IDA
## 5965            IDA
## 5966            IDA
## 5967            IDA
## 5968            IDA
## 5969            IDA
## 5970            IDA
## 5971            IDA
## 5972            IDA
## 5973            IDA
## 5974            IDA
## 5975            IDA
## 5976            IDA
## 5977            IDA
## 5978            IDA
## 5979            IDA
## 5980            IDA
## 5981            IDA
## 5982            IDA
## 5983            IDA
## 5984            IDA
## 5985            IDA
## 5986            IDA
## 5987            IDA
## 5988            IDA
## 5989            IDA
## 5990            IDA
## 5991            IDA
## 5992            IDA
## 5993            IDA
## 5994            IDA
## 5995            IDA
## 5996            IDA
## 5997            IDA
## 5998            IDA
## 5999            IDA
## 6000            IDA
## 6001            IDA
## 6002            IDA
## 6003            IDA
## 6004            IDA
## 6005            IDA
## 6006            IDA
## 6007            IDA
## 6008            IDA
## 6009            IDA
## 6010            IDA
## 6011            IDA
## 6012            IDA
## 6013            IDA
## 6014            IDA
## 6015            IDA
## 6016            IDA
## 6017            IDA
## 6018            IDA
## 6019            IDA
## 6020            IDA
## 6021            IDA
## 6022            IDA
## 6023            IDA
## 6024            IDA
## 6025            IDA
## 6026            IDA
## 6027            IDA
## 6028            IDA
## 6029            IDA
## 6030            IDA
## 6031            IDA
## 6032            IDA
## 6033            IDA
## 6034            IDA
## 6035            IDA
## 6036            IDA
## 6037            IDA
## 6038            IDA
## 6039            IDA
## 6040            IDA
## 6041            IDA
## 6042            IDA
## 6043            IDA
## 6044            IDA
## 6045            IDA
## 6046            IDA
## 6047            IDA
## 6048            IDA
## 6049            IDA
## 6050            IDA
## 6051            IDA
## 6052            IDA
## 6053            IDA
## 6054            IDA
## 6055            IDA
## 6056            IDA
## 6057            IDA
## 6058            IDA
## 6059            IDA
## 6060            IDA
## 6061            IDA
## 6062            IDA
## 6063            IDA
## 6064            IDA
## 6065            IDA
## 6066            IDA
## 6067            IDA
## 6068            IDA
## 6069            IDA
## 6070            IDA
## 6071            IDA
## 6072            IDA
## 6073            IDA
## 6074            IDA
## 6075            IDA
## 6076            IDA
## 6077            IDA
## 6078            IDA
## 6079            IDA
## 6080            IDA
## 6081            IDA
## 6082            IDA
## 6083            IDA
## 6084            IDA
## 6085            IDA
## 6086            IDA
## 6087            IDA
## 6088            IDA
## 6089            IDA
## 6090            IDA
## 6091            IDA
## 6092            IDA
## 6093            IDA
## 6094            IDA
## 6095            IDA
## 6096            IDA
## 6097            IDA
## 6098            IDA
## 6099            IDA
## 6100            IDA
## 6101            IDA
## 6102            IDA
## 6103            IDA
## 6104            IDA
## 6105            IDA
## 6106            IDA
## 6107            IDA
## 6108            IDA
## 6109            IDA
## 6110            IDA
## 6111            IDA
## 6112            IDA
## 6113            IDA
## 6114            IDA
## 6115            IDA
## 6116            IDA
## 6117            IDA
## 6118            IDA
## 6119            IDA
## 6120            IDA
## 6121            IDA
## 6122            IDA
## 6123            IDA
## 6124            IDA
## 6125            IDA
## 6126            IDA
## 6127            IDA
## 6128            IDA
## 6129            IDA
## 6130            IDA
## 6131            IDA
## 6132            IDA
## 6133            IDA
## 6134            IDA
## 6135            IDA
## 6136            IDA
## 6137            IDA
## 6138            IDA
## 6139            IDA
## 6140            IDA
## 6141            IDA
## 6142            IDA
## 6143            IDA
## 6144            IDA
## 6145            IDA
## 6146            IDA
## 6147            IDA
## 6148            IDA
## 6149            IDA
## 6150            IDA
## 6151            IDA
## 6152            IDA
## 6153            IDA
## 6154            IDA
## 6155            IDA
## 6156            IDA
## 6157            IDA
## 6158            IDA
## 6159            IDA
## 6160            IDA
## 6161            IDA
## 6162            IDA
## 6163            IDA
## 6164            IDA
## 6165            IDA
## 6166            IDA
## 6167            IDA
## 6168            IDA
## 6169            IDA
## 6170            IDA
## 6171            IDA
## 6172            IDA
## 6173            IDA
## 6174            IDA
## 6175            IDA
## 6176            IDA
## 6177            IDA
## 6178            IDA
## 6179            IDA
## 6180            IDA
## 6181            IDA
## 6182            IDA
## 6183            IDA
## 6184            IDA
## 6185            IDA
## 6186            IDA
## 6187            IDA
## 6188            IDA
## 6189            IDA
## 6190            IDA
## 6191            IDA
## 6192            IDA
## 6193            IDA
## 6194            IDA
## 6195            IDA
## 6196            IDA
## 6197            IDA
## 6198            IDA
## 6199            IDA
## 6200            IDA
## 6201     Aggregates
## 6202     Aggregates
## 6203     Aggregates
## 6204     Aggregates
## 6205     Aggregates
## 6206     Aggregates
## 6207     Aggregates
## 6208     Aggregates
## 6209     Aggregates
## 6210     Aggregates
## 6211     Aggregates
## 6212     Aggregates
## 6213     Aggregates
## 6214     Aggregates
## 6215     Aggregates
## 6216     Aggregates
## 6217     Aggregates
## 6218     Aggregates
## 6219     Aggregates
## 6220     Aggregates
## 6221     Aggregates
## 6222     Aggregates
## 6223     Aggregates
## 6224     Aggregates
## 6225     Aggregates
## 6226     Aggregates
## 6227     Aggregates
## 6228     Aggregates
## 6229     Aggregates
## 6230     Aggregates
## 6231     Aggregates
## 6232     Aggregates
## 6233     Aggregates
## 6234     Aggregates
## 6235     Aggregates
## 6236     Aggregates
## 6237     Aggregates
## 6238     Aggregates
## 6239     Aggregates
## 6240     Aggregates
## 6241     Aggregates
## 6242     Aggregates
## 6243     Aggregates
## 6244     Aggregates
## 6245     Aggregates
## 6246     Aggregates
## 6247     Aggregates
## 6248     Aggregates
## 6249     Aggregates
## 6250     Aggregates
## 6251     Aggregates
## 6252     Aggregates
## 6253     Aggregates
## 6254     Aggregates
## 6255     Aggregates
## 6256     Aggregates
## 6257     Aggregates
## 6258     Aggregates
## 6259     Aggregates
## 6260     Aggregates
## 6261     Aggregates
## 6262     Aggregates
## 6263           <NA>
## 6264           <NA>
## 6265           <NA>
## 6266           <NA>
## 6267           <NA>
## 6268           <NA>
## 6269           <NA>
## 6270           <NA>
## 6271           <NA>
## 6272           <NA>
## 6273           <NA>
## 6274           <NA>
## 6275           <NA>
## 6276           <NA>
## 6277           <NA>
## 6278           <NA>
## 6279           <NA>
## 6280           <NA>
## 6281           <NA>
## 6282           <NA>
## 6283           <NA>
## 6284           <NA>
## 6285           <NA>
## 6286           <NA>
## 6287           <NA>
## 6288           <NA>
## 6289           <NA>
## 6290           <NA>
## 6291           <NA>
## 6292           <NA>
## 6293           <NA>
## 6294           <NA>
## 6295           <NA>
## 6296           <NA>
## 6297           <NA>
## 6298           <NA>
## 6299           <NA>
## 6300           <NA>
## 6301           <NA>
## 6302           <NA>
## 6303           <NA>
## 6304           <NA>
## 6305           <NA>
## 6306           <NA>
## 6307           <NA>
## 6308           <NA>
## 6309           <NA>
## 6310           <NA>
## 6311           <NA>
## 6312           <NA>
## 6313           <NA>
## 6314           <NA>
## 6315           <NA>
## 6316           <NA>
## 6317           <NA>
## 6318           <NA>
## 6319           <NA>
## 6320           <NA>
## 6321           <NA>
## 6322           <NA>
## 6323           <NA>
## 6324           <NA>
## 6325            IDA
## 6326            IDA
## 6327            IDA
## 6328            IDA
## 6329            IDA
## 6330            IDA
## 6331            IDA
## 6332            IDA
## 6333            IDA
## 6334            IDA
## 6335            IDA
## 6336            IDA
## 6337            IDA
## 6338            IDA
## 6339            IDA
## 6340            IDA
## 6341            IDA
## 6342            IDA
## 6343            IDA
## 6344            IDA
## 6345            IDA
## 6346            IDA
## 6347            IDA
## 6348            IDA
## 6349            IDA
## 6350            IDA
## 6351            IDA
## 6352            IDA
## 6353            IDA
## 6354            IDA
## 6355            IDA
## 6356            IDA
## 6357            IDA
## 6358            IDA
## 6359            IDA
## 6360            IDA
## 6361            IDA
## 6362            IDA
## 6363            IDA
## 6364            IDA
## 6365            IDA
## 6366            IDA
## 6367            IDA
## 6368            IDA
## 6369            IDA
## 6370            IDA
## 6371            IDA
## 6372            IDA
## 6373            IDA
## 6374            IDA
## 6375            IDA
## 6376            IDA
## 6377            IDA
## 6378            IDA
## 6379            IDA
## 6380            IDA
## 6381            IDA
## 6382            IDA
## 6383            IDA
## 6384            IDA
## 6385            IDA
## 6386            IDA
## 6387 Not classified
## 6388 Not classified
## 6389 Not classified
## 6390 Not classified
## 6391 Not classified
## 6392 Not classified
## 6393 Not classified
## 6394 Not classified
## 6395 Not classified
## 6396 Not classified
## 6397 Not classified
## 6398 Not classified
## 6399 Not classified
## 6400 Not classified
## 6401 Not classified
## 6402 Not classified
## 6403 Not classified
## 6404 Not classified
## 6405 Not classified
## 6406 Not classified
## 6407 Not classified
## 6408 Not classified
## 6409 Not classified
## 6410 Not classified
## 6411 Not classified
## 6412 Not classified
## 6413 Not classified
## 6414 Not classified
## 6415 Not classified
## 6416 Not classified
## 6417 Not classified
## 6418 Not classified
## 6419 Not classified
## 6420 Not classified
## 6421 Not classified
## 6422 Not classified
## 6423 Not classified
## 6424 Not classified
## 6425 Not classified
## 6426 Not classified
## 6427 Not classified
## 6428 Not classified
## 6429 Not classified
## 6430 Not classified
## 6431 Not classified
## 6432 Not classified
## 6433 Not classified
## 6434 Not classified
## 6435 Not classified
## 6436 Not classified
## 6437 Not classified
## 6438 Not classified
## 6439 Not classified
## 6440 Not classified
## 6441 Not classified
## 6442 Not classified
## 6443 Not classified
## 6444 Not classified
## 6445 Not classified
## 6446 Not classified
## 6447 Not classified
## 6448 Not classified
## 6449 Not classified
## 6450 Not classified
## 6451 Not classified
## 6452 Not classified
## 6453 Not classified
## 6454 Not classified
## 6455 Not classified
## 6456 Not classified
## 6457 Not classified
## 6458 Not classified
## 6459 Not classified
## 6460 Not classified
## 6461 Not classified
## 6462 Not classified
## 6463 Not classified
## 6464 Not classified
## 6465 Not classified
## 6466 Not classified
## 6467 Not classified
## 6468 Not classified
## 6469 Not classified
## 6470 Not classified
## 6471 Not classified
## 6472 Not classified
## 6473 Not classified
## 6474 Not classified
## 6475 Not classified
## 6476 Not classified
## 6477 Not classified
## 6478 Not classified
## 6479 Not classified
## 6480 Not classified
## 6481 Not classified
## 6482 Not classified
## 6483 Not classified
## 6484 Not classified
## 6485 Not classified
## 6486 Not classified
## 6487 Not classified
## 6488 Not classified
## 6489 Not classified
## 6490 Not classified
## 6491 Not classified
## 6492 Not classified
## 6493 Not classified
## 6494 Not classified
## 6495 Not classified
## 6496 Not classified
## 6497 Not classified
## 6498 Not classified
## 6499 Not classified
## 6500 Not classified
## 6501 Not classified
## 6502 Not classified
## 6503 Not classified
## 6504 Not classified
## 6505 Not classified
## 6506 Not classified
## 6507 Not classified
## 6508 Not classified
## 6509 Not classified
## 6510 Not classified
## 6511     Aggregates
## 6512     Aggregates
## 6513     Aggregates
## 6514     Aggregates
## 6515     Aggregates
## 6516     Aggregates
## 6517     Aggregates
## 6518     Aggregates
## 6519     Aggregates
## 6520     Aggregates
## 6521     Aggregates
## 6522     Aggregates
## 6523     Aggregates
## 6524     Aggregates
## 6525     Aggregates
## 6526     Aggregates
## 6527     Aggregates
## 6528     Aggregates
## 6529     Aggregates
## 6530     Aggregates
## 6531     Aggregates
## 6532     Aggregates
## 6533     Aggregates
## 6534     Aggregates
## 6535     Aggregates
## 6536     Aggregates
## 6537     Aggregates
## 6538     Aggregates
## 6539     Aggregates
## 6540     Aggregates
## 6541     Aggregates
## 6542     Aggregates
## 6543     Aggregates
## 6544     Aggregates
## 6545     Aggregates
## 6546     Aggregates
## 6547     Aggregates
## 6548     Aggregates
## 6549     Aggregates
## 6550     Aggregates
## 6551     Aggregates
## 6552     Aggregates
## 6553     Aggregates
## 6554     Aggregates
## 6555     Aggregates
## 6556     Aggregates
## 6557     Aggregates
## 6558     Aggregates
## 6559     Aggregates
## 6560     Aggregates
## 6561     Aggregates
## 6562     Aggregates
## 6563     Aggregates
## 6564     Aggregates
## 6565     Aggregates
## 6566     Aggregates
## 6567     Aggregates
## 6568     Aggregates
## 6569     Aggregates
## 6570     Aggregates
## 6571     Aggregates
## 6572     Aggregates
## 6573 Not classified
## 6574 Not classified
## 6575 Not classified
## 6576 Not classified
## 6577 Not classified
## 6578 Not classified
## 6579 Not classified
## 6580 Not classified
## 6581 Not classified
## 6582 Not classified
## 6583 Not classified
## 6584 Not classified
## 6585 Not classified
## 6586 Not classified
## 6587 Not classified
## 6588 Not classified
## 6589 Not classified
## 6590 Not classified
## 6591 Not classified
## 6592 Not classified
## 6593 Not classified
## 6594 Not classified
## 6595 Not classified
## 6596 Not classified
## 6597 Not classified
## 6598 Not classified
## 6599 Not classified
## 6600 Not classified
## 6601 Not classified
## 6602 Not classified
## 6603 Not classified
## 6604 Not classified
## 6605 Not classified
## 6606 Not classified
## 6607 Not classified
## 6608 Not classified
## 6609 Not classified
## 6610 Not classified
## 6611 Not classified
## 6612 Not classified
## 6613 Not classified
## 6614 Not classified
## 6615 Not classified
## 6616 Not classified
## 6617 Not classified
## 6618 Not classified
## 6619 Not classified
## 6620 Not classified
## 6621 Not classified
## 6622 Not classified
## 6623 Not classified
## 6624 Not classified
## 6625 Not classified
## 6626 Not classified
## 6627 Not classified
## 6628 Not classified
## 6629 Not classified
## 6630 Not classified
## 6631 Not classified
## 6632 Not classified
## 6633 Not classified
## 6634 Not classified
## 6635     Aggregates
## 6636     Aggregates
## 6637     Aggregates
## 6638     Aggregates
## 6639     Aggregates
## 6640     Aggregates
## 6641     Aggregates
## 6642     Aggregates
## 6643     Aggregates
## 6644     Aggregates
## 6645     Aggregates
## 6646     Aggregates
## 6647     Aggregates
## 6648     Aggregates
## 6649     Aggregates
## 6650     Aggregates
## 6651     Aggregates
## 6652     Aggregates
## 6653     Aggregates
## 6654     Aggregates
## 6655     Aggregates
## 6656     Aggregates
## 6657     Aggregates
## 6658     Aggregates
## 6659     Aggregates
## 6660     Aggregates
## 6661     Aggregates
## 6662     Aggregates
## 6663     Aggregates
## 6664     Aggregates
## 6665     Aggregates
## 6666     Aggregates
##  [ reached 'max' / getOption("max.print") -- omitted 9826 rows ]
WDIsearch(string="gdp per capita", field="name", short=FALSE, cache=NULL)
##                        indicator
## 717           6.0.GDPpc_constant
## 2271              CC.GHG.MEMG.GC
## 6236           FB.DPT.INSU.PC.ZS
## 11209          NV.AGR.PCAP.KD.ZG
## 11429             NY.GDP.PCAP.CD
## 11430             NY.GDP.PCAP.CN
## 11431             NY.GDP.PCAP.KD
## 11432          NY.GDP.PCAP.KD.ZG
## 11433             NY.GDP.PCAP.KN
## 11434          NY.GDP.PCAP.PP.CD
## 11435          NY.GDP.PCAP.PP.KD
## 11436       NY.GDP.PCAP.PP.KD.87
## 11437       NY.GDP.PCAP.PP.KD.ZG
## 15599              SE.PRM.SATT.2
## 15663              SE.PRM.TATT.1
## 15896          SE.XPD.PRIM.PC.ZS
## 15900          SE.XPD.SECO.PC.ZS
## 15905          SE.XPD.TERT.PC.ZS
## 20123  UIS.XUNIT.GDPCAP.02.FSGOV
## 20124   UIS.XUNIT.GDPCAP.1.FSGOV
## 20125    UIS.XUNIT.GDPCAP.1.FSHH
## 20126   UIS.XUNIT.GDPCAP.2.FSGOV
## 20127  UIS.XUNIT.GDPCAP.23.FSGOV
## 20128   UIS.XUNIT.GDPCAP.23.FSHH
## 20129   UIS.XUNIT.GDPCAP.3.FSGOV
## 20130 UIS.XUNIT.GDPCAP.5T8.FSGOV
## 20131  UIS.XUNIT.GDPCAP.5T8.FSHH
##                                                                                           name
## 717                                       GDP per capita, PPP (constant 2011 international $) 
## 2271            Macro drivers of GHG emissions growth in the period 2012-2018 - GDP per capita
## 6236                                          Deposit insurance coverage (% of GDP per capita)
## 11209                                         Real agricultural GDP per capita growth rate (%)
## 11429                                                             GDP per capita (current US$)
## 11430                                                             GDP per capita (current LCU)
## 11431                                                       GDP per capita (constant 2015 US$)
## 11432                                                         GDP per capita growth (annual %)
## 11433                                                            GDP per capita (constant LCU)
## 11434                                            GDP per capita, PPP (current international $)
## 11435                                      GDP per capita, PPP (constant 2017 international $)
## 11436                                      GDP per capita, PPP (constant 1987 international $)
## 11437                                                    GDP per capita, PPP annual growth (%)
## 15599                         (De Facto) Average principal salary as percent of GDP per capita
## 15663     (De Jure) Average starting public-school teacher salary as percent of GDP per capita
## 15896                        Government expenditure per student, primary (% of GDP per capita)
## 15900                      Government expenditure per student, secondary (% of GDP per capita)
## 15905                       Government expenditure per student, tertiary (% of GDP per capita)
## 20123     Initial government funding per pre-primary student as a percentage of GDP per capita
## 20124         Initial government funding per primary student as a percentage of GDP per capita
## 20125          Initial household funding per primary student as a percentage of GDP per capita
## 20126 Initial government funding per lower secondary student as a percentage of GDP per capita
## 20127       Initial government funding per secondary student as a percentage of GDP per capita
## 20128        Initial household funding per secondary student as a percentage of GDP per capita
## 20129 Initial government funding per upper secondary student as a percentage of GDP per capita
## 20130        Initial government funding per tertiary student as a percentage of GDP per capita
## 20131         Initial household funding per tertiary student as a percentage of GDP per capita
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      description
## 717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GDP per capita based on purchasing power parity (PPP). PPP GDP is gross domestic product converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GDP as the U.S. dollar has in the United States. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant 2011 international dollars. 
## 2271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Data reflects the impact of GDP-per capita (as a macro-driver) to total emission growth (excluding LUCF) across the period 2012-2018. This data has been calculated by World Bank staff using greenhouse gas emissions data from the World Resource Institute's Climate Watch. Climate Watch Historical Emission data contains sector-level greenhouse gas (GHG) emissions data for 194 countries and the European Union (EU) for the period 1990-2018, including emissions of the six major GHGs from most major sources and sinks. Non-CO2 emissions are expressed in CO2 equivalents using 100-year global warming potential values from IPCC Fourth Assessment Report. Climate Watch Historical GHG Emissions data (previously published through CAIT Climate Data Explorer) are derived from several sources. Any use of the Land-Use Change and Forestry or Agriculture indicator should be cited as FAO 2020, FAOSTAT Emissions Database. Any use of CO2 emissions from fuel combustion data should be cited as CO2 Emissions from Fuel Combustion, OECD/IEA, 2020.
## 6236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## 11209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The growth rate of real per capita GDP in agriculture, expressed at an annual rate.  
## 11429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GDP per capita is gross domestic product divided by midyear population. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in current U.S. dollars.
## 11430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GDP per capita is gross domestic product divided by midyear population. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in current local currency.
## 11431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GDP per capita is gross domestic product divided by midyear population. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant 2015 U.S. dollars.
## 11432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Annual percentage growth rate of GDP per capita based on constant local currency. GDP per capita is gross domestic product divided by midyear population. GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources.
## 11433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GDP per capita is gross domestic product divided by midyear population. GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant local currency.
## 11434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This indicator provides per capita values for gross domestic product (GDP) expressed in current international dollars converted by purchasing power parity (PPP) conversion factor.   GDP is the sum of gross value added by all resident producers in the country plus any product taxes and minus any subsidies not included in the value of the products. conversion factor is a spatial price deflator and currency converter that controls for price level differences between countries. Total population is a mid-year population based on the de facto definition of population, which counts all residents regardless of legal status or citizenship.
## 11435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GDP per capita based on purchasing power parity (PPP). PPP GDP is gross domestic product converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GDP as the U.S. dollar has in the United States. GDP at purchaser's prices is the sum of gross value added by all resident producers in the country plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant 2017 international dollars.
## 11436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## 11437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Annual percentage growth rate of GDP per capita based on purchasing power parity (PPP). GDP per capita based on purchasing power parity (PPP). PPP GDP is gross domestic product converted to international dollars using purchasing power parity rates. An international dollar has the same purchasing power over GDP as the U.S. dollar has in the United States. GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant 2000 international dollars.  
## 15599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## 15663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## 15896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Government expenditure per student is the average general government expenditure (current, capital, and transfers) per student in the given level of education, expressed as a percentage of GDP per capita.
## 15900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Government expenditure per student is the average general government expenditure (current, capital, and transfers) per student in the given level of education, expressed as a percentage of GDP per capita.
## 15905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Government expenditure per student is the average general government expenditure (current, capital, and transfers) per student in the given level of education, expressed as a percentage of GDP per capita.
## 20123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Total general (local, regional and central, current and capital) initial government funding of education per student, which includes transfers paid (such as scholarships to students), but excludes transfers received, in this case international transfers to government for education (when foreign donors provide education sector budget support or other support integrated in the government budget). Calculation Method: Total general (local, regional and central) government expenditure (current and capital) on a given level of education (primary, secondary, etc) minus international transfers to government for education, divided by the number of student enrolled at that level of education. This is then expressed as a share of GDP per capita. Limitations: In some instances data on total government expenditure on education refers only to the Ministry of Education, excluding other ministries which may also spend a part of their budget on educational activities. There are also cases where it may not be possible to separate international transfers to government from general government expenditure on education, in which cases they have not been subtracted in the formula. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/
## 20124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Total general (local, regional and central, current and capital) initial government funding of education per student, which includes transfers paid (such as scholarships to students), but excludes transfers received, in this case international transfers to government for education (when foreign donors provide education sector budget support or other support integrated in the government budget). Calculation Method: Total general (local, regional and central) government expenditure (current and capital) on a given level of education (primary, secondary, etc) minus international transfers to government for education, divided by the number of student enrolled at that level of education. This is then expressed as a share of GDP per capita. Limitations: In some instances data on total government expenditure on education refers only to the Ministry of Education, excluding other ministries which may also spend a part of their budget on educational activities. There are also cases where it may not be possible to separate international transfers to government from general government expenditure on education, in which cases they have not been subtracted in the formula. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/
## 20125 Total payments of households (pupils, students and their families) for educational institutions (such as for tuition fees, exam and registration fees, contribution to Parent-Teacher associations or other school funds, and fees for canteen, boarding and transport) and purchases outside of educational institutions (such as for uniforms, textbooks, teaching materials, or private classes). 'Initial funding' means that government transfers to households, such as scholarships and other financial aid for education, are subtracted from what is spent by households. Note that in some countries for some education levels, the value of this indicator may be 0, since on average households may be receiving as much, or more, in financial aid from the government than what they are spending on education. Calculation: Total payments of households (pupils, students and their families) for educational institutions (such as for tuition fees, exam and registration fees, contribution to Parent-Teacher associations or other school funds, and fees for canteen, boarding and transport), plus purchases outside of educational institutions (such as for uniforms, textbooks, teaching materials, or private classes), minus government education transfers to households (such as scholarships or other education-specific financial aid). When expressed as a share of GDP, this is then divided by the country's Gross Domestic Product (GDP). Limitations: Indicators for household expenditure on education should be interpreted with caution since data comes from household surveys which may not all follow the same definitions and concepts. These types of surveys are also not carried out in all countries with regularity, and for some categories (such as pupils in pre-primary education), the sample sizes may be low. In some cases where data on government transfers to households (scholarships and other financial aid) was not available, they could not be subtracted from amounts paid by households. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/
## 20126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Total general (local, regional and central, current and capital) initial government funding of education per student, which includes transfers paid (such as scholarships to students), but excludes transfers received, in this case international transfers to government for education (when foreign donors provide education sector budget support or other support integrated in the government budget). Calculation Method: Total general (local, regional and central) government expenditure (current and capital) on a given level of education (primary, secondary, etc) minus international transfers to government for education, divided by the number of student enrolled at that level of education. This is then expressed as a share of GDP per capita. Limitations: In some instances data on total government expenditure on education refers only to the Ministry of Education, excluding other ministries which may also spend a part of their budget on educational activities. There are also cases where it may not be possible to separate international transfers to government from general government expenditure on education, in which cases they have not been subtracted in the formula. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/
## 20127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Total general (local, regional and central, current and capital) initial government funding of education per student, which includes transfers paid (such as scholarships to students), but excludes transfers received, in this case international transfers to government for education (when foreign donors provide education sector budget support or other support integrated in the government budget). Calculation Method: Total general (local, regional and central) government expenditure (current and capital) on a given level of education (primary, secondary, etc) minus international transfers to government for education, divided by the number of student enrolled at that level of education. This is then expressed as a share of GDP per capita. Limitations: In some instances data on total government expenditure on education refers only to the Ministry of Education, excluding other ministries which may also spend a part of their budget on educational activities. There are also cases where it may not be possible to separate international transfers to government from general government expenditure on education, in which cases they have not been subtracted in the formula. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/
## 20128 Total payments of households (pupils, students and their families) for educational institutions (such as for tuition fees, exam and registration fees, contribution to Parent-Teacher associations or other school funds, and fees for canteen, boarding and transport) and purchases outside of educational institutions (such as for uniforms, textbooks, teaching materials, or private classes). 'Initial funding' means that government transfers to households, such as scholarships and other financial aid for education, are subtracted from what is spent by households. Note that in some countries for some education levels, the value of this indicator may be 0, since on average households may be receiving as much, or more, in financial aid from the government than what they are spending on education. Calculation: Total payments of households (pupils, students and their families) for educational institutions (such as for tuition fees, exam and registration fees, contribution to Parent-Teacher associations or other school funds, and fees for canteen, boarding and transport), plus purchases outside of educational institutions (such as for uniforms, textbooks, teaching materials, or private classes), minus government education transfers to households (such as scholarships or other education-specific financial aid). When expressed as a share of GDP, this is then divided by the country's Gross Domestic Product (GDP). Limitations: Indicators for household expenditure on education should be interpreted with caution since data comes from household surveys which may not all follow the same definitions and concepts. These types of surveys are also not carried out in all countries with regularity, and for some categories (such as pupils in pre-primary education), the sample sizes may be low. In some cases where data on government transfers to households (scholarships and other financial aid) was not available, they could not be subtracted from amounts paid by households. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/
## 20129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Total general (local, regional and central, current and capital) initial government funding of education per student, which includes transfers paid (such as scholarships to students), but excludes transfers received, in this case international transfers to government for education (when foreign donors provide education sector budget support or other support integrated in the government budget). Calculation Method: Total general (local, regional and central) government expenditure (current and capital) on a given level of education (primary, secondary, etc) minus international transfers to government for education, divided by the number of student enrolled at that level of education. This is then expressed as a share of GDP per capita. Limitations: In some instances data on total government expenditure on education refers only to the Ministry of Education, excluding other ministries which may also spend a part of their budget on educational activities. There are also cases where it may not be possible to separate international transfers to government from general government expenditure on education, in which cases they have not been subtracted in the formula. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/
## 20130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Total general (local, regional and central, current and capital) initial government funding of education per student, which includes transfers paid (such as scholarships to students), but excludes transfers received, in this case international transfers to government for education (when foreign donors provide education sector budget support or other support integrated in the government budget). Calculation Method: Total general (local, regional and central) government expenditure (current and capital) on a given level of education (primary, secondary, etc) minus international transfers to government for education, divided by the number of student enrolled at that level of education. This is then expressed as a share of GDP per capita. Limitations: In some instances data on total government expenditure on education refers only to the Ministry of Education, excluding other ministries which may also spend a part of their budget on educational activities. There are also cases where it may not be possible to separate international transfers to government from general government expenditure on education, in which cases they have not been subtracted in the formula. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/
## 20131 Total payments of households (pupils, students and their families) for educational institutions (such as for tuition fees, exam and registration fees, contribution to Parent-Teacher associations or other school funds, and fees for canteen, boarding and transport) and purchases outside of educational institutions (such as for uniforms, textbooks, teaching materials, or private classes). 'Initial funding' means that government transfers to households, such as scholarships and other financial aid for education, are subtracted from what is spent by households. Note that in some countries for some education levels, the value of this indicator may be 0, since on average households may be receiving as much, or more, in financial aid from the government than what they are spending on education. Calculation: Total payments of households (pupils, students and their families) for educational institutions (such as for tuition fees, exam and registration fees, contribution to Parent-Teacher associations or other school funds, and fees for canteen, boarding and transport), plus purchases outside of educational institutions (such as for uniforms, textbooks, teaching materials, or private classes), minus government education transfers to households (such as scholarships or other education-specific financial aid). When expressed as a share of GDP, this is then divided by the country's Gross Domestic Product (GDP). Limitations: Indicators for household expenditure on education should be interpreted with caution since data comes from household surveys which may not all follow the same definitions and concepts. These types of surveys are also not carried out in all countries with regularity, and for some categories (such as pupils in pre-primary education), the sample sizes may be low. In some cases where data on government transfers to households (scholarships and other financial aid) was not available, they could not be subtracted from amounts paid by households. For more information, consult the UNESCO Institute of Statistics website: http://www.uis.unesco.org/Education/
##                                      sourceDatabase
## 717                                  LAC Equity Lab
## 2271  Country Climate and Development Report (CCDR)
## 6236                          WDI Database Archives
## 11209                 Africa Development Indicators
## 11429                  World Development Indicators
## 11430                  World Development Indicators
## 11431                  World Development Indicators
## 11432                  World Development Indicators
## 11433                  World Development Indicators
## 11434                  World Development Indicators
## 11435                  World Development Indicators
## 11436                         WDI Database Archives
## 11437                 Africa Development Indicators
## 15599                              Education Policy
## 15663                              Education Policy
## 15896                  World Development Indicators
## 15900                  World Development Indicators
## 15905                  World Development Indicators
## 20123                          Education Statistics
## 20124                          Education Statistics
## 20125                          Education Statistics
## 20126                          Education Statistics
## 20127                          Education Statistics
## 20128                          Education Statistics
## 20129                          Education Statistics
## 20130                          Education Statistics
## 20131                          Education Statistics
##                                                                                                                    sourceOrganization
## 717                                                                                         World Development Indicators (World Bank)
## 2271           Climate Watch. 2020. Washington, DC: World Resources Institute. Available online at: https://www.climatewatchdata.org.
## 6236                                                                                                                                 
## 11209                                                                                                  World Bank country economists.
## 11429                                                       World Bank national accounts data, and OECD National Accounts data files.
## 11430                                                       World Bank national accounts data, and OECD National Accounts data files.
## 11431                                                       World Bank national accounts data, and OECD National Accounts data files.
## 11432                                                       World Bank national accounts data, and OECD National Accounts data files.
## 11433                                                       World Bank national accounts data, and OECD National Accounts data files.
## 11434 International Comparison Program, World Bank | World Development Indicators database, World Bank | Eurostat-OECD PPP Programme.
## 11435 International Comparison Program, World Bank | World Development Indicators database, World Bank | Eurostat-OECD PPP Programme.
## 11436                                                                                                                                
## 11437                                                                    "World Bank, International Comparison Programme database.\r"
## 15599                                                                                   World Bank, Global Education Policy Dashboard
## 15663                                                                                   World Bank, Global Education Policy Dashboard
## 15896                                             UNESCO Institute for Statistics (http://uis.unesco.org/). Data as of February 2020.
## 15900                                             UNESCO Institute for Statistics (http://uis.unesco.org/). Data as of February 2020.
## 15905                                             UNESCO Institute for Statistics (http://uis.unesco.org/). Data as of February 2020.
## 20123                                                                                                 UNESCO Institute for Statistics
## 20124                                                                                                 UNESCO Institute for Statistics
## 20125                                                                                                 UNESCO Institute for Statistics
## 20126                                                                                                 UNESCO Institute for Statistics
## 20127                                                                                                 UNESCO Institute for Statistics
## 20128                                                                                                 UNESCO Institute for Statistics
## 20129                                                                                                 UNESCO Institute for Statistics
## 20130                                                                                                 UNESCO Institute for Statistics
## 20131                                                                                                 UNESCO Institute for Statistics
WDIsearch(string="life expectancy", field="name", short=FALSE, cache=NULL)
##               indicator
## 15750       SE.SCH.LIFE
## 15751    SE.SCH.LIFE.FE
## 15752    SE.SCH.LIFE.MA
## 17307 SP.DYN.LE00.FE.IN
## 17308    SP.DYN.LE00.IN
## 17309 SP.DYN.LE00.MA.IN
## 17310 SP.DYN.LE60.FE.IN
## 17311 SP.DYN.LE60.MA.IN
## 17312    SP.DYN.LIFE.MF
## 19923        UIS.SLE.02
## 19924      UIS.SLE.02.F
## 19925    UIS.SLE.02.GPI
## 19926      UIS.SLE.02.M
## 19927         UIS.SLE.1
## 19928       UIS.SLE.1.F
## 19929     UIS.SLE.1.GPI
## 19930       UIS.SLE.1.M
## 19931        UIS.SLE.12
## 19932      UIS.SLE.12.F
## 19933      UIS.SLE.12.M
## 19934       UIS.SLE.123
## 19935     UIS.SLE.123.F
## 19936   UIS.SLE.123.GPI
## 19937     UIS.SLE.123.M
## 19938   UIS.SLE.1T2.GPI
## 19939   UIS.SLE.1T6.GPI
## 19940        UIS.SLE.23
## 19941      UIS.SLE.23.F
## 19942    UIS.SLE.23.GPI
## 19943      UIS.SLE.23.M
## 19944         UIS.SLE.4
## 19945       UIS.SLE.4.F
## 19946     UIS.SLE.4.GPI
## 19947       UIS.SLE.4.M
## 19948        UIS.SLE.56
## 19949      UIS.SLE.56.F
## 19950    UIS.SLE.56.GPI
## 19951      UIS.SLE.56.M
##                                                                                 name
## 15750                School life expectancy, primary to tertiary, both sexes (years)
## 15751                    School life expectancy, primary to tertiary, female (years)
## 15752                      School life expectancy, primary to tertiary, male (years)
## 17307                                       Life expectancy at birth, female (years)
## 17308                                        Life expectancy at birth, total (years)
## 17309                                         Life expectancy at birth, male (years)
## 17310                                      Life expectancy at age 60, female (years)
## 17311                                        Life expectancy at age 60, male (years)
## 17312                                                Life Expectancy at Birth(years)
## 19923                        School life expectancy, pre-primary, both sexes (years)
## 19924                            School life expectancy, pre-primary, female (years)
## 19925                 School life expectancy, pre-primary, gender parity index (GPI)
## 19926                              School life expectancy, pre-primary, male (years)
## 19927                            School life expectancy, primary, both sexes (years)
## 19928                                School life expectancy, primary, female (years)
## 19929                     School life expectancy, primary, gender parity index (GPI)
## 19930                                  School life expectancy, primary, male (years)
## 19931        School life expectancy, primary and lower secondary, both sexes (years)
## 19932            School life expectancy, primary and lower secondary, female (years)
## 19933              School life expectancy, primary and lower secondary, male (years)
## 19934              School life expectancy, primary and secondary, both sexes (years)
## 19935                  School life expectancy, primary and secondary, female (years)
## 19936       School life expectancy, primary and secondary, gender parity index (GPI)
## 19937                    School life expectancy, primary and secondary, male (years)
## 19938 School life expectancy, primary and lower secondary, gender parity index (GPI)
## 19939         School life expectancy, primary to tertiary, gender parity index (GPI)
## 19940                          School life expectancy, secondary, both sexes (years)
## 19941                              School life expectancy, secondary, female (years)
## 19942                   School life expectancy, secondary, gender parity index (GPI)
## 19943                                School life expectancy, secondary, male (years)
## 19944        School life expectancy, post-secondary non-tertiary, both sexes (years)
## 19945            School life expectancy, post-secondary non-tertiary, female (years)
## 19946 School life expectancy, post-secondary non-tertiary, gender parity index (GPI)
## 19947              School life expectancy, post-secondary non-tertiary, male (years)
## 19948                           School life expectancy, tertiary, both sexes (years)
## 19949                               School life expectancy, tertiary, female (years)
## 19950                    School life expectancy, tertiary, gender parity index (GPI)
## 19951                                 School life expectancy, tertiary, male (years)
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    description
## 15750  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 15751  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 15752  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 17307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Life expectancy at birth indicates the number of years a newborn infant would live if prevailing patterns of mortality at the time of its birth were to stay the same throughout its life.
## 17308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Life expectancy at birth indicates the number of years a newborn infant would live if prevailing patterns of mortality at the time of its birth were to stay the same throughout its life.
## 17309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Life expectancy at birth indicates the number of years a newborn infant would live if prevailing patterns of mortality at the time of its birth were to stay the same throughout its life.
## 17310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Life expectancy at age 60, female is the average number of years that a female at age 60 would live if prevailing patterns of mortality at the time of age 60 were to stay the same throughout her life.
## 17311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Life expectancy at age 60, male is the average number of years that a male at age 60 would live if prevailing patterns of mortality at the time of age 60 were to stay the same throughout his life.
## 17312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## 19923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## 19924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## 19925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## 19926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## 19927  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19928  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.
## 19930  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19931 Number of years a person of school entrance age can expect to spend within the specified levels of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19932 Number of years a person of school entrance age can expect to spend within the specified levels of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19933 Number of years a person of school entrance age can expect to spend within the specified levels of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19934  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19935  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.
## 19937  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## 19939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.
## 19940  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19941  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.
## 19943  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19944  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19945  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.
## 19947  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19948  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19949  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
## 19950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ratio of female school life expectancy to the male school life expectancy. It is calculated by dividing the female value for the indicator by the male value for the indicator. A GPI equal to 1 indicates parity between females and males. In general, a value less than 1 indicates disparity in favor of males and a value greater than 1 indicates disparity in favor of females.
## 19951  Number of years a person of school entrance age can expect to spend within the specified level of education. For a child of a certain age a, the school life expectancy is calculated as the sum of the age specific enrolment rates for the levels of education specified. The part of the enrolment that is not distributed by age is divided by the school-age population for the level of education they are enrolled in, and multiplied by the duration of that level of education. The result is then added to the sum of the age-specific enrolment rates. A relatively high SLE indicates greater probability for children to spend more years in education and higher overall retention within the education system. It must be noted that the expected number of years does not necessarily coincide with the expected number of grades of education completed, because of repetition. Since school life expectancy is an average based on participation in different levels of education, the expected number of years of schooling may be pulled down by the magnitude of children who never go to school. Those children who are in school may benefit from many more years of education than the average.
##                     sourceDatabase
## 15750         Education Statistics
## 15751         Education Statistics
## 15752         Education Statistics
## 17307 World Development Indicators
## 17308 World Development Indicators
## 17309 World Development Indicators
## 17310            Gender Statistics
## 17311            Gender Statistics
## 17312        WDI Database Archives
## 19923         Education Statistics
## 19924         Education Statistics
## 19925         Education Statistics
## 19926         Education Statistics
## 19927         Education Statistics
## 19928         Education Statistics
## 19929         Education Statistics
## 19930         Education Statistics
## 19931         Education Statistics
## 19932         Education Statistics
## 19933         Education Statistics
## 19934         Education Statistics
## 19935         Education Statistics
## 19936         Education Statistics
## 19937         Education Statistics
## 19938         Education Statistics
## 19939         Education Statistics
## 19940         Education Statistics
## 19941         Education Statistics
## 19942         Education Statistics
## 19943         Education Statistics
## 19944         Education Statistics
## 19945         Education Statistics
## 19946         Education Statistics
## 19947         Education Statistics
## 19948         Education Statistics
## 19949         Education Statistics
## 19950         Education Statistics
## 19951         Education Statistics
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         sourceOrganization
## 15750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 15751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 15752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 17307                                                                                (1) United Nations Population Division. World Population Prospects: 2019 Revision. (2) Census reports and other statistical publications from national statistical offices, (3) Eurostat: Demographic Statistics, (4) United Nations Statistical Division. Population and Vital Statistics Reprot (various years), (5) U.S. Census Bureau: International Database, and (6) Secretariat of the Pacific Community: Statistics and Demography Programme.
## 17308 (1) United Nations Population Division. World Population Prospects: 2019 Revision, or derived from male and female life expectancy at birth from sources such as: (2) Census reports and other statistical publications from national statistical offices, (3) Eurostat: Demographic Statistics, (4) United Nations Statistical Division. Population and Vital Statistics Reprot (various years), (5) U.S. Census Bureau: International Database, and (6) Secretariat of the Pacific Community: Statistics and Demography Programme.
## 17309                                                                                (1) United Nations Population Division. World Population Prospects: 2019 Revision. (2) Census reports and other statistical publications from national statistical offices, (3) Eurostat: Demographic Statistics, (4) United Nations Statistical Division. Population and Vital Statistics Reprot (various years), (5) U.S. Census Bureau: International Database, and (6) Secretariat of the Pacific Community: Statistics and Demography Programme.
## 17310                                                                                                                                                                                                                                                                                                                                                                                                                                      2019 World Population Prospects, United Nations Population Division: Retrieved August 31, 2020.
## 17311                                                                                                                                                                                                                                                                                                                                                                                                                                      2019 World Population Prospects, United Nations Population Division: Retrieved August 31, 2020.
## 17312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## 19923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## 19924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## 19925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## 19926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## 19927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## 19939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
## 19951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UNESCO Institute for Statistics
WDIsearch(string="population, total", field="name", short=FALSE, cache=NULL)
##            indicator                                            name
## 9659  JI.POP.URBN.ZS Urban population, total (% of total population)
## 17674    SP.POP.TOTL                               Population, total
##                                                                                                                                                                             description
## 9659                                                                                                                                                                                   
## 17674 Total population is based on the de facto definition of population, which counts all residents regardless of legal status or citizenship. The values shown are midyear estimates.
##                               sourceDatabase
## 9659  Global Jobs Indicators Database (JOIN)
## 17674           World Development Indicators
##                                                                                                                                                                                                                                                                                                                                                                                                                                          sourceOrganization
## 9659                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## 17674 (1) United Nations Population Division. World Population Prospects: 2019 Revision. (2) Census reports and other statistical publications from national statistical offices, (3) Eurostat: Demographic Statistics, (4) United Nations Statistical Division. Population and Vital Statistics Reprot (various years), (5) U.S. Census Bureau: International Database, and (6) Secretariat of the Pacific Community: Statistics and Demography Programme.